Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ColdFusion MX - LDAP problem

Status
Not open for further replies.

cfnewbie5

Programmer
Oct 6, 2003
5
US
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=&quot;insert_uvid&quot;
server=&quot;localhost&quot;
action=&quot;Query&quot;
start=&quot;o=highest_level&quot;
attributes=&quot;cn,fullName,title,telephoneNumber,ou,l,dn,mail,givenName,sn&quot;
scope=&quot;subtree&quot;
filter=&quot;cn=name&quot;
>

Using the same LDAP query with DWMX, nothing is retrieved, but by modifiying the Start to

<cfldap
name=&quot;insert_uvid&quot;
server=&quot;localhost&quot;
action=&quot;Query&quot;
start=&quot;ou=next_level_down,o=highest_level&quot;

attributes=&quot;cn,fullName,title,telephoneNumber,ou,l,dn,mail,givenName,sn&quot;
scope=&quot;subtree&quot;

filter=&quot;cn=name&quot;
>

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.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top