S
sck10
Hello,
I was given some code that was done in ColdFusion, and I am trying to figure
out how to map the LDAP path. Any help would be appreciated.
This is what I got from the Microsoft web site
// Path to you LDAP directory server.
string adPath = "LDAP://yourCompanyName.com/DC=yourCompanyName,DC=com";
LdapAuthentication adAuth = new LdapAuthentication(adPath);
This is the code snippet that I got fro ColdFusion
-------------------------------------------------
<cfldap action="QUERY"
name="empquery_login"
attributes="employeenumber,roomnumber,sname"
start="ou=people, o=lucent.com"
filter="(employeenumber=#ssno#)"
scope="onelevel"
server="ldap-useast.train.com"
port="389">
I was given some code that was done in ColdFusion, and I am trying to figure
out how to map the LDAP path. Any help would be appreciated.
This is what I got from the Microsoft web site
// Path to you LDAP directory server.
string adPath = "LDAP://yourCompanyName.com/DC=yourCompanyName,DC=com";
LdapAuthentication adAuth = new LdapAuthentication(adPath);
This is the code snippet that I got fro ColdFusion
-------------------------------------------------
<cfldap action="QUERY"
name="empquery_login"
attributes="employeenumber,roomnumber,sname"
start="ou=people, o=lucent.com"
filter="(employeenumber=#ssno#)"
scope="onelevel"
server="ldap-useast.train.com"
port="389">