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: Host name=localhost appBase=webapps unpackWARs=true autoDeploy=true xmlValidation=false xmlNamespaceAware=false !-- Serve foo from the root dir of the Tomcat server -- Context path= docBase=foo debug=0 reloadable=false cookies=false / !--

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: | | Host name=localhost appBase=webapps unpackWARs=true | autoDeploy=true xmlValidation=false xmlNamespaceAware=false | !-- Serve foo from the root dir of the Tomcat

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 Context path= docBase=ROOT etc. /Context (Note:

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 Context path= docBase=ROOT etc. /Context Close, but the path and docBase