Use the generated functions
Learn how to use the functions and records in the stub file to write client applications that use the Web service.
If you have generated stub
files for compatibility with your legacy GWS client application using
GLOBALS
, see Using functions generated with globals
The information about the Add function from the stub file, for example, allows you to write code in your own .4gl module that uses this operation as part of your Client application.
It is recommended to call functions in the stub via their qualified names. For example, use
CALL ws_myStub.Add(1,2)
instead of CALL
Add(1,2)
.
Using parameters and return values
Add
function in your client application, defining variables for the
parameters and return values. The input variables for our example are simple integers.
FUNCTION myWScall()
DEFINE op1 INTEGER
DEFINE op2 INTEGER
DEFINE result INTEGER
DEFINE wsstatus INTEGER
...
LET op1 = 6
LET op2 = 8
CALL ws_myStub.Add(op1, op2)
RETURNING wsstatus, result ...
DISPLAY result
Using public records
Add_g
function instead, using the public
records Add
and AddResponse
directly. If the input variables are
complex structures like records or arrays, you are required to use this
function.FUNCTION myWScall()
DEFINE wsstatus INTEGER
# ...
LET ws_myStub.Add.a = 6
LET ws_myStub.Add.b = 8
LET wsstatus = ws_myStub.Add_g()
# ...
DISPLAY ws_myStub.AddResponse.r
In this case, the status is returned by the function, which has also put the result in the
AddResponse
public record.
See Tutorial: Writing a Client Application for more information. The demo/WebServices subdirectory of your Genero installation directory contains complete examples of Client Applications.
Using asynchronous calls
AddRequest_g
; this will send the request using
the public Add
record to the server. It returns a status of 0 (zero) if everything
goes well, -1 in case of error, or -2 if you tried to resend a new request before the previous
response was retrieved.FUNCTION sendMyWScall()
DEFINE wsstatus INTEGER
# ...
LET ws_myStub.Add.a = 6
LET ws_myStub.Add.b = 8
LET wsstatus = ws_myStub.AddRequest_g()
IF wstatus <> 0 THEN
DISPLAY "ERROR :", WSHelper.wsError.code
END IF
# ...
AddResponse_g
to retrieve the response in the
AddResponse
public record of the previous request. If the returned status is 0
(zero), the response was successfully received; -1 means that there was an error, and -2 means that
the response was not yet received and that the function needs to be called
later.FUNCTION retrieveMyWScall()
DEFINE wsstatus INTEGER
# ...
LET wsstatus = ws_myStub.AddResponse_g()
CASE wstatus
WHEN -2
DISPLAY "No response available, try later"
WHEN 0
DISPLAY "Response is :",ws_myStub.AddResponse.r
OTHERWISE
DISPLAY "ERROR :", WSHelper.wsError.code
END CASE
# ...
You can mix the asynchronous call with the synchronous one as they are using two different
requests. In other words, you can perform an asynchronous request with
AddRequest_g
, then a synchronous call with Add_g
, and then
retrieve the response of the previous asynchronous request with AddResponse_g
.
In development mode, a single BDL Web Service server can only handle one request at a time, and several asynchronous requests in a row without retrieving the corresponding response will lead to a deadlock. To support several asynchronous requests in a row, it is recommended that you are in deployment mode with a GAS as the front-end.