Hello
i think that this is a "so stupid" question, but i can't solve it.
i've configured a PayloadLoggingInterceptor in my spring-servlet.xml
So.... i think that all input/output SoapMessages where "stored" in a log, but I can't find where this log is storedCode:<bean class="org.springframework.ws.server.endpoint.mapping.PayloadRootQNameEndpointMapping"> <property name="mappings"> <props> <prop key="{urn:dslforum-org:cwmp-1-1}Inform">Inform</prop> </props> </property> <property name="interceptors"> <list> <bean id="loggingInterceptor" class="org.springframework.ws.server.endpoint.interceptor.PayloadLoggingInterceptor"/> <bean id="validatingInterceptor" class="org.springframework.ws.soap.server.endpoint.interceptor.PayloadValidatingInterceptor"> <property name="schema" value="/WEB-INF/schema.xsd"/> <property name="validateRequest" value="true"/> <property name="validateResponse" value="true"/> </bean> </list> </property> </bean>
can somebody help me?
thanks in advance


Reply With Quote