For starters, Tomcat is not autoDeploying my wars from the /webapps directory. I looked at the class file in the war and the class file in /DBTest/WEB-INF/classes/foo/DBTest.class. Here is my host line in server.xml. It seems to be pointing at the webapps directory because I can access my app through a browser. But for some reason, the war is not getting deployed. In addition, I have tried to use the HTML manager to deploy the app. I have hit reload several times and it seems to be redeloying the same class because it is throwing the same exception, but it should be fixed in the new version of the war.
Here are my host element and context element from server.xml: <Host name="localhost" debug="0" appBase="webapps" unpackWARs="true" autoDeploy="true"> <Context path="/DBTest" docBase="DBTest" debug="5" reloadable="true" crossContext="true"> Thank you to anyone that can help me, Dan Doyle
