RE: Tomcat deploys 2 instances of an app mapped to "/"

2008-03-30 Thread Caldarale, Charles R
> From: Alex Epshteyn [mailto:[EMAIL PROTECTED] > Subject: Re: Tomcat deploys 2 instances of an app mapped to "/" > > I now have it working as desired with the following context.xml, > deployed with my app in ROOT.war > > > Close, but the path and docBase a

Re: Tomcat deploys 2 instances of an app mapped to "/"

2008-03-30 Thread Alex Epshteyn
Chris, Your suggestion worked! Simply renaming my app to ROOT and getting rid of the stuff I added to server.xml proved to be a better strategy. I now have it working as desired with the following context.xml, deployed with my app in ROOT.war (Note: the "etc." refers to the other attributes

Re: Tomcat deploys 2 instances of an app mapped to "/"

2008-03-30 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Alex, Alex Epshteyn wrote: | Suppose I have the following in my server.xml: | | | | | | | In Tomcat 5.5, it is recommended to use context.xml files in WAR files (or exploded WAR files in directories) placed directly into the Engine's "

Tomcat deploys 2 instances of an app mapped to "/"

2008-03-30 Thread Alex Epshteyn
Hi, Suppose I have the following in my server.xml: This causes Tomcat to deploy two instances of the "foo" webapp - one as path "/foo/" and one as "/". I only want one instance deployed at "/". Any ideas? This is the only strategy I've found for replacing the ROOT app with my ow