Gary Lyons wrote:

> Excuse my ignorance,please, but does this mean that applet to servlet communication 
>via sockets is not possible with AOL users??
>

No.  There are two things that will not work.

One thing you cannot do (which was the basis for the original question) is use client 
IP addresses for accurate session management.  You will need to use either cookies or 
URL rewriting for this purpose.

Another thing you cannot do across the Internet to clients behind firewalls is 
establish a TCP connection from the server to the client applet -- it needs to be 
created in the other direction.  The applet will use
whatever mechanism has been configured on the client PC to reach the internet 
(including using your browser's proxy settings if you try to do an HTTP connection).

As long as you connect *from* the applet *to* the server that the applet came from 
(or, for signed applets, to any allowed server), and use either cookies or URL 
rewriting for session management, applet-servlet
communication should work fine.

>
> Gary
>

Craig

====================
See you at ApacheCon Europe <http://www.apachecon.com>!
Session VS01 (23-Oct 13h00-17h00):  Sun Technical Briefing
Session T06  (24-Oct 14h00-15h00):  Migrating Apache JServ
                                    Applications to Tomcat

___________________________________________________________________________
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff SERVLET-INTEREST".

Archives: http://archives.java.sun.com/archives/servlet-interest.html
Resources: http://java.sun.com/products/servlet/external-resources.html
LISTSERV Help: http://www.lsoft.com/manuals/user/user.html

Reply via email to