
 *  Copyright (C) 2000  Rakesh Sawan <sawan@mailcity.com>
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.

Configuring Chat Client and Server
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	1.Configuring on a webserver
		* Extract Chat.html file from Chat.jar
			jar -xf Chat.jar Char.html
		* Keep the Chat.html and Chat.jar file in webroot for apache server
		  keep the files in C:\Program Files\Apache Group\APACHE\htdocs
		* Now set the CLASSPATH 
		  set CLASSPATH=C:\Program Files\Apache Group\Apache\htdocs\Chat.jar;%CLASSPATH%
		* start the chat server
		  java ChatServer
		* Open the browser on the client machine and give the following url
		http://hostname/Chat.html
		Login and start chat.

		*Enjoy
	
	2. Configuring on standalone machine
		In case you dont have apache server then you can configure the software
		on a standalone machine.
		* Extract the Chat.html from Chat.jar 
			jar -xf Chat.jar Char.html
		* Set the classpath 
		  set CLASSPATH=C:\chat\Chat.jar;%CLASSPATH%
		* Start the Chat Server
			java ChatServer
		* Use appletviewer to start the chat client
			appletviewer Chat.html
		* Open one more window 
			appletviewer Chat.html
		* Enjoy 


	
