|
|
|
|
SaaSIsConnected (Function) In french: SaaSEstConnecté Defines whether the connection to the SaaS webservice is still established. Reminder: The connection to the SaaS webservice was established by SaaSConnect. When the connection has been established, the SaaS webservice periodically tests the validity of the connection by automatically calling SaaSIsConnected every 4 minutes..
IF SaaSIsConnected() = False THEN IF SaaSConnect("login", "password") = True THEN Info("Connection re-established") END END
Syntax
<Result> = SaaSIsConnected()
<Result>: Boolean - True if the connection is still established,
- False otherwise. To get more details on the error, use ErrorInfo.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|