Fwd: How do I deploy a war file to a context path not matching the war file name

2013-02-01 Thread Edd Grant
Hi all, I am using Tomcat 6.0.32 and have a deployment question. I have a war file over which I do not have control of the filename, let's call it MYAPP.war . Tomcat's default deployment behaviour would be to deploy this application under a context of /myapp however I want to deploy it instead

Re: How do I deploy a war file to a context path not matching the war file name

2013-02-01 Thread chris derham
The documentation for the docBase (a.k.a context root) attribute states that the docBase attribute should be used to point to the war or exploded war file. My server's appBase is the default of 'webapps' and my WAR and exploded WAR are under webapps so I have specified a relative path of

Re: How do I deploy a war file to a context path not matching the war file name

2013-02-01 Thread Edd Grant
Thanks Chris - that works perfectly! On 1 February 2013 11:06, chris derham ch...@derham.me.uk wrote: The documentation for the docBase (a.k.a context root) attribute states that the docBase attribute should be used to point to the war or exploded war file. My server's appBase is the default

deploy a war file

2010-10-02 Thread William Biggs
if I name a war file called kc8pdr.war and after I upload it to my tomcat and restart it it put it a folder called kc8pdr . How do I get it to do it in the public_html folder instead - To unsubscribe, e-mail:

Re: deploy a war file

2010-10-02 Thread Mark Eggers
, October 2, 2010 7:57:30 PM Subject: deploy a war file if I name a war file called kc8pdr.war and after I upload it to my tomcat and restart it it put it a folder called kc8pdr . How do I get it to do it in the public_html folder instead

deploy a war file

2008-05-19 Thread ashok prabhu - Sun Microsystems - Bangalore India
Hi folks, I downloaded a war file. I need to deploy the war file in tomcat. Please let me know how do i do it? Thanks, ~Ashok. - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED

[Fwd: deploy a war file]

2008-05-19 Thread ashok prabhu - Sun Microsystems - Bangalore India
Hi folks, I downloaded a war file. I need to deploy the war file in tomcat. Please let me know how do i do it? I am running Solaris 10. Thanks, ~Ashok. - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe

RE: deploy a war file

2008-05-19 Thread Dilip Diascore Kolandairaj
:56 AM To: users@tomcat.apache.org Subject: deploy a war file Hi folks, I downloaded a war file. I need to deploy the war file in tomcat. Please let me know how do i do it? Thanks, ~Ashok. - To start a new topic, e-mail: users

Re: deploy a war file

2008-05-19 Thread Fred K
prabhu - Sun Microsystems - Bangalore India [EMAIL PROTECTED] wrote: Hi folks, I downloaded a war file. I need to deploy the war file in tomcat. Please let me know how do i do it? Thanks, ~Ashok. - To start a new topic, e-mail

Re: deploy a war file

2008-05-19 Thread ashok prabhu - Sun Microsystems - Bangalore India
the any other application in the same name as that of WAR file. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 20, 2008 9:56 AM To: users@tomcat.apache.org Subject: deploy a war file Hi folks, I downloaded a war file. I need to deploy the war file

Re: deploy a war file

2008-05-19 Thread Ch Praveena
that you are not having the any other application in the same name as that of WAR file. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 20, 2008 9:56 AM To: users@tomcat.apache.org Subject: deploy a war file Hi folks, I downloaded a war file. I

Re: deploy a war file

2008-05-19 Thread Ch Praveena
- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 20, 2008 9:56 AM To: users@tomcat.apache.org Subject: deploy a war file Hi folks, I downloaded a war file. I need to deploy the war file in tomcat. Please let me know how do i do it? Thanks, ~Ashok

when I deploy my war file

2007-07-09 Thread manaa
Hi I am getting the following error when I deploy my war file. Please see the error messages. Thanks in advance Manaa Jul 9, 2007 7:42:08 AM org.apache.catalina.startup.HostConfig deployWAR INFO: Deploying web application archive campaign.war Jul 9, 2007 7:42:12 AM

Re: Is it possible to deploy a war file which gives a different context name?

2007-01-11 Thread Markus Schönhaber
Aaron Chai wrote: Is it possible for Tomcat to deploy war files where the context name is not the same as the original war file name, e.g. deploying webapp.war and the context name is /mainApp instead of /webapp. How would this be achieved if it is possible? I don't think this is possible -

Re: Is it possible to deploy a war file which gives a different context name?

2007-01-11 Thread Tim Funk
Yes (I think) 1) Keep the war file out of the tomcat installation 2) Use a context declaration which points to the war file (mainApp.xml) 3) Don't unpack wars (Host ... unpackWARs=false ...) mainApp.xml === Context docBase='/usr/local/wars/foo.war'/ === -Tim Aaron Chai wrote: Is it possible

RE: Is it possible to deploy a war file which gives a different contextname?

2007-01-11 Thread Caldarale, Charles R
From: Tim Funk [mailto:[EMAIL PROTECTED] Subject: Re: Is it possible to deploy a war file which gives a different contextname? 1) Keep the war file out of the tomcat installation 2) Use a context declaration which points to the war file (mainApp.xml) 3) Don't unpack wars (Host

Is it possible to deploy a war file which gives a different context name?

2007-01-10 Thread Aaron Chai
Is it possible for Tomcat to deploy war files where the context name is not the same as the original war file name, e.g. deploying webapp.war and the context name is /mainApp instead of /webapp. How would this be achieved if it is possible? Thanks.