Hello there!
I'm using org.lwjgl.util.applet.AppletLoader to load my JME 2 application in an applet.
I based my applet structure on the JME Applet test with a custom canvas implementor, so it use JOGL instead of LWJGL.
Now I should load also JOGL native but when I rebuild native jars (merging jogl and lwjgl and resigning it with my certificate) I get an error from the loader about certificate chain.
Well the question is… how to load jogl native?
Another solution would be to replace the animator with a lwjgl related thing but I really don't know how.
Hope anyone could help me
Thanks in advance!
you can use different certificates when using a different .jnlp file for each certificate.
<resources>
…
<extension name="lwjgl" href="lwjgl.jnlp"/>
</resources>
the lwjgl.jnlp only contains the lwjgl,jar as a resource, signed with another certificate then the main jnlp.
Thank you a lot.
Using multiple JNLP seems to do the trick
Eduard