Before you create Service class object in your client code you put such line:
 
org.apache.axis.AxisProperties.setProperty("axis.ClientConfigFile","./client_deploy.wsdd");
 
where client_deploy.wsdd is file which contains for example sth like that:
 
---------------------------
 
 
 <transport name="http" pivot="java:org.apache.axis.transport.http.HTTPSender"/>
 
  <globalConfiguration >
 
  <requestFlow>
   <handler type="java:handlers.MyHandler1" >
    <parameter name="myparam1" value="value1"/>
    <parameter name="myparam2" value="value2"/>
   </handler>
   <handler type="java:handlers.MyHandler2" >
    <parameter name="myparam1" value="value1"/>
    <parameter name="myparam2" value="value2"/>
   </handler>  
  </requestFlow>
 
  </globalConfiguration >
 
</deployment>
----- Original Message -----
Sent: Tuesday, April 04, 2006 8:50 AM
Subject: RE: Is it possible to add handler on client side?

I am still trying. From samples/stock, I guess there should be a sort of client-config.wsdd file available for client site code. 
 But dont' know the syntax. Followed the instruction, but did create a useful wsdd for my client.
 However, you use Call class, there is a setClientHanlders().  


From: Jinyuan Zhou [mailto:[EMAIL PROTECTED]
Sent: Monday, April 03, 2006 10:02 PM
To: axis-user@ws.apache.org
Subject: Is it possible to add handler on client side?

Is there any way to add handler chain for the generated  the client side code? Thanks,

Reply via email to