I'm trying to access a service exposed using Spring's HttpInvoker from within an Applet. The problem is that I'm getting an access denied exception.
Modifying the applet policy is not an option for me. I know that applets should be able to do http requests without any special permissions. I guess Spring is making http requests in a way that's not compatible with Applet permissions.Code:java.security.AccessControlException: access denied (java.net.SocketPermission localhost:8084 connect,resolve)
Is it possible to create an implementation of HttpInvokerRequestExecutor that would work inside an applet?


Reply With Quote