Signed Java Applet Throws Security Exception on Connect to a Webservice -
I have a Java applet running on Tomato 5.5. This is signed (-iscerts) I still get an java.security.AccessControlException: access denied (java.lang.RuntimePermission createClassLoader) , when my app tries to connect to the WebSaver (Already in this line): ws_locator = new My_WebserviceLocator (ws_adress + "? Wsdl", new javax.xml.namespace.QName ("http: //impl.webservice" , "My_Webservice")); Since there are some similar questions, I read them: Yes, the applet may have been signed, but I Catalina.policy has been added: grant codebase "file: /home/me/apache-tomcat-5.5.27/webapps/myapplet/-" {permission java.security.AllPermission; }; Grant Codebase "file: /home/me/apache-tomcat-5.5.27/webapps/myapplet/applet.jar" {permission java.security.AllPermission; }; And here's the general stuff here: codeBase "file: $ {Java home} / jre / lib / Ext / - "{permission java.security.AllPermission; }; With no re...