reply

reply(): String protected, updating;

The reply method of the JadeWebServiceProvider class invokes the Web service method in your user-defined JadeWebServiceProvider subclass and builds the response string that is returned to the Web service consumer.

Reimplement in your user-defined Web service provider subclasses.

The following example manipulates the string before sending a reply back to the Web service consumer.

reply(): String updating, protected;
vars
    response : String;
begin
    response := inheritMethod();
    // invokes your Web service method and builds a response string
    // manipulate the response
    return response;
end;

If the JADE implementation of this method is not called (by using the inheritMethod instruction), it is your responsibility to send a response back to the Web service consumer.