Class AddressingBasedDispatcher

All Implemented Interfaces:
AddressingConstants, Handler

public class AddressingBasedDispatcher extends AbstractDispatcher implements AddressingConstants
Dispatcher based on the WS-Addressing properties.
  • Field Details

  • Constructor Details

    • AddressingBasedDispatcher

      public AddressingBasedDispatcher()
  • Method Details

    • findOperation

      public AxisOperation findOperation(AxisService service, MessageContext messageContext) throws AxisFault
      Description copied from class: AbstractDispatcher
      Called by Axis Engine to find the operation.
      Specified by:
      findOperation in class AbstractDispatcher
      Returns:
      Returns AxisOperation.
      Throws:
      AxisFault
    • findService

      public AxisService findService(MessageContext messageContext) throws AxisFault
      Description copied from class: AbstractDispatcher
      Called by Axis Engine to find the service.
      Specified by:
      findService in class AbstractDispatcher
      Returns:
      Returns AxisService.
      Throws:
      AxisFault
    • initDispatcher

      public void initDispatcher()
      Specified by:
      initDispatcher in class AbstractDispatcher
    • invoke

      public Handler.InvocationResponse invoke(MessageContext msgctx) throws AxisFault
      Description copied from interface: Handler
      This method will be called on each registered handler when a message needs to be processed. If the message processing is paused by the handler, then this method will be called again for the handler that paused the processing once it is resumed.

      This method may be called concurrently from multiple threads.

      Handlers that want to determine the type of message that is to be processed (e.g. response vs request, inbound vs. outbound, etc.) can retrieve that information from the MessageContext via MessageContext.getFLOW() and MessageContext.getAxisOperation().getMessageExchangePattern() APIs.

      Specified by:
      invoke in interface Handler
      Overrides:
      invoke in class AbstractDispatcher
      Parameters:
      msgctx -
      Returns:
      An InvocationResponse that indicates what the next step in the message processing should be.
      Throws:
      AxisFault