Not sure how configure that, its just an Ant task:
<target name="deploy" description="Install web application" depends="war"> <deploy url="${url}" username="${username}" password="${password}" path="${path}" war="file:${dist.home}${path}.war" /> <antcall target="open.browser" /> </target> Do you have an example for that? On May 25, 2018, at 09:13 AM, Johan Compagner <jcompag...@servoy.com> wrote: On Thu, 24 May 2018 at 22:01, Arnold Morein <arnie.mor...@me.com> wrote: There are no errors in catalina.out when this occurs. Yes, via the manager UI I can deploy the WAR, but that doesn't help me in our automated scripts. It does appear to be on the Ant side of things though. Does chunking need to be turned on in Manager (or does that setting enable it)? Or does Ant need to support chunking? i see you use username/password is that basic authentication? and is that basic authenthication pre emptive? Because that could be a bit problem, if you send a very big file to a server that then first replies that you need to authenticate You should use pre emptivie, so send the username/password right away with the first request