java - Spring - Log payload of a JaxWsPortProxyFactoryBean -


i have following definition (taken http://docs.spring.io/spring/docs/current/spring-framework-reference/html/remoting.html#remoting-web-services-jaxws-access):

<bean id="accountwebservice" class="org.springframework.remoting.jaxws.jaxwsportproxyfactorybean">   <property name="serviceinterface" value="example.accountservice"/>   <property name="wsdldocumenturl" value="http://localhost:8888/accountserviceendpoint?wsdl"/>   <property name="namespaceuri" value="http://example/"/>   <property name="servicename" value="accountservice"/>   <property name="portname" value="accountserviceendpointport"/> </bean> 

how add logging of payload see send , receive? documentation rather quiet on topic of interceptors in client.


Comments