jnlp file does nothing
843802May 1 2002 — edited May 4 2002My 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>