I have a website with a Java Applet and that applet needs to connect to my server.
This works in JApplets @Override init() but not in my own functions that are being called by j
public void callFromJavaScript(final String param) {
AccessController.doPrivileged( new PrivilegedAction() {
public Void run() {
// call code to make the connection..
return null;
}
});
}