COMPLAINT REGISTRATION SYSTEM
-----------------------------

1.To configure write in src/Configure.java

	 port_no := <host port on which servlets are run>      
	 
	 
	 path1   := <path for html pages>
	 			e.g "http://everest.cse.iitb.ac.in/~hani/html/"
	 
	 path2	 := <path for the servlet to be called>
	 			e.g "http://192.168.211.234:"+port_no+"/servlet/"
	 
	 path3   := <path for images used>
	 			e,g." http://everest.cse.iitb.ernet.in/~hani/project/imgs/"
	 
	 path4   := <oracle database host with port no>
			    e.g. "jdbc:oracle:thin:@everest:1521:GEN"

2.To make the class files do

	cd src
	javac *.java -d ../bin/

3.To run

	cd bin
	servletrunner -p port -d <full path of directory where this package is kept>/bin
			e.g. servletrunner -p 5010 -d ~hani/proj/


