On Tuesday 27 April 2010 8:15:25 am Steven Thein wrote:
> Hi,
>     I added a SOAP interceptor in, incoming chain. I want to process the
> SoapMessage and then pass some data to the service. what will be the best
> way to do it?

The SoapMessage passed in is a properties map that you can store stuff on.   
In the service itself, you can do:

@Resource
WebServiceContext ctx;

...
ctx.getMessageContext().get("MY_STORED_KEY") to retrieve it.



-- 
Daniel Kulp
dk...@apache.org
http://dankulp.com/blog

Reply via email to