0

This may be a stupid question. but i don't have any choice to clarifying it. I have a chat server running in a LAN environment system. And for testing purpose i have deployed my chat client applet into a tomcat server. How to access the server from web page. I have given my local IP address (192.168.0.XXX i know this is very bad). The application is saying access denied. and getting this acception

java.security.AccessControlException: access denied (java.net.SocketPermission 192.168.0.106:54555
mallikarjun
  • 1,862
  • 5
  • 23
  • 47

1 Answers1

0

If I understood your problem, then issue may be related to this: Applets are specifically prohibited from making network connections from machines other than the host they were downloaded from. The only way around this is by using a digital signature in the applet.


Code Signing for Java Applets

UVM
  • 9,776
  • 6
  • 41
  • 66