Package org.somda.sdc.dpws.soap
Interface RequestResponseServer
-
- All Superinterfaces:
InterceptorHandler
- All Known Implementing Classes:
RequestResponseServerImpl
public interface RequestResponseServer extends InterceptorHandler
Interface for network bindings to process incoming SOAP request messages and their responses.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidreceiveRequestResponse(SoapMessage request, SoapMessage response, CommunicationContext communicationContext)Starts processing of an incoming SOAP request message.-
Methods inherited from interface org.somda.sdc.dpws.soap.interception.InterceptorHandler
register
-
-
-
-
Method Detail
-
receiveRequestResponse
void receiveRequestResponse(SoapMessage request, SoapMessage response, CommunicationContext communicationContext) throws SoapFaultException
Starts processing of an incoming SOAP request message.- Parameters:
request- incoming request message.response- outgoing response message.communicationContext- information from transport and application layer (scheme, host, port, ...).- Throws:
SoapFaultException- if a SOAP fault comes up during processing.
-
-