ON linux:( it will work on windows to I think..)
To have the logs easily :
make a file client-deploy.wsdd with :
<deployment
xmlns="http://xml.apache.org/axis/wsdd/"
xmlns:java="http://xml.apache.org/axis/wsdd/providers/java">
<handler name="log" type="java:org.apache.axis.handlers.LogHandler"/>
<globalConfiguration>
<requestFlow>
<handler type="log"/>
</requestFlow>
<responseFlow>
<handler type="log"/>
</responseFlow>
</globalConfiguration>
<transport
name="http"
pivot="java:org.apache.axis.transport.http.HTTPSender"/>
</deployment>
(or more if you want)
and then excecute the command : (it will deploy the config on the
tomcat/axis)
java org.apache.axis.client.AdminClient client-config.wsdd
a axis.log file will be create in the same directory.
ced.