To start the chat server under Unix, use:

CLASSPATH=../../lib:classes:$CLASSPATH java chat.Server

For the client, use:

CLASSPATH=../../lib:classes:$CLASSPATH java chat.Client

Under Windows the commands are:

set CLASSPATH=..\..\lib;classes;%CLASSPATH%
java chat.Server

And:

set CLASSPATH=..\..\lib;classes;%CLASSPATH%
java chat.Client

If you use the Microsoft Visual J++, use the command "jview" instead
of "java".

To start the client as applet with the "appletviewer" tool, you can
use "Chat.html", which is automatically generated by the server:

CLASSPATH=../../lib:classes:$CLASSPATH appletviewer Chat.html

Under Windows, use:

set CLASSPATH=..\..\lib;classes;%CLASSPATH%
appletviewer Chat.html
