Problem using JOGLAppletLaucher

I created an applet using JOGLAppletLaucher, and a page to load the applet according to JOGLAppletLaucher javadoc:
http://download.java.net/media/jogl/builds/nightly/javadoc_public/com/sun/opengl/util/JOGLAppletLauncher.html

The problem is that every time I open the page the applet begin to load, but report a security error:

java.security.AccessControlException: access denied (java.util.PropertyPermission user.home read)
at java.security.AccessControlContext.checkPermission(Unknown Source)
at java.security.AccessController.checkPermission(Unknown Source)
at java.lang.SecurityManager.checkPermission(Unknown Source)
at java.lang.SecurityManager.checkPropertyAccess(Unknown Source)
at java.lang.System.getProperty(Unknown Source)
at com.sun.opengl.util.JOGLAppletLauncher.start(JOGLAppletLauncher.java:286)
at sun.applet.AppletPanel.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)

After this problem I have signed the applet, but it didn’t work… =(

The applet url is:
www.brunoevangelista.com/viewer_demo/viewer.html

You need to use a signed jogl.jar and jogl-natives-*.jar files on your web server. We have been signing the released beta versions but do not sign the nightly builds. If you want to have Sun’s signature used for the applet launcher then you will have to use JSR-231 beta 3. Otherwise you will have to sign these files yourself.

I have download and update the JOGL files with the JSR 231 beta 03 version.
Files updated:
jogl.jar, jogl-natives-win32.jar and jogl-natives-linux.jar

After this I have deleted the java cache files, and update the applet but it didn’t work.
I have also tried signed and unsigned versions of my application.

The problem is when the JOGLAppletLaucher run the start method, and try to get the “user.home” property.
The applet demo at JOGL page works correctly for me, but my demo don’t work.

The applet url is: (Now JSR 231 beta 03)
www.brunoevangelista.com/viewer_demo/viewer.html

Your sample applet works for me, as long as I accept the security dialog with the invalid signature.

I have tried again and it works now!!!

Thank you!!!