I wonder if I should post it here or on the LWJGL forum but hopefully most people look at both places 
I have an applet that works fine in eclipse and worked fine with the JOGL applet loader but when running it with the LWJGL one I run into a security problem.
All I do is:
new URL(getCodeBase(), “pictures/” + name)
(I tried it with one parameter as well as without a subfolder but it always gives the same error, doing .toString() on the URL gives me the correct URL so it isn’t a problem with a slash)
The error I get is:
SecurityException: denied access outside a permitted URL subpath
Do I need to sign my applet when using LWJGL even though I create a connection to the same server as where the applet is located?
I am running on JRE 6u13 with Windows XP.
