| |
branders
Posts: 1
Score: 0
Joined: 1/19/2005
From:
Status: offline
|
I have a couple of questions on using adodb to search a Netscape Directory Server (LDAP). What would you use for the provider property? I am currently using: Set LDAPtest = GetObject("LDAP:") Set LDAPobject = LDAPtest.OpenDSObject("LDAP://ldap.lsil.com/ou=Contractor,ou=lsil.com," _ "o=LSI Logic",uLDAP,pLDAP,516) '(server bind and read-only) For Each objItem in LDAPobject ... I would like to implement the LDAP search feature available in set objConn = CreateObject("ADODB.Connection") objConn.Provider = "ADsDSOObject" objConn.Open "Active Directory Provider" set objRS = objConn.Execute(strBase & strFilter & strAttrs _ & strScope) Any help is greatly apreciated. Thanks, Brian
|
|