An LDAP query that returns the LDAP User Distinguished Name (DN). The returned DN will be used with the Password attribute to authenticate the current user.
Info for .NET example: With “Standard LDAP” server SELECT ADsPath FROM 'OU=Staff,DC=example,DC=com' WHERE uid='@Request.rdUserName~' and objectClass='InetOrgPerson'
With “Active Directory” server SELECT ADsPath FROM 'DC=myCompanyDomain,DC=local' WHERE SamAccountName='@Request.rdUserName~' and objectClass='organizationalPerson'
Info for Java example: With “Standard LDAP” server SELECT DN FROM subTreeScope; WHERE uid='@Request.rdUserName~' and objectClass='InetOrgPerson'
With “Active Directory” server SELECT CN FROM DC=myCompanyDomain,DC=local WHERE SamAccountName='@Request.rdUserName~' and objectClass='organizationalPerson'
|