With the latest kestrel promotion (I) SwingSet as an applet no longer works.
The exception that is generated is:
java.security.AccessControlException: access denied
(java.util.PropertyPermission http.keepAlive 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 sun.net.www.http.HttpClient.getHttpKeepAliveSet(Unknown Source)
at sun.net.www.protocol.http.HttpURLConnection.writeRequests(Unknown Source)
at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)
at sun.plugin.protocol.jdk12.http.HttpURLConnection.getInputStream(Unknown Source)
at java.net.URL.openStream(Unknown Source)
at SwingSet.contentsOfFile(SwingSet.java:1638)
at SwingSet.createMenus(SwingSet.java:1072)
at SwingSet.<init>(SwingSet.java:318)
at SwingSetApplet.init(SwingSetApplet.java:99)
at sun.applet.AppletPanel.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
Looking at the code for HttpClient you can see that getHttpKeepAliveSet doesn't use a doPriviledged, resulting in the applet security manager being used, which doesn't allow access to 'http.keepAlive' and thus this exception is generated.
Below is the trace from the SwingSet not loading bug with Hotspot removed.
Here's the trace w/out hotspot (just classic):
JAR cache enabled.
java.security.AccessControlException: access denied (java.util.PropertyPermission http.keepAlive 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 sun.net.www.http.HttpClient.getHttpKeepAliveSet(Unknown Source)
at sun.net.www.protocol.http.HttpURLConnection.writeRequests(Unknown Source)
at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)
at sun.plugin.protocol.jdk12.http.HttpURLConnection.getInputStream(Unknown Source)
at java.net.URL.openStream(Unknown Source)
at SwingSet.contentsOfFile(SwingSet.java:1638)
at SwingSet.createMenus(SwingSet.java:1072)
at SwingSet.<init>(SwingSet.java:318)
at SwingSetApplet.init(SwingSetApplet.java:99)
at sun.applet.AppletPanel.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
nancy.schorr@eng 1999-09-30
The exception that is generated is:
java.security.AccessControlException: access denied
(java.util.PropertyPermission http.keepAlive 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 sun.net.www.http.HttpClient.getHttpKeepAliveSet(Unknown Source)
at sun.net.www.protocol.http.HttpURLConnection.writeRequests(Unknown Source)
at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)
at sun.plugin.protocol.jdk12.http.HttpURLConnection.getInputStream(Unknown Source)
at java.net.URL.openStream(Unknown Source)
at SwingSet.contentsOfFile(SwingSet.java:1638)
at SwingSet.createMenus(SwingSet.java:1072)
at SwingSet.<init>(SwingSet.java:318)
at SwingSetApplet.init(SwingSetApplet.java:99)
at sun.applet.AppletPanel.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
Looking at the code for HttpClient you can see that getHttpKeepAliveSet doesn't use a doPriviledged, resulting in the applet security manager being used, which doesn't allow access to 'http.keepAlive' and thus this exception is generated.
Below is the trace from the SwingSet not loading bug with Hotspot removed.
Here's the trace w/out hotspot (just classic):
JAR cache enabled.
java.security.AccessControlException: access denied (java.util.PropertyPermission http.keepAlive 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 sun.net.www.http.HttpClient.getHttpKeepAliveSet(Unknown Source)
at sun.net.www.protocol.http.HttpURLConnection.writeRequests(Unknown Source)
at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)
at sun.plugin.protocol.jdk12.http.HttpURLConnection.getInputStream(Unknown Source)
at java.net.URL.openStream(Unknown Source)
at SwingSet.contentsOfFile(SwingSet.java:1638)
at SwingSet.createMenus(SwingSet.java:1072)
at SwingSet.<init>(SwingSet.java:318)
at SwingSetApplet.init(SwingSetApplet.java:99)
at sun.applet.AppletPanel.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
nancy.schorr@eng 1999-09-30
- duplicates
-
JDK-4278480 Kestrel "I" : DNS Regression test throws AccessControlException
-
- Closed
-
-
JDK-4280040 AccessControlException checking keepAlive permission
-
- Closed
-
-
JDK-4278549 Applets accessing URLs trigger System property access exception in HttpClient
-
- Closed
-