Ant DeployTask / InstallTask

2004-07-30 Thread Christian Nelson
Greetings, I'm using the ant DeployTask in two different scenarios. One works as desired, the other not so much. I'm trying to figure out what I'm not doing right. Scenario 1: Deploy a packaged .war file. This is works great. The war parameter to the install task is

Re: Ant DeployTask / InstallTask

2004-07-30 Thread Christian Nelson
I've debugged the problem, here's the answer, in case someone else runs into the same problem. the directory WEB-INF was in lowercase (e.g. web-inf) and tomcat couldn't find the web.xml that it contains as a result. The war ant task uses the right capitalization when it creates the war, so

Re: Ant DeployTask / InstallTask

2004-07-30 Thread Peter Rossbach
Hello Christian, please read the manager app documentation for Tomcat 5 to explain all deploy parameter. Here my ant task for remote (war) and local deployment: Here my build.properties server.url=http://localhost:7380 app.name=myapps app.path=/${app.name} app.version=1.0-dev