*my build.xml : *
<target name="compile" etc..... >
etc.....
<jar jarfile="${cms.home}/myapps.war">
<fileset dir="${cms.distdeploy}" includes="**" />
</jar>
>/target><target name="install" description="Install web application" depends="compile">
<install url="${url}" username="${username}" password="${password}" path="${path}" war="file://${myapps.home}/myapps.war"/>
</target>
*When i try :* ant install install: [install] OK - Installed application at context path /cms [install]
BUILD SUCCESSFULL
*Ant say is right but myapps is not avalaible. **My application is not avalaible and not in WEBAPPS directory !!!
**If i use tomcat manager interface and upload this same WAR file generated ist working.*
*Some information about my problem ?*
