Hi all. I've been racking my brain on this for a good day and wanted to get some help. I have a
tomcat 5.0.28 installation. I used the manager app to install my application. My application has a context.xml file. Here is what the context tag looks like inside of that:
<Context path="/software/data/myportal" docbase="portal">
It installed correctly through the manager app.
I then shutdown tomcat and restarted it. Now when I open the manager app, I see that there are two context entries listed: one for "/software/data/myportal" AND one for "portal".
Let me give some other useful info: the war file I uploaded is named portal.war. When it gets unpacked by tomcat, it creates a directory called webapps/portal
In server.xml I have autoloading off. Here is what that looks like:
<Host name="localhost" debug="0" appBase="webapps" unpackWARs="true" autoDeploy="false" xmlValidation="false" xmlNamespaceAware="false"/>
Can someone help me figure out how to get it so it doesn't deploy two context's for the same app? I'd really appreciate it!