Greetings All!
I was wondering if anyone else is having this problem!
In ColdFusion 4.5 and 5.0, I was able to define the following CFLDAP tag and retrieve the requested information (Note! the start & Scope definitions):
<cfldap
name="insert_uvid"
server="localhost"
action="Query"
start="o=highest_level"
attributes="cn,fullName,title,telephoneNumber,ou,l,dn,mail,givenName,sn"
scope="subtree"
filter="cn=name"
>
Using the same LDAP query with DWMX, nothing is retrieved, but by modifiying the Start to
<cfldap
name="insert_uvid"
server="localhost"
action="Query"
start="ou=next_level_down,o=highest_level"
attributes="cn,fullName,title,telephoneNumber,ou,l,dn,mail,givenName,sn"
scope="subtree"
filter="cn=name"
>
I can retrieve the information.
I tried looking up a fix in MacroMedia's web site, but I couldn't find any reference of the problem.
Can anyone help me!
Thank You for taking the time out to read my problem.
I was wondering if anyone else is having this problem!
In ColdFusion 4.5 and 5.0, I was able to define the following CFLDAP tag and retrieve the requested information (Note! the start & Scope definitions):
<cfldap
name="insert_uvid"
server="localhost"
action="Query"
start="o=highest_level"
attributes="cn,fullName,title,telephoneNumber,ou,l,dn,mail,givenName,sn"
scope="subtree"
filter="cn=name"
>
Using the same LDAP query with DWMX, nothing is retrieved, but by modifiying the Start to
<cfldap
name="insert_uvid"
server="localhost"
action="Query"
start="ou=next_level_down,o=highest_level"
attributes="cn,fullName,title,telephoneNumber,ou,l,dn,mail,givenName,sn"
scope="subtree"
filter="cn=name"
>
I can retrieve the information.
I tried looking up a fix in MacroMedia's web site, but I couldn't find any reference of the problem.
Can anyone help me!
Thank You for taking the time out to read my problem.