Try OpenEdge Now
skip to main content
Business Process Portal Administrator's Guide
Introducing the Administration module : Stopping all servers : Signed applets : Modifying the java.security file
 
Modifying the java.security file
Perform the following in java.policy file:
1. On each user machine, modify the java.security file in the <JRE_Install>\lib\security directory and add the lines to point to the java policy file. For example:
policy.url.3=http://<host_name>:<port_number>//applet.policy
2. This policy URL should be a static location pointing to a remote policy file as a source of java security policies.
3. This java policy file (in this case, applet.policy) should contain the lines to grant permissions to run Business Process Server applets. For example:
grant codeBase "http://<host_name>:<port_number>/sbm/bpmportal/applet/*" {
permission java.security.AllPermission; };
4. In this case, if you change the Business Process Server location, then you must update the java policy file (in this case, applet.policy) only on the static server instead of every user machine.