I am trying to deploy a war file to my TOMCAT_HOME/webapps dir. I have several web applications listed under webapps so I am relying on several <Context...> element entries in the server.xml file.
<Context path="/realationships" docBase="realationships" debug="0"
crossContext="true">
(Based on an earlier post I have removed the reloadable="true" attribute.)
Also, the directory TOMCAT_HOME/webapps/realationships has been deleted since I read in the
Tomcat Bible that when realationships.war is present the realationships directory must be removed. The Tomcat Bible does not make any mention of having to remove the <Context...> element (based on my cursory review).
When bringing up the web browser I get a
Apache Tomcat/4.0.2 - HTTP Status 404 - /realationships
The requested resource (/realationships) is not available.
My knowledge of Tomcat is very rudimentory. Please advise.