public interface RequestHandler
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.Modifier and Type | Method and Description |
---|---|
Message |
processRequest(Message request)
Generates a response according to the request.
|
Message processRequest(Message request) throws SOAPFaultException, Exception
request
- the incoming request message from 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;Copyright © 2010-2018, ForgeRock All Rights Reserved.