--- Marc Logemann <[EMAIL PROTECTED]> wrote:
> <taskdef name="tclist"
> classname="org.apache.catalina.ant.ListTask"/>
>
> <target name"foo">
>
> <tclist url="${catalina.url}" username="${catalina.username}"
> password="${catalina.password}"/>
> </target>
If you're running Ant1.5, and assuming <tclist> has an option to write its
output to a file (which, if it doesn't, would definitely be bad, but I
suppose you could work around it in the meantime by bracketing your
<tclist> in a <record>):
<property name="app" value="maxbahr"/>
<target name="stopApp" depends="chkAppStatus" if="app.running">
<echo>Stopping ${app}...</echo>
<tcstop url="${catalina.url}" username="${catalina.username}"
password="${catalina.password}" path="/${app}"/>
</target>
<target name="chkAppStatus">
<loadfile property="app.running" srcFile="tclist.out">
<filterchain>
<linecontains>
<contains value="/${app}:running"/>
</linecontains>
</filterchain>
</loadfile>
</target>
Diane
=====
([EMAIL PROTECTED])
__________________________________________________
Do You Yahoo!?
Yahoo! - Official partner of 2002 FIFA World Cup
http://fifaworldcup.yahoo.com
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>