org.springframework.ws.endpoint
Interface MessageEndpoint

All Known Implementing Classes:
AbstractMarshallingPayloadEndpoint, AbstractStaxEventPayloadEndpoint, AbstractStaxStreamPayloadEndpoint, MessageDispatcher, SoapMessageDispatcher

public interface MessageEndpoint

Defines the basic contract for Web Services interested in the entire mesage payload.

The main entrypoint is invoke, which gets invoked with the a message context. This context contains the request, and can be used to create a response.

Author:
Arjen Poutsma
See Also:
invoke(org.springframework.ws.context.MessageContext)

Method Summary
 void invoke(MessageContext messageContext)
          Invokes an operation.
 

Method Detail

invoke

void invoke(MessageContext messageContext)
            throws java.lang.Exception
Invokes an operation. The given message context can be used to create a response.

Parameters:
messageContext - the message context
Throws:
java.lang.Exception - if an exception occurs


Copyright © 2002-2006. All Rights Reserved.