RE: problem with tomcat manager's deploy command

2005-09-13 Thread rahul
deploy command Importance: High From: rahul [mailto:[EMAIL PROTECTED] Subject: problem with tomcat manager's deploy command If I remove this context tag from server.xml then the deploy command works fine. But I want to keep this information in server.xml and at the same time use tomcat

RE: problem with tomcat manager's deploy command

2005-09-13 Thread Allistair Crossley
- From: rahul [mailto:[EMAIL PROTECTED] Sent: 13 September 2005 14:23 To: Tomcat Users List Subject: RE: problem with tomcat manager's deploy command Thanks Charles, Now I am defining my application context in a separate file under META-INF But still I am not been able to undeploy my

RE: problem with tomcat manager's deploy command

2005-09-13 Thread Caldarale, Charles R
From: rahul [mailto:[EMAIL PROTECTED] Subject: RE: problem with tomcat manager's deploy command Tomcat Manager's undeploy command, which I run from ant is not cleaning some of the jar files in my application's lib folder However no error shown on ant prompt. What happens if you try

RE: problem with tomcat manager's deploy command

2005-09-13 Thread rahul
Users List Subject: RE: problem with tomcat manager's deploy command From: rahul [mailto:[EMAIL PROTECTED] Subject: RE: problem with tomcat manager's deploy command Tomcat Manager's undeploy command, which I run from ant is not cleaning some of the jar files in my application's lib folder

problem with tomcat manager's deploy command

2005-09-12 Thread rahul
Hi all, I am trying to use Tomcat Manager's deploy command using Ant script to deploy a web application. The command doesn't work in case there is an entry in tomcat configuration file server.xml for my application like context path=/myAppName . ... ... /context which I am using

RE: problem with tomcat manager's deploy command

2005-09-12 Thread Caldarale, Charles R
From: rahul [mailto:[EMAIL PROTECTED] Subject: problem with tomcat manager's deploy command If I remove this context tag from server.xml then the deploy command works fine. But I want to keep this information in server.xml and at the same time use tomcat manager's deploy command from

Re: DEPLOY Command

2003-02-10 Thread Jacob Kjome
Yes, it is fixed in CVS and will be in the next alpha or release of Tomcat (after 4.1.19 where the bug was reported by me). It is a simple mapping issue. To fix it for yourself in the mean time, just edit the manager web.xml and add the servlet mapping for the deploy command. Just follow

Re: DEPLOY Command

2003-02-10 Thread Alberto Magalhaes
I am using TOMCAT 4.0.18. - Original Message - From: Bill Barker [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, February 10, 2003 7:44 AM Subject: Re: DEPLOY Command I seem to remember that there were some recent changes that may fix this, but it is hard to know without knowing

RE: DEPLOY Command

2003-02-10 Thread Felipe
To use the deploy command you need to create a HTML page with a form with the path field and a field type FILE and PUT it. The following was copied from the manager how-to: Upload the web application archive (WAR) file that is specified as the request data in this HTTP PUT request, install

Re: DEPLOY Command

2003-02-10 Thread Bill Barker
, 2003 7:44 AM Subject: Re: DEPLOY Command I seem to remember that there were some recent changes that may fix this, but it is hard to know without knowing which Tomcat version you are running. Alberto Magalhaes [EMAIL PROTECTED] wrote in message 001701c2cfc4$2a35e530$353216d5@aa

Re: DEPLOY Command

2003-02-09 Thread Bill Barker
I seem to remember that there were some recent changes that may fix this, but it is hard to know without knowing which Tomcat version you are running. Alberto Magalhaes [EMAIL PROTECTED] wrote in message 001701c2cfc4$2a35e530$353216d5@aacm">news:001701c2cfc4$2a35e530$353216d5@aacm... Hi, why when

DEPLOY Command

2003-02-08 Thread Alberto Magalhaes
Hi, why when i try to make: http://127.0.0.1:8080/manager/deploy?path=/examples, it gives an error: FAIL - Unknown command /deploy Thanks AAM

Re: DEPLOY Command

2003-02-08 Thread Jacob Kjome
2 things.. 1. the deploy command uses the HTTP PUT method. No browser out there supports this. You need to use the Catalina Ant tasks to run deploy. What you want is install. 2. Tomcat-4.1.19 had the manager app retooled. In the process, the servlet mapping for the deploy command

Deploy command in the Manager

2002-04-23 Thread Matt Seaborn
The Deploy Task (org.apache.catalina.ant.DeployTask) in the catalina-ant.jar that accompanies the Java XML EA2 seems to support the deploying of WARs into Tomcat using a deploy command, embedding the WAR binary in the HTTP PUT command. However Catalina doesn't appear to support

RE: Deploy command in the Manager

2002-04-23 Thread Matt Seaborn
Found it out. It is not, and will not, be supported in Tomcat 4.0.x. Presumably it will appear in 4.1. -Original Message- From: Matt Seaborn [mailto:[EMAIL PROTECTED]] Sent: 23 April 2002 10:22 To: '[EMAIL PROTECTED]' Subject: Deploy command in the Manager The Deploy Task

RE: Deploy command in the Manager

2002-04-23 Thread Craig R. McClanahan
On Tue, 23 Apr 2002, Matt Seaborn wrote: Date: Tue, 23 Apr 2002 14:33:39 +0100 From: Matt Seaborn [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL PROTECTED] Subject: RE: Deploy command in the Manager Found it out