I have created a
java server application that opens a serverSocket and responds to requests from an
applet running on a remote client. The client applet requests and then displays data from the server in an AWT frame.
When the applet sends a request I would like for the server to send an HTML document and have the client browser display it instead of the applet.
I need for this process to run independantly of any web server or
servlet container.
I'm confused on how to achieve this. Could someone point me to a set of java classes that provide the functionality I would need to do send HTML pages?
Thanks
VG