RE: Deploying in ROOT folder using a war file

2005-12-01 Thread Gautam Gothoskar
: From: Vivek Mohan [mailto:[EMAIL PROTECTED] Subject: Re: Deploying in ROOT folder using a war file Tomcat is extracting the files to localhost/_ because thats where it knows it has to extract anything from the ROOT application. However, that's true only if using the unpackWARs=false

Re: Deploying in ROOT folder using a war file

2005-11-30 Thread Mark Thomas
Gautam Gothoskar wrote: Options: - Name your web-app ROOT.war - Put your web-app outside the appbase and place a ROOT.xml in the appbase Mark Hi! I have the following issue: I have a war file (myapp.war) which when deployed in tomcat is accessible by using the url

Re: Deploying in ROOT folder using a war file

2005-11-30 Thread Gautam Gothoskar
Hi Mark, Thanks for the quick reply. But in doing the way you have mentioned, tomcat does NOT expand the classes etc in the ROOT folder. The application does get loaded and work. I was wondering if there is any way that the war file could be expanded in the ROOT folder? regards, Gautam. ---

Re: Deploying in ROOT folder using a war file

2005-11-30 Thread Mark Thomas
Gautam Gothoskar wrote: Hi Mark, Thanks for the quick reply. But in doing the way you have mentioned, tomcat does NOT expand the classes etc in the ROOT folder. The application does get loaded and work. I was wondering if there is any way that the war file could be expanded in the ROOT folder?

Re: Deploying in ROOT folder using a war file

2005-11-30 Thread Gautam Gothoskar
Mark, I have deleted the ROOT folder from the webapps directory. I have the unpackWARs set to true in the host element in server.xml. My tomcat version is 4.1.24. What tomcat does is it loads up the servlet on startup as I have specified it in web.xml. It extracts the WEB-INF/classes and lib

Re: Deploying in ROOT folder using a war file

2005-11-30 Thread Vivek Mohan
Tomcat is extracting the files to localhost/_ because thats where it knows it has to extract anything from the ROOT application. -- Vivek. On 12/1/05, Gautam Gothoskar [EMAIL PROTECTED] wrote: Mark, I have deleted the ROOT folder from the webapps directory. I have the unpackWARs set to true

RE: Deploying in ROOT folder using a war file

2005-11-30 Thread Caldarale, Charles R
From: Vivek Mohan [mailto:[EMAIL PROTECTED] Subject: Re: Deploying in ROOT folder using a war file Tomcat is extracting the files to localhost/_ because thats where it knows it has to extract anything from the ROOT application. However, that's true only if using the unpackWARs=false