Hello
I've got a very strange behaviour of Tomcat. I put my war with the Ant task deploy to the server. I can see it arriving at the server, the WAR gets unpacked and in the next second it just disappears ...
I do not belive in magic, does anybody know why this is happening?
This is my task:
<target name="deploy">
<taskdef name="deploy" classname="org.apache.catalina.ant.DeployTask" />
<deploy url="${tomcat.url}"
username="${username}"
password="${password}"
path="/${app.name}"
war="file:${deploy.home}/${app.name}.war"
/>
</target>
Greatful for any hints and help.
Regards
Tarik