Skip to Main Content

Java SE (Java Platform, Standard Edition)

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

FailedDownloadException: Unable to load resource

843802May 25 2009
I'm having a problem where only a certain class of users (Ubuntu Jaunty) get an exception when trying to run my webstart app. They are presented with the following error:
com.sun.deploy.net.FailedDownloadException: Unable to load resource: https://host/chatterbox/xmltalk.jnlp
 at com.sun.deploy.net.DownloadEngine.actionDownload(DownloadEngine.java:1325)
users java environment:
$ java -version
java version "1.6.0_13"
Java(TM) SE Runtime Environment (build 1.6.0_13-b03)
Java HotSpot(TM) Client VM (build 11.3-b02, mixed mode, sharing)
JNLP file is as follows:
<?xml version="1.0" encoding="utf-8"?>
<jnlp spec="1.0+"
  codebase="https://host/chatterbox"
  href="xmltalk.jnlp">
<information>
  <title>chatterbox</title>
  <vendor>chatterbox</vendor>
  <homepage href="." />
  <description>Chatterbox News Reader</description>
</information>
<security>
  <all-permissions/>
</security>
<resources>
  <j2se version="1.4+" href="http://java.sun.com/products/autodl/j2se"/>
  <jar href="xmltalk.jar" main="true" download="eager"/>
  <jar href="lib/commons-logging-1.1.jar" download="eager"/>
  <jar href="lib/ws-commons-util-1.0.2.jar" download="eager"/>
  <jar href="lib/xmlrpc-client-3.1.1.jar" download="eager"/>
  <jar href="lib/xmlrpc-common-3.1.1.jar" download="eager"/>
  <extension name="Bouncy Castle Security" href="bcprov.jnlp" />
</resources>
<application-desc main-class="XmlTalk" />
</jnlp>
any help would be much appreciated.
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jun 22 2009
Added on May 25 2009
0 comments
723 views