Problem with JOGL applet

Hey

I am having trouble deploying my JOGL applet on the web. Has anyone been able to do it?

I followed the instructions at https://jogl-demos.dev.java.net/applettest.html but when mine runs it gets to the point where it says loading... and just sits there.Im still using the old JOGL (net.java.games.jogl) is that ok and would that effect what im trying to do?

The applet I am trying to load is called ss2applet and it is in SS2.jar. I uploaded jogl.jar to the web server along with SS2.jar and I changed my applet tags to the following.

<applet code="com.sun.opengl.util.JOGLAppletLauncher"

width=700

height=600

archive="jogl.jar,SS2.jar">

<param name="subapplet.classname" VALUE="ss2applet">

<param name="subapplet.displayname" VALUE="ss2applet JOGL test">

<param name="progressbar" value="true">

<param name="cache_archive" VALUE="jogl.jar,SS2.jar">

<param name="cache_archive_ex" VALUE="jogl.jar;preload,SS2.jar;preload">

</applet>

Does anyone know what I may have done wrong. If not is there anywhere that has a clear tutorial on how to do this.

[1489 byte] By [bronze-starDukes] at [2007-11-26 12:14:41]
# 1

>>Im still using the old JOGL (net.java.games.jogl) is that ok and would that effect what im trying to do?

You need the latest jogl and gluegen files. These need to be placed in the codebase directory.

These can be found at https://gluegen.dev.java.net/servlets/ProjectDocumentList

and

https://jogl.dev.java.net/servlets/ProjectDocumentList

bronzestar at 2007-7-7 14:17:35 > top of Java-index,Archived Forums,Socket Programming...
# 2

Also, you should include gluegen-rt.jar in the applet's archive tag, the cache_archive parameter, and the cache_archive_ex parameter.

archive="jogl.jar,gluegen-rt.jar,SS2.jar"

...

<param name="cache_archive" VALUE="jogl.jar,gluegen-rt.jar,SS2.jar">

<param name="cache_archive_ex" VALUE="jogl.jar;preload,gluegen-rt.jar;preload,SS2.jar;preload">

bronzestar at 2007-7-7 14:17:35 > top of Java-index,Archived Forums,Socket Programming...