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.