Hi,

I have a client side outbound interceptor added to the interceptor chain with 
the following overridden method

public void handleMessage(SoapMessage message)

throws Fault

{

SoapVersion version = message.getVersion();

try

{

SOAPMessage soapMessage = message.getContent(SOAPMessage.class);

WSSOAPEnvelope wsEnvelope = new 
WSSOAPEnvelope(soapMessage.getSOAPPart().getEnvelope());

WSSecurity sec = WSSecurity.newInstance(wsEnvelope.getOwnerDocument());

.

..

}

In CXF2.2.7, message.getContent() returns null. Is this a bug in CXF2.2.7?  
CXF2.2.2 returns valid value. Is there a different method that I can use 
instead of getContent()?

Thanks

Steve

Reply via email to