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 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 of 'webapps' >

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

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 und

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

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: users-unsubscr...@t

Re: deploy a war file

2008-05-19 Thread Ch Praveena
start your >>> tomcat. >>> >>> Note : Please make sure 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] >

Re: deploy a war file

2008-05-19 Thread Ch Praveena
ectory and restart your >> tomcat. >> >> Note : Please make sure 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: Tuesda

Re: deploy a war file

2008-05-19 Thread ashok prabhu - Sun Microsystems - Bangalore India
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 in

Re: deploy a war file

2008-05-19 Thread Fred K
hi, there are a few ways: - expend the war manually (jar -xvf my.war) into the ./webapps sub directory of your Tomcat. - use the tomcat manager if installed to upload the war. http://tomcat.apache.org/tomcat-6.0-doc/deployer-howto.html Rgds - Fred On Tue, May 20, 2008 at 12:26 AM, ashok prabhu

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

[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,

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]

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) &

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 () mainApp.xml === === -Tim Aaron Chai wrote: Is it possible for Tomcat to deploy war files where the context name is not the same as

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

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.