Interface Handler
- 
 public interface HandlerComponents 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:
- HandlerConstants
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidhandleFault(GlobalHandlerMessageContext context)The handleFault method is invoked for fault message processing.voidhandleMessage(GlobalHandlerMessageContext context)The handleMessage method is invoked for normal processing of inbound and outbound messages.
 
- 
- 
- 
Method Detail- 
handleFaultvoid handleFault(GlobalHandlerMessageContext context) The handleFault method is invoked for fault message processing.- Parameters:
- GlobalHandlerMessageContext- - the message context.
 
 - 
handleMessagevoid handleMessage(GlobalHandlerMessageContext context) throws java.lang.Exception The handleMessage method is invoked for normal processing of inbound and outbound messages.- Throws:
- java.lang.Exception
 
 
- 
 
-