help with cfldap
Hello - I'm trying to display the results of an LDAP query of Active Directory on a Web page. Here is the query:
<cfldap action="QUERY"
name="getResults"
attributes="dn"
start="dc=domain,dc=com"
filter="(&(objectclass=user)(name=abc))"
server="theServer"
username="abc"
password="MyPassword"
separator=";"
scope="subtree">
This query authenticates to AD, but it does not return any records. All attributes appear to be correct. The query does not throw errors; it simply returns 0 records when I know there should be at least one. I would greatly appreciate any suggestions anyone might have. Thank you!!
