Am using vb.net . am not able to connect to active directory using the following connection string. am passing the valid credentials for the ldap connection string .am not getting any error. but am not able to connect to active directory.
my code:
Dim ldapConnection As DirectoryEntry = New DirectoryEntry("ldap://sbs.in:111/CN=Schema,CN=Configuration,DC=sbs,DC=in",
"uid=ssldap,cn=Schema,cn=Configuration,dc=sbs,dc=in", "SS132")
ldapConnection.Path = "ldap://sbs.in:111/CN=Schema,CN=Configuration,DC=sbs,DC=in"
ldapConnection.AuthenticationType = AuthenticationTypes.Secure
Return ldapConnection