| org.springframework.ws.server.endpoint.PayloadEndpoint
All known Subclasses: org.springframework.ws.server.endpoint.AbstractDom4jPayloadEndpoint, org.springframework.ws.server.endpoint.AbstractJDomPayloadEndpoint, org.springframework.ws.server.endpoint.AbstractSaxPayloadEndpoint, org.springframework.ws.server.endpoint.AbstractDomPayloadEndpoint, org.springframework.ws.server.endpoint.AbstractXomPayloadEndpoint,
PayloadEndpoint | public interface PayloadEndpoint (Code) | | Defines the basic contract for Web Services interested in just the message payload.
The main entrypoint is
PayloadEndpoint.invoke(Source) , which gets invoked with the contents of the requesting message.
author: Arjen Poutsma since: 1.0.0 |
Method Summary | |
Source | invoke(Source request) Invokes the endpoint with the given request payload, and possibly returns a response. |
invoke | Source invoke(Source request) throws Exception(Code) | | Invokes the endpoint with the given request payload, and possibly returns a response.
Parameters: request - the payload of the request message, may be null the payload of the response message, may be null to indicate no response throws: Exception - if an exception occurs |
|
|