Reputation: 2748
Is it possible to create a web-chatting application using java Applet ??
As far as I know, using Java Applet we cannot access Web Server due to Sandbox restriction. But I'm not very sure about this ..
Upvotes: 1
Views: 1061
Reputation: 168795
A sand-boxed applet can 'phone home' to its own server with no problems. It is only accessing other servers that requires trust.
Upvotes: 1
Reputation: 12356
as far as I remember we can access server from which we downloaded this applet without problems. Another opportunity is to try to sign the code to make it trusted.
Upvotes: 0