What's new in Genero Business Development Language, v 2.32

This topic lists features added for the 2.32 release of the Genero Business Development Language.

Table 1. What's new in Genero Web Services (GWS), Version 2.32
Overview Reference
The COM library enables to intercept high-level web services operation on server side. You can now define three 4GL functions via methods of the web service class.
They will be executed at different steps of a web service request processing in order to modify the SOAP request, response or the generated WSDL document before or after the SOAP engine has processed it. This helps handle WS-* specifications not supported in the web service API.
  • Method registerWSDLHandler()
  • Method registerInputRequestHandler()
  • Method registerOutputRequestHandler()
All three kinds of 4GL callback functions must conform to the following prototype:
FUNCTION CallbackHandler( doc xml.DomDocument )
  RETURNING xml.DomDocument
See The WebService class.