I am just beginning to work with
Tomcat and have attempted to deploy web applications. After creating a .WAR file and adding a new entry to the server.xml file
(<Context path="/mydev" docBase="c:/tomcat/webapps/mydev.war" debug="0" <br /> reloadable="true"/><Context path="/mydev" docBase="c:/tomcat/webapps/mywar.war" debug="0" <br /> reloadable="true"/>)
I have placed the WAR file in the webapps directory. I seem able to access the
JSP I have deployed, but I expected the WAR file to be unpacked, which doesn't happen. Is this the correct behavior?