Hi , 
you can use Logging Interceptor from CXF 

Ex. code 

<bean id="logInbound"
class="org.apache.cxf.interceptor.LoggingInInterceptor"/>
<bean id="logOutbound"
class="org.apache.cxf.interceptor.LoggingOutInterceptor"/>



<jaxws:endpoint 
          id="helloWorld" 
          implementor="demo.spring.HelloWorldImpl" 
          address="/HelloWorld" >
          <jaxws:inInterceptors> <ref  bean  ="logInbound"/> 
</jaxws:inInterceptors>
          <jaxws:outInterceptors><ref 
bean="logOutbound"/></jaxws:outInterceptors>
          </jaxws:endpoint>


This work fine ..


Thanks ..
-- 
View this message in context: 
http://cxf.547215.n5.nabble.com/Soap-Message-from-CXF-tp3285752p3287126.html
Sent from the cxf-user mailing list archive at Nabble.com.

Reply via email to