https://issues.apache.org/bugzilla/show_bug.cgi?id=50706
--- Comment #2 from Markus Huelsekopf <mh@notano.de> 2011-02-02 08:40:46 EST ---
I tried hard to find my error in the url, but haven't, sorry.
(In reply to comment #1)
> You are using the wrong url.
The error message is somewhat missleading than?
Hopefully URL is the same for "deploy" and "undeploy":
I am using "http://localhost:8080/manager/html":
-------------------------------------------------------------------
...
<property name="url" value="http://localhost:8080/manager/html"/>
...
<target name="deploy" description="Deploy web application">
<deploy
url="${url}"
username="${username}"
password="${password}"
path="${apppath}"
war="${appname}.war"
update="true"
/>
</target>
<target name="undeploy" description="Undeploy web application">
<undeploy
url="${url}"
username="${username}"
password="${password}"
path="${apppath}"
/>
</target>
-------------------------------------------------------------------
--
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org
|