I'm recieving this error (LDAP: error code 34 - Invalid DN Syntax) when I'm
trying to verify login info. The following query works fine using LDAP:
<cfldap action='QUERY' name='getUser' attributes='dn'
start='o=parkway' scope='SUBTREE' filter='cn=username'
server='
myldapserver.com' > That will return a record fine for user
'username'. When i add the tag attributes of unsername and password like this:
<cfldap action='QUERY' name='getUser' attributes='dn'
start='o=parkway' scope='SUBTREE' filter='cn=username'
server='
myldapserver.com' username='#ldapusername#'
password='#ldappassword#'> I get the following error: LDAP: error code 34 -
Invalid DN Syntax Any insight would be greatly appreciated. Thanks in advance!