Interface Handler


public interface Handler
Components that want to register webServices handlers to all the webServics end points should implement the Handler interface and register that implementation in the service registry.

The properties associated with the registered service specify the engine type, Flow Type, Client or server side the handlers will take effect. Valid service properties are listed as HandlerConstants with descriptive javadoc.

See Also:
  • Method Details

    • handleFault

      void handleFault(GlobalHandlerMessageContext context)
      The handleFault method is invoked for fault message processing.
      Parameters:
      GlobalHandlerMessageContext - - the message context.
    • handleMessage

      void handleMessage(GlobalHandlerMessageContext context) throws Exception
      The handleMessage method is invoked for normal processing of inbound and outbound messages.
      Throws:
      Exception