Bob McKenzie

Greenhorn
+ Follow
since Oct 26, 2004
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Bob McKenzie

Hi,

We're getting the following exception when calling the application (deployed on a weblogic 7 server):

------------------------
JNLPException[category: Download Error : Exception: java.io.IOException: HTTP response 404 : LaunchDesc: null ]
at com.sun.javaws.cache.DownloadProtocol.doDownload(Unknown Source)
at com.sun.javaws.cache.DownloadProtocol.isLaunchFileUpdateAvailable(Unknown Source)
at com.sun.javaws.LaunchDownload.getUpdatedLaunchDesc(Unknown ource)
at com.sun.javaws.Launcher.downloadResources(Unknown Source)
at com.sun.javaws.Launcher.handleApplicationDesc(Unknown Source)
at com.sun.javaws.Launcher.handleLaunchFile(Unknown Source)
at com.sun.javaws.Launcher.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
------------------

I can get to it from my pc with no problems but when someone from another machine, we get the exception.

Any help appreciated, thanks!

Here's the launch file:

----------------------
<?xml version="1.0" encoding="utf-8"?>

<jnlp spec="1.0+" codebase="http://localhost:7001/evalHelper" href="index.jnlp">

<information>
<title>Eval Helper</title>
<vendor>developers</vendor>
<homepage href="index.html"/>
<description>Eval Helper</description>
<description kind="short">Evaluation Help</description>
<offline-allowed/>
</information>

<security>
<all-permissions/>
</security>
<resources>

<j2se version="1.4"/>
<jar href="evalHelper.jar"/>
<jar href="swtcalendar.jar"/>
<jar href="swt.jar"/>
<jar href="xml-apis.jar"/>
<nativelib href="swt-lib.jar"/>
<jar href="xercesImpl.jar"/>
</resources>
<application-desc main-class="com.evalhelper.EvalHelper"/>
</jnlp>
---------
19 years ago