Re: Deploying a webapp under two different URIs

2005-10-05 Thread Paul Singleton
Carsten Guenther wrote: I want to deploy the same webapp under two different URIs. I created two context descriptors like this: Context path=/a docBase=/home/user/myapp debug=0 privileged=false Logger className=org.apache.catalina.logger.FileLogger prefix=a. suffix=.txt

Deploying a webapp under two different URIs (re-sent)

2005-09-23 Thread Carsten Guenther
Hi, I want to deploy the same webapp under two different URIs. I created two context descriptors like this: Context path=/a docBase=/home/user/myapp debug=0 privileged=false Logger className=org.apache.catalina.logger.FileLogger prefix=a. suffix=.txt timestamp=true/ /Context

Deploying a webapp under two different URIs

2005-09-22 Thread Carsten Guenther
Hi, I want to deploy the same webapp under two different URIs. I created two context descriptors like this: Context path=/a docBase=/home/user/myapp debug=0 privileged=false Logger className=org.apache.catalina.logger.FileLogger prefix=a. suffix=.txt timestamp=true/ /Context Context

Re: Deploying a webapp under two different URIs

2005-09-22 Thread Ritchie Gillam
Are you are using Tomcat 5.5.X? If so it is not recommended to put any Context in the server.xml file but instead in the application's META-INF/context.xml file. One of the problems we had was by putting the Context tag in server.xml itself we couldn't redeploy an application without

Re: Deploying a webapp under two different URIs

2005-09-22 Thread Carsten Guenther
We are using 5.0.28 and we are using context deployment files. On Thu, 2005-09-22 at 15:23 -0300, Ritchie Gillam wrote: Are you are using Tomcat 5.5.X? If so it is not recommended to put any Context in the server.xml file but instead in the application's META-INF/context.xml file. One