Revision: 1.3
Date: 2002/11/01
Latest Version: http://spacemapper.sf.net/DataStore/user_faq.html

Back to: Overview

User FAQ

Authors:
Szabo Csaba <crow@nolimits.ro>
Antal Attila <atech@nolimits.ro>
Table of Contents
1. When starting Avalon Phoenix, the application throws: java.security.AccessControlException: access denied (java.security.SecurityPermission setPolicy)


1. When starting Avalon Phoenix, the application throws: java.security.AccessControlException: access denied (java.security.SecurityPermission setPolicy)

If you see some weird messages related to some security and policy settings that means that the Java policy settings has to be adjusted An example to resolve the problem is to add the following lines in your java.policy (JAVA_DIR/jre/lib/security) file:

		  
  grant {
        permission java.security.AllPermission;
	permission java.net.SocketPermission "127.0.0.1:1024-", "accept, connect, listen, resolve";
        permission java.net.SocketPermission "72.8.29.1:1024-", "accept, connect, listen, resolve";
        permission java.net.SocketPermission "localhost:1024-", "accept, connect, listen, resolve";
  }; 
	
  
top


© 2001