And you expected correctly, question was posted many times :)

client.addInHandler(new org.codehaus.xfire.util.dom.DOMInHandler());
client.addOutHandler(new org.codehaus.xfire.util.dom.DOMOutHandler());

Then you can access current message with

AbstractMessage sm = msgContext.getCurrentMessage();
 Document doc = (Document) sm.getProperty(DOMInHandler.DOM_MESSAGE);


OutMessage msg = context.getOutMessage();
Document doc = (Document) msg.getProperty(DOMOutHandler.DOM_MESSAGE);


On 3/22/07, Abid Hussain <[EMAIL PROTECTED]> wrote:
Hi everybody,

I would expect this question to be posted already in the past, but I
didn't find anything when using google (the search in the archives
doesn't work currently).

I'm using xfire as client in a desktop application and would like to
display the request/response SOAP Messages in the application's GUI.

Is there a way to fetch those messages when incoming/outgoing?

Best regards,

Abid

--

Abid Hussain
Mail: [EMAIL PROTECTED]
Web: http://www.abid76.de

---------------------------------------------------------------------
To unsubscribe from this list please visit:

    http://xircles.codehaus.org/manage_email




--
-----
When one of our products stops working, we'll blame another vendor
within 24 hours.

---------------------------------------------------------------------
To unsubscribe from this list please visit:

   http://xircles.codehaus.org/manage_email

Reply via email to