Hi I am using tomcat + spring 3.0 ws trying to log request and response can see request in catalina, but no reponse??
<bean id="soapLoggingInterceptor"
class="org.springframework.ws.soap.server.endpoint.interceptor.SoapEnvelopeLoggingInterceptor">
<property name="logRequest" value="true" />
<property name="logResponse" value="true" />
<property name="logFault" value="true" ></property>
</bean>
<bean id="payloadMapping"
class="org.springframework.ws.server.endpoint.mapping.PayloadRootAnnotationMethodEndpointMapping">
<property name="interceptors">
<list>
<ref local="soapLoggingInterceptor" />
</list>
</property>
</bean>
<logger name="com.test.apptest">
<level value="DEBUG"/>
</logger>