I am running Tomcat 5.5.3 on a Windows XP box. When I run my Ant build task
to "undeploy" my webapp, it deletes everything except the struts.jar file.
When I run my Ant "deploy" task it fails stating that an "Application
already exists at path /...". I just updated to Tomcat 5.5.3 from 5.5.1.
Everything worked correctly with 5.5.1, I just can't remember what I had
set-up differently.

<target name="install.only"
description="Install application to servlet container">

<deploy url="${manager.url}"
username="${manager.username}"
password="${manager.password}"
path="${app.path}"
localWar="file://${build.home}"/>

</target>

<target name="remove.only"
description="Remove application on servlet container">

<undeploy url="${manager.url}"
username="${manager.username}"
password="${manager.password}"
path="${app.path}"/>
</target>


Thanks,

Warren


---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to