Download Error : Exception: java.io.IOException: Server returned HTTP respo
843802Feb 4 2002 — edited Feb 4 2002Hello,
When trying to launch my application i get the following error on my first (main class) resource, any ideas whats wrong?
JNLPException[category: Download Error : Exception: java.io.IOException: Server returned HTTP response code: 403 for URL: http://ip.com/projects/exsite/gui/jars/exsiteconsole.jar : LaunchDesc: null ]
at com.sun.javaws.cache.DownloadProtocol.doDownload(Unknown Source)
Wrapped:
java.io.IOException: Server returned HTTP response code: 403 for URL: http://ip.com/projects/exsite/gui/jars/exsiteconsole.jar
at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)
at java.net.HttpURLConnection.getResponseCode(Unknown Source)
at com.sun.javaws.util.URLUtil.doesURLExist(Unknown Source)
and my launch file:
<?xml version="1.0" encoding="utf-8"?>
<!-- JNLP File for eX-Site GUI Application -->
<? header ("Content-Type: application/x-java-jnlp-file"); ?>
<jnlp
spec="1.0+"
codebase="http://ip.com/projects/exsite/gui"
href="javaGui.jnlp">
<information>
<title>eX-Site Java GUI</title>
<vendor>Inc.</vendor>
<homepage href="http://ip.com"/>
<description>eX-Site Java GUI</description>
<description kind="short">The eX-Site Graphical User Interface.</description>
<icon href="jars/telecommunications.gif"/>
<offline-allowed/>
</information>
<resources>
<j2se version="1.3"/>
<jar href="jars/exsiteconsole.jar"/>
</resources>
<application-desc main-class="exsiteconsole.ExSiteConsoleClass"/>
</jnlp>
thanks!
-ss