Package org.somda.sdc.dpws.http
Interface HttpHandler
-
- All Implemented Interfaces:
public interface HttpHandlerSimple HTTP handler for HttpServerRegistry callbacks.
This HTTP handler is designed to be used for SOAP bindings only. Hence, any modification to HTTP headers is handled by the underlying HttpServerRegistry implementation according to the SOAP HTTP binding specification.
-
-
Method Summary
Modifier and Type Method Description abstract voidhandle(InputStream inStream, OutputStream outStream, CommunicationContext communicationContext)Callback that is invoked by HttpServerRegistry whenever a respective context path is matched. -
-
Method Detail
-
handle
abstract void handle(InputStream inStream, OutputStream outStream, CommunicationContext communicationContext)
Callback that is invoked by HttpServerRegistry whenever a respective context path is matched.
- Parameters:
inStream- stream of the incoming SOAP request.outStream- stream of the outgoing SOAP response.communicationContext- information from the transport and application layer, e.g., local address, local port, certificate data etc.
-
-
-
-