|
|
|
|
|
ActiveDirectory (Property) In french: ActiveDirectory
The ActiveDirectory property allows you to connect to an HFSQL server using Active Directory authentication. It is possible to: - Determine if the connection uses Active Directory authentication.
- Define if the connection will use Active Directory authentication.
Note: The connection can correspond: cnt_sso is Connection
cnt_sso.Provider = hAccessHFClientServer
cnt_sso.Server = "srv1.mydomain.com"
cnt_sso.ActiveDirectory = True
HOpenConnection(cnt_sso)
cnt is Connection
cnt.Provider = hAccessHFClientServer
cnt.Server = "srv1.mydomain.com"
cnt.ActiveDirectory = True
cnt.User = "Account_name@mydomain.com"
cnt.Password = "xxxxxx"
HOpenConnection(cnt)
Syntax
Find out if the connection uses Active Directory authentication Hide the details
<Result> = <Connection>.ActiveDirectory
<Result>: Boolean - True if the connection uses Active Directory authentication,
- False otherwise.
<Connection>: Character string or Connection variable Name of the connection used. This name is defined:
Define whether the connection uses Active Directory authentication Hide the details
<Connection>.ActiveDirectory = <Active Directory Management>
<Connection>: Character string or Connection variable Name of the connection used. This name is defined: <Active Directory Management>: Boolean - True if the connection uses Active Directory authentication,
- False otherwise.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|