You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ws.apache.org by ge...@ws.apache.org on 2005/01/11 10:51:13 UTC

[Apache Web Services Wiki] New: FrontPage/Axis/Reload

   Date: 2005-01-11T01:51:13
   Editor: ToshiyukiKimura
   Wiki: Apache Web Services Wiki
   Page: FrontPage/Axis/Reload
   URL: http://wiki.apache.org/ws/FrontPage/Axis/Reload

   Importing old wiki ...

New Page:

##language:en
'''Q: How do I restart just the Axis webapp using an Ant task?'''

A: For Tomcat, use the following: 

{{{ 
<property name="catalina.home" value="C:\tomcat41"/>
<taskdef name="reload" classname="org.apache.catalina.ant.ReloadTask">
<classpath> 
  <pathelement location="${catalina.home}/server/lib/catalina-ant.jar"/> 
 </classpath> 
</taskdef>
<target name="reload">
   <reload url="http://localhost:8080/manager" username="admin" password='''''' path="/axis"/>
</target> 
}}}