Built-in front calls / Genero Mobile common front calls |
Run an application from the Genero Application Server according to the specified URL.
ui.Interface.frontCall("mobile", "runOnServer", [ appurl, timeout ], [] )
The runOnServer front call allows you to start an application in the Genero Application Server (GAS), from an embedded/local application running on the mobile device. The remote application's graphical user interface displays on the mobile device.
The front call returns when the called application ends, and the control goes back to the initial application executing on the mobile device.
The applications executed on the GAS server must use the UTF-8 encoding. Mobile front-ends will reject any attempt to display forms of an application using an encoding other than UTF-8.The remote application cannot use RUN WITHOUT WAITING to start child programs. Only RUN is supported.
The first parameter (appurl) identifies the remote application to be started and must contain an "ua/r" URL syntax (the UA protocol introduced with the GAS 3.00).
For example: http://myappserver:6394/ua/r/myapp.
This URL may contain a query string, with parameters for the application to be executed by the GAS.
The timeout parameter is optional. It can be used to give the control back to the local app, if the remote app takes too long to respond. If not specified, or when zero is passed, the timeout is infinite.
In case of failure (such as application not found, or timeout expired), the front call raises the runtime error -6333 and the HTTP status code of the request can be found in the error message details.
TRY CALL ui.interface.frontcall("mobile","runOnServer",["http://santana:6394/ua/r/orders"],[]) CATCH ERROR err_get(STATUS) END TRY