| org.wso2.esb.transport.HttpGetRequestProcessor
All known Subclasses: org.wso2.esb.transport.util.PolicyProcessor, org.wso2.esb.transport.util.AbstractWsdlProcessor, org.wso2.esb.transport.util.XsdProcessor,
HttpGetRequestProcessor | public interface HttpGetRequestProcessor (Code) | | This interface is used for plugging in different implementations for special processing of some
HTTP GET requests.
e.g. ?wsdl, ?wsdl2, ?rss, ?atom etc.
If you need to handle a special HTTP GET request, you have to write an implementation of this
interface, and plug it in through the WSO2 ESB server.xml file.
|
process | void process(HttpServletRequest request, HttpServletResponse response, ConfigurationContext configurationContext) throws Exception(Code) | | Process the HTTP GET request
Parameters: request - The HttpRequest Parameters: response - The HttpResponse Parameters: configurationContext - The system ConfigurationContext throws: Exception - If some failure occurs during processing |
|
|