Mahesh Gupta
Mahesh Gupta

Reputation: 2748

Web Chatting Application in Java Applet

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

Answers (2)

Andrew Thompson
Andrew Thompson

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

Konstantin Milyutin
Konstantin Milyutin

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

Related Questions