The application code sets the security manager, and it
conflicts with the WebSphere Application Server internal security manager.
The error is thrown from JasperLoader.java (WebSphere code) line 132.
The only variable on that line to cause a NullPointerException is
securityManager.
WebSphere Application Server does not support setting the security
manager in customer application code.
The following information can be found by following the links from the
Information Center under Related Information:
The following two permissions are enforced by the WebSphere Java 2
security manager (hard coded):
java.lang.RuntimePermission(exitVM)
java.lang.RuntimePermission(setSecurityManager)
Application code is denied access to these permissions regardless of what
is in the Java 2 security policy. However, the server run time is granted
these permissions. All the other permission checks are not enforced.
|