I’m trying to get a web start application running with the below jnlp file - but I get a NoClassDefFoundError (although it goes away if I include a jogl.jar file)… Am I suppose to some how make sure that when I compile my application’s JARs, it compiles against a certain version of JOGL?
<?xml version="1.0" encoding="UTF-8"?>
<jnlp spec="1.5+" codebase="http://ags.uci.edu/~etolleru/sddm/webstart" href="sddm.jnlp">
<application-desc />
<information>
<title>Stereo Data Display Modules</title>
<vendor>Erik J. Tollerud</vendor>
<description>An open source data visualization program implemented with JOGL.</description>
<offline-allowed/>
</information>
<security>
<all-permissions/>
</security>
<resources>
<j2se version="1.5+"/>
<jar href="SDDM.jar" main="true"/>
<jar href="lib/AbsoluteLayout.jar"/>
<jar href="lib/joglutilsnb.jar"/>
<jar href="lib/swing-layout-1.0.jar"/>
<jar href="lib/vecmath.jar"/>
[b]<extension name="jogl" href="http://download.java.net/media/jogl/builds/archive/jsr-231-webstart-current/jogl.jnlp"/>[/b]
</resources>
</jnlp>