java.security.AccessControlException in Eclipse

4
I've disabled Cloud Security Emulation in my project settings, and retrieving URLs (courtesy community commons) are now retrieving when running the modeler, but when I try to debug my JavaActions with Eclipse, I get a "java.security.AccessControlException: access denied (java.net.SocketPermission xxxxx.xxx.com:443 connect,resolve)" exception. Can I override this somehow in Eclipse?
asked
1 answers
2

You can either turn it off by removing the policy file and security manager flags from your .launch file or by adding the socketpermissions as described in this question.

answered