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!

jnlp file does nothing

843802May 1 2002 — edited May 4 2002
My jnlp file is not working at all! The .jar application file runs fine by itself, but I cannot get it to run through WebStart because the jnlp file does not do anything (I double click it, it pauses, then nothing happens). The jnlp file does not even pick up WebStart nor cause any errors. Any ideas of what the problem could be?

Here's the code I'm using:
<?xml version="1.0" encoding="utf-8"?>
<!-- JNLP File for SwingSet2 Demo Application -->
<jnlp
spec="1.0+"
codebase="http://url/name"
href="jnlp.jnlp">
<information>
<title>jarfile</title>
<vendor>our company</vendor>
<homepage href="notmuchhelp.html"/>
<description>test web start</description>
<description kind="short">Figuring out how to use WebStart</description>
<icon href="file.gif"/>
<offline-allowed/>
</information>

<resources>
<j2se version="1.3"/>
<j2se version="1.4"/>
<jar href="jarfile.jar"/>
<jar href="lib/ale.jar"/>
<jar href="lib/batik.jar"/>
<jar href="lib/hsqldb.jar"/>
<jar href="lib/jmf.jar"/>
<jar href="lib/log4j.jar"/>
</resources>

<application-desc/>

</jnlp>
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jun 1 2002
Added on May 1 2002
3 comments
581 views