![MACROMEDIA COLDFUSION 4.5-DEVELOPING WEB Develop Manual Download Page 287](http://html1.mh-extra.com/html/macromedia/coldfusion-4-5-developing-web/coldfusion-4-5-developing-web_develop-manual_3286369287.webp)
Chapter 16: Connecting to LDAP Directories
261
4.
Change the
uid
to a valid user id.
5.
Save the page as
ldapchangeattr.cfm
and view it in your browser.
To delete an entry:
1.
Open a new file in Studio.
2.
Modify the file so that it appears as follows:
<!--- If the delete parameter is sent
then run this update --->
<CFIF IsDefined(dn)>
<CFLDAP Name="LDAPDelete"
SERVER="myserver"
USERNAME="cn=Directory Manager,
o=Ace Industry, c=US"
PASSWORD="testldap"
ACTION="Delete"
DN=#dn#>
</CFIF>
<!--- Use CFLDAP to retrieve the common name
and distinguished name for all employees that
have a surname that contains ens and a common
name that is > K. Search starts in the country
US and organization Ace Industry. --->
<CFLDAP Name="EntryList"
SERVER="myserver"
ACTION="Query"
ATTRIBUTES="dn,cn, sn"
SCOPE="SUBTREE"
SORT="cn ASC"
FILTER="(cn>=A)"
START="o=Ace Industry, c=US"
TIMEOUT=30>
3.
Change
myserver
to a valid LDAP server.
4.
Change the
uid
to a valid user id.
5.
Save the page as
ldapdeleteattr.cfm
and view it in your browser.
Creating searchable CFLDAP output
An example of building and searching a Verity collection from LDAP data can be found
in
“Indexing CFLDAP Query Results” on page 163
.
Summary of Contents for COLDFUSION 4.5-DEVELOPING WEB
Page 1: ...Allaire Corporation Developing Web Applications with ColdFusion ColdFusion 4 5...
Page 14: ...xiv Developing Web Applications with ColdFusion...
Page 26: ...xxvi Developing Web Applications with ColdFusion...
Page 34: ...8 Developing Web Applications with ColdFusion...
Page 70: ...44 Developing Web Applications with ColdFusion...
Page 84: ...58 Developing Web Applications with ColdFusion...
Page 114: ...88 Developing Web Applications with ColdFusion...
Page 148: ...122 Developing Web Applications with ColdFusion...
Page 174: ...148 Developing Web Applications with ColdFusion...
Page 208: ...182 Developing Web Applications with ColdFusion...
Page 244: ...218 Developing Web Applications with ColdFusion...
Page 274: ...248 Developing Web Applications with ColdFusion...
Page 288: ...262 Developing Web Applications with ColdFusion...
Page 300: ...274 Developing Web Applications with ColdFusion...
Page 350: ...324 Developing Web Applications with ColdFusion...
Page 362: ...336 Developing Web Applications with ColdFusion...