AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Ayuda / WLanguage / Funciones WLanguage / Comunicación / Funciones LDAP
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
LDAPMode (Function)
In french: LDAPMode
Modifies the operating mode of an LDAP session.
Example
// Connection procedure
...
 
// Disable the cache system
LDAPMode("MyLDAPSession", LDAP_CacheDisabled)
 
// Retrieve the number of roots
NbRoot is int = LDAPNbValue("MyLDAPSession", "namingContexts")
 
// Display the different roots of the server
FOR Subscript = 1 TO NbRoot
Info(LDAPValue("MyLDAPSession", "namingContexts", Subscript)
END
 
// Re-enable the cache system
LDAPMode("MyLDAPSession", LDAP_CacheEnabled)
 
// Disconnection procedure
...
Syntax
<Result> = LDAPMode(<LDAP session> , <Option>)
<Result>: Boolean
  • True if the modification is effective,
  • False otherwise. ErrorInfo returns more details about the error.
<LDAP session>: Character string
Name of LDAP session used.
<Option>: Integer constant
Specifies the operating mode of the LDAP session:
LDAP_CacheDisabledEach call to LDAPNbValue and LDAPValue requires a connection to the server.
LDAP_CacheEnabledThe calls to the LDAP functions are using the internal cache to retrieve the values of attributes (default mode).
Remarks
Caution: The LDAP_CacheDisabled constant must be used in very special cases.
This function must be used to read the operational attributes of an OpenLDAP server. This is because by default an OpenLDAP server does not return the operational attributes of an object, and LDAPListAttribute does not list these attributes either.
Component: wd290com.dll
See also
Versión mínima requerida
  • Versión 11
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 06/04/2023

Señalar un error o enviar una sugerencia | Ayuda local