Skip to Content
Programming ColdFusion MX, 2nd Edition
book

Programming ColdFusion MX, 2nd Edition

by Rob Brooks-Bilson
August 2003
Intermediate to advanced
1140 pages
68h 45m
English
O'Reilly Media, Inc.
Content preview from Programming ColdFusion MX, 2nd Edition

Querying an LDAP Directory

The cfldap tag can query an LDAP directory and return the results as a ColdFusion query object. This gives you tremendous flexibility in how you use the data. The query object can be output to the browser using cfoutput or used to feed directory information to other functions or templates.

Performing an LDAP Query

Once you know the available attributes of a given LDAP server, you can easily perform a basic query against the directory and output the results to the browser. Example 15-1 shows how to perform a simple query against the example.com sample directory included with the Netscape Directory Server.

Example 15-1. Querying an LDAP directory

<!--- query the LDAP server for all entries where the surname of the person begins with 's' and their location is 'Santa Clara'. Sort the results by surname and given name. ---> <cfldap action="Query" name="MyLDAPQuery" server="localhost" port="389" attributes="cn,sn,givenname,ou,mail,l" maxrows="100" start="dc=example,dc=com" scope="Subtree" filter="(&(sn=s*)(l=Santa Clara))" sort="sn, givenNnme" sortcontrol="nocase, ASC" timeout="90"> <html> <head> <title>Example 15-1: Querying an LDAP Directory</title> <style type="text/css"> th { background-color : #C0C0C0; font-weight : bold; text-align : center; } td { background-color : #9999FF; } </style> </head> <body> <!--- output the query results ---> <table cellspacing="3" cellspacing="1"> <tr> <th>Common Name (cn)</th> <th>Surname (sn)</th> <th>Given Name (givenname)</th> ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

Programming ColdFusion

Programming ColdFusion

Rob Brooks-Bilson
macromedia® Coldfusion® MX 7 Web Application Construction Kit

macromedia® Coldfusion® MX 7 Web Application Construction Kit

Ben Forta, Raymond Camden, Leon Chalnick, Angela Buraglia

Publisher Resources

ISBN: 0596003803Errata Page