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 Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

LDAP query

Status
Not open for further replies.
Jan 28, 2005
4
US
I want to query my Active Directory and find ALL attributes for a user. I have my attributes="*" but when I do this, I do not know how to display the results?

Can anyone help me? Instead of doing just a
<cfoutput #dn# </cfoutput>...what do I need to put. My code is below:

<cfldap name="rs" action="QUERY"
attributes="*"
start="dc=hfc,dc=ad" filter="(samaccountname=#attrib#)"
scope="SUBTREE"
server="corprddc1"
port="389"
timeout="5" username="#session.username#@hfc.ad"
password="#session.password#">

<cfoutput #dn# </cfoutput>

I am just not sure how to display the returned data...

THANKS!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top