You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ws.apache.org by Apache Wiki <wi...@apache.org> on 2005/04/05 10:57:44 UTC

[Ws Wiki] Update of "ja/axis/Reload" by ToshiyukiKimura

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Ws Wiki" for change notification.

The following page has been changed by ToshiyukiKimura:
http://wiki.apache.org/ws/ja/axis/Reload

The comment on the change is:
Axis Wiki in Japanese

New page:
##language:ja

'''質問: Ant タスクを使って、Axis webapp だけを再起動するにはどうすればいいのですか?'''

回答: Tomcat では、以下のようにします。

{{{
<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>
}}}