I'm trying to set up ColdFusion to connect to LDAP through our Exchange 5.5 Server. I seem to have everything working correctly in ColdFusion, I can connect to the Public LDAP Servers from serveral Universities. But when I try to connect to our Exchange server, even though I connect successfully, I always get zero results. I never get an error message, it connects and runs the query fine, I just never have any results from the query. Here is my cfldap connection:
If I try to add a username and password (even the Domain Admin account), I get the same thing. Can someone offer some pointers as to what could be the problem?
Thanks!
Hope This Helps!
Ecobb
"My work is a game, a very serious game." - M.C. Escher
Code:
<cfldap action="QUERY"
name="AuthUser"
attributes="uid, cn, dn, mail, givenName, sn, telephoneNumber"
start="o=Whatever, c=us"
scope="SUBTREE"
server="Exchange">
Thanks!
Hope This Helps!
Ecobb
"My work is a game, a very serious game." - M.C. Escher