I hope this is an easy one…
When I try to execute my applet, which is signed and jar’d, I receive a message “class not found” in my java console. I have played with many variations of the codebase value. All the file (html, jar) are in the same directory.
My applet class is not in a package.
<applet code="com.sun.opengl.util.JOGLAppletLauncher"
width=800 height=600
archive="jogl.jar,gluegen-rt.jar,worldwind.jar,BasicDemo.jar,DemoApplet.jar">
<param name="subapplet.classname" VALUE="DemoApplet">
<param name="subapplet.displayname" VALUE="WorldWind">
<param name="progressbar" value="true">
<param name="cache_archive" VALUE="jogl.jar,gluegen-rt.jar,worldwind.jar,BasicDemo.jar,DemoApplet.jar">
<param name="cache_archive_ex" VALUE="jogl.jar;preload,gluegen-rt.jar;preload,worldwind.jar;preload,BasicDemo.jar;preload,DemoApplet.jar;preload">
</applet>
A second question - some folks over on the NASA Worldwind list have suggested using JNLPAppletLauncher instead. Could anyone point me to pros/cons?
Appreciate your help…!