Folder Structure
/usr/share/tomcat7/webapps/test
I have put the class file in /usr/share/tomcat7/webapps/test/WEB_INF/classes
web.xml in
/usr/share/tomcat7/webapps/test/WEB_INF
Tomcat installation path : /usr/share/tomcat7/
echo $CLASSPATH
/usr/share/tomcat7/lib/servlet-api.jar:
Compiled Java File
**sudo javac HelloWorld.java -classpath /usr/share/tomcat7/lib/servlet-api.jar**
When I tried to access
http://localhost:8080/HelloWorld
http://localhost:8080/test/HelloWorld
Apache tomcat server works , I checked it by executing
**http://localhost:8080**
in browser
I get a HTTP Status 404 - /HelloWorld
Am I missing any configuration??Pl help