I've been banging my head on the desk this morning looking at this code. I don't know what I'm doing wrong. I can cfdump the data I want, but then I can't output it with cfoutput. Here's the code:
<cfldap action="QUERY"
name="userSearch"
attributes="*"
start="ou=people,dc=myldapserver,dc=com"
scope="SUBTREE"
server="myldapserver.com"
port="xxxx"
filter="#filter#"
secure="CFSSL_BASIC">
<cfdump var="#userSearch#" >
<cfoutput query="userSearch">#givenName#</cfoutput>
The cfdump returns the following:
query | ||
---|---|---|
NAME | VALUE | |
1 | uid | username |
2 | objectClass | comPerson |
3 | givenName | Jane |
4 | sn | Doe |
5 | cn | Jane Doe |
The cfoutput gives this error message: Variable GIVENNAME is undefined.