processRequest

processRequest() protected, updating;

When a request is received from the Web service consumer, a transient instance of the class corresponding to this request is created and the processRequest method of the JadeWebServiceProvider class is called. This method identifies the Web service method in your user-defined JadeWebServiceProvider subclass to be invoked for the request but does not invoke the method.

Reimplement this method in your user-defined JadeWebServiceProvider subclasses if you want to process Web requests and send a reply back to the Web service consumer after all processing is complete.

If the JADE implementation of this method is not called (by using the inheritMethod instruction), it is your responsibility to do any processing that is necessary and to send a reply back to the consumer. For details, see the JadeWebServiceProvider class processRequestPostHeaders and reply methods.