Logging the inbound gateway for webservice
I'm trying to log the xml request before it gets unmarshalled to a jaxb object. Has anyone done this, I'm sure there must be some attribute that can turn this logging on. I know I can put a wire tap on the marshalledChannel but that will only log the jaxb result.
<int-ws:inbound-gateway id="ws-inbound-gateway" marshaller="jaxb" request-channel="marshalledChannel"/>
<int:service-activator input-channel="marshalledChannel">
<bean class="com.someSpecificClass"/>
</int:service-activator>