NSM/web Installation Guide
Troubleshooting
HP NonStop NSM/web Installation Guide—529994-002
3-6
Browser Considerations
The recommended security access level to grant these files is:
java.security.AllPermission
One way to grant access to these jar files is to create a Java user policy file
named .java.policy in your user directory:
{user.home}/.java.policy (Solaris)
{user.home}\.java.policy (Win32)
In the policy file, add:
grant codeBase "http://<NSMweb root>/*" {
permission java.security.AllPermission;
};
grant codeBase "http://<NSMweb root>/Common/*" {
permission java.security.AllPermission;
};
grant codeBase "http://<NSMweb root>/MxCS/*" {
permission java.security.AllPermission;
};
grant codeBase "http://<NSMweb root>/SqlMX/*" {
permission java.security.AllPermission;
};
The value <NSMweb root> is the URL of NSM/web on the NonStop server.
For example, if NSM/web is installed on a system with a DNS name of MyNSK and
browser-related files are installed in a directory named <iTPServer
webroot>/NSMweb, the <NSMweb root> directory is MyNSK/NSMweb.
Note. user.home refers to the value of the system property named user.home. This
property specifies the user’s home directory. On Win32 systems, given the user name
uName, the user.home property value defaults to:
C:\WINNT\Documents and Settings\uName on Windows 2000 systems
C:\Winnt\Profiles\uName on multi-user Windows NT systems
C:\Windows\Profiles\uName on multi-user Windows 95 systems
C:\Windows on single-user Windows 95 systems