Hi:
> I have a servlet that uses a standard socket to communicate
> with an Applet. This needs to be because I need to have a
> constant connection with all connected clients (multiuser
> system).
You may want to try one of:
. passing java objects across as octet streams
. passing data encoded in XML using your own DTDs
. using off-the-shelf protocols such as SOAP
(to exchange structured and typed information)
/venkat
