RE: How to deploy my webapp as root context webapp without tomcat loading it twice?

2005-12-01 Thread Caldarale, Charles R
> From: Vivek Mohan [mailto:[EMAIL PROTECTED] > Subject: Re: How to deploy my webapp as root context webapp > without tomcat loading it twice? > > I've kept myWebapp at ${CATALINA.HOME}/myWebapp and given this path in > server.xml for the root context. Is that the c

RE: How to deploy my webapp as root context webapp without tomcat loading it twice?

2005-12-01 Thread Caldarale, Charles R
> From: Francis Galiegue [mailto:[EMAIL PROTECTED] > Subject: Re: How to deploy my webapp as root context webapp > without tomcat loading it twice? > > I wonder whether creating Catalina//ROOT.xml with the > appropriate would work... That works fine on 5.5.12, haven't t

Re: How to deploy my webapp as root context webapp without tomcat loading it twice?

2005-12-01 Thread Francis Galiegue
2005/12/1, Paul Singleton <[EMAIL PROTECTED]>: > Vivek Mohan wrote: > > Like I mentioned in my problem statement: > > > > I don't want to move my application into ROOT folder or rename it to ROOT. > > And unlike as you said Mark, putting autoDeploy=false doesn't help in this > > case. > > > > Is t

Re: How to deploy my webapp as root context webapp without tomcat loading it twice?

2005-12-01 Thread Paul Singleton
Vivek Mohan wrote: Like I mentioned in my problem statement: I don't want to move my application into ROOT folder or rename it to ROOT. And unlike as you said Mark, putting autoDeploy=false doesn't help in this case. Is this (loading a webapp twice if the context path and the docBase path is di

Re: How to deploy my webapp as root context webapp without tomcat loading it twice?

2005-12-01 Thread Vivek Mohan
Sorry Mark, but one question to you since you've suggested the option of moving the webapp outside of appBase. I've kept myWebapp at ${CATALINA.HOME}/myWebapp and given this path in server.xml for the root context. Is that the correct way to do it? Is there anything in my webapp that I need to tak

Re: How to deploy my webapp as root context webapp without tomcat loading it twice?

2005-11-30 Thread Vivek Mohan
Like I mentioned in my problem statement: I don't want to move my application into ROOT folder or rename it to ROOT. And unlike as you said Mark, putting autoDeploy=false doesn't help in this case. Is this (loading a webapp twice if the context path and the docBase path is different) a feature of

Re: How to deploy my webapp as root context webapp without tomcat loading it twice?

2005-11-30 Thread Joe Riopel
Since this was brought up.. I moved my default ROOT folder out my webapps directory ( to a temp dir on my server ), because I wanted a different app to the be the default application. So I moved my application's direcotry to webapps/ROOT and everything has been working fine. Is there anything "wro

Re: How to deploy my webapp as root context webapp without tomcat loading it twice?

2005-11-30 Thread Mark Thomas
Vivek Mohan wrote: Question: I want to have myWebapp as the root context webapp in my tomcat server. And I don't want to rename it to "ROOT". Is there a way by which I can avoid tomcat from loading myWebapp twice? Options: - Don't put it in the appbase directory. - Turn off autoDeploy - Live w