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 Summary
Modifier and TypeMethodDescriptionvoid
handleFault
(GlobalHandlerMessageContext context) The handleFault method is invoked for fault message processing.void
handleMessage
(GlobalHandlerMessageContext context) The handleMessage method is invoked for normal processing of inbound and outbound messages.
-
Method Details
-
handleFault
The handleFault method is invoked for fault message processing.- Parameters:
GlobalHandlerMessageContext
- - the message context.
-
handleMessage
The handleMessage method is invoked for normal processing of inbound and outbound messages.- Throws:
Exception
-