|
|
|
|
- Properties specific to WBAdminAuth variables
- Miscellaneous
- Functions that use WBAdminAuth variables
WBAdminAuth (Type of variable) In french: adminWBAuth
The WBAdminAuth type allows you to define all the advanced characteristics of the API used to remotely manage a WEBDEV Application Server. The characteristics of this API can be defined and changed using different WLanguage properties. Remark: For more details on the declaration of this type of variable and the use of WLanguage properties, see Declaring a variable. wbAuthLogin is WBAdminAuth wbAuthLogin.ServerAddress = "https://my-server.internal/" wbAuthLogin.User = "WWW\DATA" wbAuthLogin.Password = "www" WBConnections is array of WBAdminConnection = WBAdminListConnection(wbAuthLogin) IF ErrorOccurred = True THEN Info(ErrorInfo) RETURN END FOR i = 1 _TO_ WBConnections.Count Trace(WBConnections[i].Site) Trace(DateTimeToString(WBConnections[i].DateTimeStartConnection)) Trace(DurationToString(WBConnections[i].IdleTime, durationCenti)) END Properties Properties specific to WBAdminAuth variables The following properties can be used to handle WBAdminAuth variables: | | | Property name | Type used | Effect |
---|
ServerAddress | Character string | WEBDEV Application Server address, e.g. "https://www.myserver.com/". Caution: don't forget to specify the protocol (http/https). | Password | Character string | Password associated with the user. | Port | Integer | Number of the port used (e.g., 443 by default for https). | User | Character string | Name of the user who will manage the WEBDEV Application Server. This user must be a WEBDEV administrator. |
Remarks Miscellaneous - The API used is a REST web service.
- There is no active session and the connection is authenticated at each API call.
Functions that use WBAdminAuth variables | | | Creates a WEBDEV account on a WEBDEV Application Server. | | Deletes a WEBDEV account from a WEBDEV Application Server. | | Deletes a connection from a WEBDEV Application Server. | | Returns the list of WEBDEV accounts on a WEBDEV Application Server. | | Returns the list of current connections on a WEBDEV Application Server. | | Updates the characteristics of a WEBDEV account in a WEBDEV Application Server. |
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|