I have an application I’ve written that I’m publishing via webstart. It requires Java 6 and the JOGL Jsr-231 to run (won’t work for Java 5 for some reason). I can run it fine on my machine through webstart, but none of my users can run it. (That is, I’ve uploaded it to a remote webserver and it will run on my machine when I click the webstart link on my webpage).
You can run a version of it here:
http://www.kitfox.com/jogl/test/
This is the JNLP I’m using:
<?xml version="1.0" encoding="utf-8"?><information>
<title>Test</title>
<vendor>Mark McKay, kitfox.com</vendor>
<homepage href="index.html"/>
<offline-allowed/>
</information>
<security>
<all-permissions/>
</security>
<resources>
<j2se version="1.6+"/>
<jar href="bin/test.jar" main="true"/>
<extension name="jogl" href="http://download.java.net/media/jogl/builds/archive/jsr-231-webstart-current/jogl.jnlp"/>
</resources>
<application-desc main-class="com.pantometrics.scene.MainFrame"/>
Any ideas?