我正在使用此bean代码来记录对日志文件的请求和响应
<bean
class="org.springframework.ws.soap.server.endpoint.interceptor.SoapEnvelopeLoggingInterceptor">
<property name="logRequest" value="true" />
<property name="logResponse" value="true" />
</bean>
这在TOMCAT应用服务器中正常工作,用于在进入和离开@EndPoint类时记录SOAP请求和SOAP响应,但在WebSphere Application Server V8.0的情况下则不行。是否有任何其他方法可以将SOAP请求和SOAP响应放入SPRING-WS中的日志文件中。
答案 0 :(得分:0)
还有其他方法。请参阅documentation。
无论如何,为什么SoapEnvelopeLoggingInterceptor
没有使用WebSphere?我没有使用WebSphere的经验,但可能会发生您的日志配置被服务器覆盖。看一下服务器日志配置。