From: Sells, F. <fr...@ad...> - 2001-10-10 17:13:33
|
I am embedding jython 2.0 into a jdk1.3 applet in order to process some "customization" scripts written in Python. When I try to instantiate the Python interpreter I get the following error java.security.AccessControlException: access denied (java.util.PropertyPermission * read,write) at java.security.AccessControlContext.checkPermission(AccessControlContext.java :273) at java.security.AccessController.checkPermission(AccessController.java:404 ) at java.lang.SecurityManager.checkPermission(SecurityManager.java:545) at java.lang.SecurityManager.checkPropertiesAccess(SecurityManager.java:1262) at java.lang.System.getProperties(System.java:503) at org.python.core.PySystemState.initialize(PySystemState.java:287) at org.python.util.PythonInterpreter.<init>(PythonInterpreter.java:61) at org.python.util.PythonInterpreter.<init>(PythonInterpreter.java:45) which is triggered by Python = new PythonInterpreter(); I don't know what Python is trying to read or why; can someone point me in the right direction. also, where can you get the source for 2.0 |