With the 2006-01-25 jogl.jar, I use:
<applet code=“com.sun.opengl.utils.JOGLAppletLauncher”
…
and the applet loads and pops up the “do you want to trust…” dialog. With the 2006-10-28 jogl.jar, the package has changed so I use:
<applet code=“com.sun.opengl.util.JOGLAppletLauncher”
…
(note “util” in the singular)
This causes the following in the Java Console:
java.security.AccessControlException: access denied (java.util.PropertyPermission user.home read)
at java.security.AccessControlContext.checkPermission(AccessControlContext.java:264)
at java.security.AccessController.checkPermission(AccessController.java:427)
at java.lang.SecurityManager.checkPermission(SecurityManager.java:532)
at java.lang.SecurityManager.checkPropertyAccess(SecurityManager.java:1285)
at java.lang.System.getProperty(System.java:627)
at com.sun.opengl.util.JOGLAppletLauncher.start(JOGLAppletLauncher.java:282)
at sun.applet.AppletPanel.run(AppletPanel.java:413)
at java.lang.Thread.run(Thread.java:595)
Am I being thick or is there a problem with the current archives?