Hi all,
I’m trying to get jogl running in an applet. My application runs well from Eclipse.
The jogl.jar, jogl.dll and so are in the jar file called by the applet, but I still have got an AccessDenied exception when manualy trying to load the library with a System.loadLibrary command (just to test if the jvm find the native libraries)
I think this issue is caused by the jre 1.6 that contains a bad distribution of jogl
In eclipse, I had the same kind of issue ; I resolved it puting the jre at the bottom of the list in the “Order and Export” Tab in the “Java build path” options.
But I dont know how to do the same with an applet (or using jvm parameters or so). How can I say my applet not to load jogl packages of the jre distribution ?
An other question is about the appletLauncher used in the GearsDemo for example.
I don’t really understand how it works (it seems to be an applet loading another applet is it right ?) and why it’s usefull
I undestood it uses the jnlp file, but all this seems more complicated than using a applet running the jar file … What are the issues ?