ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

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 current connections on a WEBDEV Application Server.
Example
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
Syntax
<Result> = WBAdminListConnection(<WEBDEV Application Server>)
<Result>: Array
Array of WBAdminConnection variables corresponding to each current connection on the server.
If an error occurs, the ErrorOccurred variable is set to True.
<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.
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 determine if the error is due to the authentication process, you need to check the value of the ErrorOccurred variable and the value returned by ErrorInfo
  • 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.
Component: wd290com.dll
Minimum version required
  • Version 28
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 04/05/2024

Send a report | Local help