Name
CFLDAP
Synopsis
<CFLDAP>
Provides ColdFusion with an interface to Lightweight Directory Access Protocol (LDAP) servers.
Attributes
-
SERVER="
ldap_server
"
The server name or IP address of the LDAP server you want to connect to. Required.
-
PORT="
port_number
"
The port that the LDAP server listens for requests on. Optional. The default LDAP port is 389.
-
USERNAME="
username
"
Username required for the LDAP connection. Optional. If no username is specified, the LDAP connection is anonymous.
-
PASSWORD="
password
"
Password to accompany
USERNAME
. Optional.-
ACTION="
action
"
Specifies the LDAP action to perform. Optional. The default value is
Query
, which returns entry information from the LDAP server, and requires theATTRIBUTES
,NAME
, andSTART
attributes.Add
adds entries to the LDAP server and requires theATTRIBUTES
attribute.Delete
deletes entries from the LDAP server and requires theDN
attribute.Modify
modifies entries on the LDAP server except for the distinguished name and requires theATTRIBUTES
andDN
attributes.ModifyDN
modifies distinguished name entries on the LDAP server and requires theATTRIBUTES
andDN
attributes.-
NAME="
query_name
"
The name to assign to the LDAP query. Required when
ACTION
isQuery
.-
TIMEOUT="
seconds
"
The maximum amount of time in seconds ColdFusion should wait when processing an LDAP action. Optional. The default is
60
.-
MAXROWS="
integer
"
The maximum number of results to be returned for an LDAP query. Optional.
-
START="
distinguished_name ...
Get Programming ColdFusion now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.