how to set context path on TOMCAT6

2008-08-21 Thread Sushil Dodake
hi all, I am using TOMCAT 6. i have a application war file named as 'aaa.0.0.1d.war' i need to set a context path for this application as '/reporting-application' so for this to work i am creating a xml file 'reporting-application.xml' and deploying it in the conf/Catalina/locahost/ direcotry.

Re: [programmazione] how to set context path on TOMCAT6

2008-08-21 Thread Luca Cicale
to set context path on TOMCAT6 hi all, I am using TOMCAT 6. i have a application war file named as 'aaa.0.0.1d.war' i need to set a context path for this application as '/reporting-application' so for this to work i am creating a xml file 'reporting-application.xml' and deploying it in the conf

Re: [programmazione] how to set context path on TOMCAT6

2008-08-21 Thread Sushil Dodake
-- From: Sushil Dodake [EMAIL PROTECTED] Sent: Thursday, August 21, 2008 9:04 AM To: users@tomcat.apache.org Subject: [programmazione] how to set context path on TOMCAT6 hi all, I am using TOMCAT 6. i have a application war file named as 'aaa.0.0.1d.war' i

Re: how to set context path on TOMCAT6

2008-08-21 Thread Felix Schumacher
On Thu, August 21, 2008 9:04 am, Sushil Dodake wrote: hi all, I am using TOMCAT 6. i have a application war file named as 'aaa.0.0.1d.war' i need to set a context path for this application as '/reporting-application' so for this to work i am creating a xml file 'reporting-application.xml'

Re: [programmazione] how to set context path on TOMCAT6

2008-08-21 Thread Luca Cicale
To: Tomcat Users List users@tomcat.apache.org Subject: Re: [programmazione] how to set context path on TOMCAT6 my requirement is to create a application specific xml file. am i making any mistake here? On Thu, Aug 21, 2008 at 2:35 AM, Luca Cicale [EMAIL PROTECTED] wrote: A simple way is to put in your

Re: how to set context path on TOMCAT6

2008-08-21 Thread David Smith
You have two options. 1. Rename aaa.0.0.1d.war to reporting-application.war and place it in tomcat's webapps directory. This is the easiest and recommended method of deployment. 2. Deploy the war file from somewhere outside tomcat's webapps directory and add reporting-application.xml to

Re: [programmazione] how to set context path on TOMCAT6

2008-08-21 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Luca, Luca Cicale wrote: A simple way is to put in your web application a file named context.xml in META-INF directory, with the following content: ?xml version=1.0 encoding=UTF-8? Context path=/reporting-application / No, no, no.

Re: how to set context path on TOMCAT6

2008-08-21 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Sushil, Sushil Dodake wrote: i have a application war file named as 'aaa.0.0.1d.war' i need to set a context path for this application as '/reporting-application' so for this to work i am creating a xml file 'reporting-application.xml' and