ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

New WINDEV and WEBDEV 2024 feature!
Help / WLanguage / WLanguage functions / Web-specific functions / WEBDEV Application Server remote control functions
  • Two-factor authentication
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Returns the list of applications on a WEBDEV Application Server, for a given account and a given type.
Example
login is WBAdminAuth
login.ServerAddress = "http://xxxx"
login.User = "myuser"
login.Password = "mypassword"

Applications is array of WBAdminApplication
Applications = WBAdminListApplication(login)
FOR i = 1 _TO_ Applications.Count  
     Trace(Applications[i].Name)
END
Syntax
<Result> = WBAdminListApplication(<WEBDEV Application Server> [, <Owner account> [, <Application type>]])
<Result>: WLanguage array
Array of WBAdminApplication variables containing the list of requested applications.
<WEBDEV Application Server>: WBAdminAuth variable
Name of the WBAdminAuth variable that describes the server and the administrator account used to query the WEBDEV Application Server.
<Owner account>: Optional character string
Name of the owner account whose applications are to be listed. If this parameter is an empty string ("") or "*", all the applications on the server will be listed.
<Application type>: Optional Integer constant
Type of application to list:
WBAdminTypeSiteWEBDEV website.
WBAdminTypeRESTWebserviceREST web services.
WBAdminTypeSOAPWebserviceSOAP web services.
WBAdminTypeWebSocketWebSockets.

If this parameter is not specified, all application types will be listed.
Remarks
New in version 2024

Two-factor authentication

You can enable two-factor authentication for an account through the Remote WEBDEV administrator. Two-factor authentication requires a unique code to verify the user's identity. This code can be received by email or via an Authenticator app.
When you use WEBDEV Application Server functions, you may encounter authentication errors if the account uses two-factor authentication. Two cases must be taken into account:
  • the function returns a boolean and <Result> is False. To check whether the error concerns authentication, it is necessary to check the value of Variable ErrorOccurred and the value returned by the ErrorInfo function.
  • the function does not return a boolean. To determine if the error is due to the authentication process, the following conditions must be met:
To fix this error:
  • Create a window/page where users can enter their verification code.
  • If an error occurs due to two-factor authentication:
    • Open the verification code input window.
    • Users automatically receive the authentication code according to the method chosen in the Remote WEBDEV administrator. They can then enter the code in the window or page.
    • Assign the code to the OneTimePassword property of the WBAdminAuth variable.
    • Run the function again.
Minimum version required
  • Version 2024
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/24/2024

Send a report | Local help