Web Services changes

There are changes in support of web services in Genero 2.40.

Modification to server location at runtime on client side

Important:

It is recommended to regenerate all client stubs in your application using the fglwsdl tool.

If you have modified the server location at runtime via the generated global variable in your client application, you MUST apply following modification:
  • Prior to version 2.40, you had something similar to the following:
    LET Calculator_CalculatorPortTypeLocation = "http://host:port/Calculator"
  • Starting with version 2.40, you must have something similar to the following:
    LET Calculator_CalculatorPortTypeEndPoint.Address.Uri =
     "http://host:port/Calculator"

See Change client behavior at runtime.