Add: failOnError="false"

-----Original Message-----
From: Glen Mazza [mailto:[EMAIL PROTECTED] 
Sent: Monday, February 06, 2006 8:25 AM
To: users@tomcat.apache.org
Subject: wrapping manager "undeploy" Ant task


Hello,

I'm using the manager tasks for Ant to undeploy and deploy my WAR file 
in Tomcat, as shown below.  Sometimes, due to a previous processing 
error, there is nothing to "undeploy" (i.e., no webapp there) but the 
"deploy" task is still relevant and should still occur.  However, in 
these cases, my Ant target fails because the "undeploy" task returns a 
nothing-to-undeploy error.

Question:  How do I wrap the <undeploy/> task, so that if there is 
nothing to undeploy, the deploy task within this target will still 
activate?  Currently I am just commenting out the undeploy task when 
that situation occurs.

Thanks,
Glen


<target name="deploy" depends="war">

     <undeploy url="${tcManagerURL}" username="${tcUsername}" 
password="${tcPassword}" path="${apppath}"/>

     <deploy url="${tcManagerURL}" username="${tcUsername}" 
password="${tcPassword}" path="${apppath}" war="${war.app.name}.war"/>

</target>


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to