| com.nabhinc.ws.server.RequestProcessor
RequestProcessor | public interface RequestProcessor extends ServerObject(Code) | | Protocol-independent base interface for Web service request procssors.
author: Padmanabh Dabke author: (c) 2005 Nabh Information Systems, Inc. All Rights Reserved. |
load | void load(WebServiceInfo serviceInfo, Element serviceConfig) throws WebServiceException(Code) | | Gives the RequestProcessor implementation a chance to initialize
protocol-specific state based on the XML configuration element.
Parameters: serviceInfo - Web service being loaded Parameters: serviceConfig - Service configuration throws: ServletException - |
serialize | void serialize(Element rootConfig, String indent, String delta, Writer w) throws IOException(Code) | | Serialize processor-specific service configuration to the given writer
Parameters: rootConfig - Service configuration element Parameters: indent - Starting indent used in XML formatting Parameters: delta - Indent between two levels in XML tree Parameters: w - Writer to which the configuration should be written throws: IOException - |
unload | void unload(WebServiceInfo serviceInfo)(Code) | | Gives the RequestProcessor implementation a chance to clean up
protocol-specific resources related to the specified service.
Parameters: serviceInfo - Web service being unloaded. |
|
|