ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage functions / Controls, pages and windows / User Groupware functions
  • Checks
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Informs the User Groupware that the authentication of users will be done via an LDAP directory. The name and password of the users who will connect to User Groupware will be checked in the LDAP directory directly.
Note: This function is not required if LDAP directory use has been set in the user Groupware settings window.. To configure the User Groupware, go to the "Project" tab, "Project" group and click "User Groupware".
Example
// Groupware utilisateur utilisé en mode automatique 
// Lancement manuel. Pas de fichiers de données. 

// Code du projet
gpwOpenLDAPSession("gemini.monserveur.com", 389, 3, False)

// Identification d'un utilisateur sans fenêtre de login
IF gpwLogin("FP", "FP") <> gpwOk THEN
	Error("Utilisateur ou mot de passe incorrect")
	EndProgram()
END
// Utilisation d'un DN de base 
gpwOpenLDAPSession("monserveur", 389, 3, False, "DC=groupcom,DC=local")
Syntax
gpwOpenLDAPSession(<Server address> [, <Port number> [, <Server version> [, <With files> [, <Base DN> [, <Management of SSL>]]]]])
<Server address>: Character string
Address of LDAP server. This parameter can correspond to:
  • server IP address in xxx.xxx.xxx.xxx format
  • Server name
<Port number>: Optional integer
Port number of LDAP server (389 by default).
<Server version>: Optional integer
Version of LDAP server (2 or 3). Corresponds to 3 by default.
<With files>: Optional boolean
  • True (default) to use the data files of groupware,
  • False to perform an LDAP authentication.
<Base DN>: Optional character string
Base DN to use. This parameter is of the form: "DC=xxx, DC=yyy, DC=zzz, ..."..
If this parameter is not specified, it will be automatically sought in the database.
<Management of SSL>: Integer constant (or combination of constants)
Management mode of SSL:
ldapDefaultOption
(Default value)
standard LDAP, without SSL management.
optionSSLLDAP with management of secure SSL connection.
optionSSL + auNegotiateLDAP with management of secure SSL connection and authentication. The connection is established via "Generic Security Services" (GSS) (Snego). The authentication method used is the most appropriate method found in a list of possibles authentications.

Note: The connection mode used must be supported by the LDAP server..
Remarks

Checks

The checks regarding the connection to the LDAP server, the username and password are performed:
  • during the call to gpwLogin.
  • when validating the login window of the groupware.
Component: wd300gpu.dll
Minimum version required
  • Version 12
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 09/21/2024

Send a report | Local help