| Adapter that supports endpoint methods that use marshalling. Supports methods with the following signature:
void handleMyMessage(Source request);
or
Source handleMyMessage(Source request);
I.e. methods that take a single
Source parameter, and return either void or a
Source .
The method can have any name, as long as it is mapped by an
org.springframework.ws.server.EndpointMapping .
This adapter is registered by default by the
MessageDispatcher and
SoapMessageDispatcher .
author: Arjen Poutsma since: 1.0.0 |