El Viernes 05 Mayo 2006 16:35, Dan Diephouse escribió:
> There are two ways you can do it:
> 1. Use getXMLStreamReader() - but by the time you get the MessageContext
> in your service, it will already have read all the parameters unless you
> are using the MessageBinding (see the binding docs).
> 2. Use the DOMInHandler/DOMOutHandler. These create Documents of the
> message and stash them in the message. so you can retrieve them like:
>
> Document msg = (Document)
> context.getInMessage().getProperty(DOMInHandler.DOM_MESSAGE);
>
> - Dan
>

Works perfectly using the DOMInHandler.
Thank you so much!
Iván.

Reply via email to