Re: Java Web Start



"Andrew Thompson" <u32984@uwe> wrote in message news:7113520b708e1@xxxxxx
- validate the JNLP
- post the link to the JNLP to the group, or failing that..
- post the JNLP content to the group.


Thanks, here it is....

The html and jnlp files are in c:\WebStart. The jar named Aspect7.jar is in
c:\WebStart\JarFile. The html file just contains a link to the jnlp file.

I downloaded JRE 1.6.x after posting the message and it works properly. I'd
still like to know how to deploy to users who don't yet have 1.6.

<!-- JNLP File -->
<!--jnlp spec="1.0+" codebase="file:///WebStart"
href="file:///WebStart/Aspect7.jnlp"-->
<jnlp>
<information>
<title>title</title>
<vendor>vendor.</vendor>
<description>description</description>
<offline-allowed/>
</information>
<security>
<all-permissions/>
</security>
<resources>
<j2se version="1.4+"/>
<jar href="file:///WebStart/JarFile/Aspect7.jar"/>
</resources>
<application-desc main-class="aspect.Aspect">
</application-desc>
</jnlp>


.