Thanks,
But I thought the handlers only applied to the server side?  I need to get the doc body with the client API.
----- Original Message -----
Sent: Wednesday, March 12, 2003 2:17 PM
Subject: RE: Accessing 'raw' document body.

You could use a response handler to retrieve the response message.
 
your deploy.wsdd could look something like this:
 
 <service name="test" provider="java:RPC">
  <responseFlow>
   <handler type="java:CustomHandler">
    <parameter name="scope" value="scope"/>
   </handler>
  </responseFlow>
  <parameter name="allowedMethods" value="*"/>
  <parameter name="className" value="ServiceClass"/>
  <parameter name="scope" value="scope"/>
 </service>
 
your handler could look some thing like
 
public class CustomHandler extends BasicHandler
{
    public void invoke (MessageContext messageContext)
   {
        Message responseMessage = messageContext.getResponseMessage();
        ......
   }
}
Eugenio
-----Original Message-----
From: Erich Oliphant [mailto:[EMAIL PROTECTED]
Sent: Wednesday, March 12, 2003 12:04 PM
To: [EMAIL PROTECTED]
Subject: Accessing 'raw' document body.

Hello,
I am using Axis to make calls against a SOAP service that uses document style messaging.  The Axis classes make it much easier to send requests and deal w/ the responses.  I have one situation where I need do several request/replies but I need to hand the unparsed response document body off to another program in the last step.  Is there any easy way to do this?
 
Thanks

Reply via email to