I didn't understand how to get access to whole soap message omitting Marshalling.
Code:
public class MyEndpoint extends AbstractMarshallingPayloadEndpoint implements MessageEndpoint {
.....
protected Object invokeInternal(Object obj) throws Exception {
}
protected Object invoke(Object obj) throws Exception {
}
Code:
<bean id="payloadMapping"
class="org.springframework.ws.server.endpoint.mapping.PayloadRootQNameEndpointMapping">
<property name="defaultEndpoint" ref="myEndpoint" />
.....
Clearly that the method will be never caused.