I recently put a framework i had developed into a jar file so it was an external library i could just extend in a new project.
The new project has 2 files:
- BaseEngine.jar
- BaseDemo.jar
BaseEngine holds purely the classes and functionality, then BaseDemo uses it as a library and implements the objects and runs the functions needed.
When i run it as an app it runs fine, however when i try to put it in an applet i get the following errors…
java.lang.UnsatisfiedLinkError: Native Library C:\Documents and Settings\user.jogl_ext\localhost_Applet_Test_e9138ef91ceefa9aa8e8a263863a982a\1.1.0-rc3\gluegen-rt.dll already loaded in another classloader
im a bit baffled as ive only got one applet active and its this one…
Anyone seen this error before or have any advice about it?