I'm having problems installing my web application on linux using the config attribute 
instead of the war attribute.

I tried it on windows and got it to work in no time.

I'm using tomcat 4.1.18

I don't get any errors running ant, but the application is never actually installed.I 
know it's not a problem with the application itself because i can install it using the 
war attribute to the top level directory.

anyone have any ideas? i'm completely stuck on this one.

snippet from build.xml
----------
<target name="install" description="Install Web application" depends="build">
  <install url="${url}" username="${username}" password="${password}"
        path="/bind" config="file://${build}/META-INF/context.xml"/>
</target>


context.xml
------------------
<?xml version="1.0" encoding="UTF-8"?>
<context path="/bind" docBase="/home/marc/bindapp/build">
</context>

Reply via email to