com.sun.identity.liberty.ws.soapbinding
インタフェース RequestHandler
- 既知の実装クラスの一覧:
- DSTRequestHandler
public interface RequestHandler
The RequestHandler interface needs to be implemented
by each web services in order to receive request from your web service
client. After implementing your handler class, register the class in
the SOAP Binding Service so SOAP layer could forward incoming WSC
requests to your handler.
processRequest
Message processRequest(Message request)
throws SOAPFaultException
- Generates a response according to the request.
- パラメータ:
request - the incoming request message from web service client.
- 戻り値:
- the response message to be sent to web service client.
- 例外:
SOAPFaultException - if it fails to process the request and wants
to send a specific SOAP Fault.
Exception - if it fails to process the request and wants to send
a generic SOAP Fault;