G
Guest
Hello
I use the following code to connect to an openldap server
This works just fine
_deRoot = new DirectoryEntry
"LDAP://ws244501.test.com/ou=People,dc=test,dc=comâ€
â€cn=admin,ou=People,dc=test,dc=com"
"secretje"
AuthenticationTypes.ServerBin
)
object ob = _deRoot.NativeObject
Now I want to be able to connect to it over SSL to make updates secure
Using the following code does not succeed (server not operational
I did import the root certificate
I have tried with different Authentication flags but no result
I also tried LDAP://ws244501.test.com:636/... but this had also no result
_deRoot = new DirectoryEntry
"LDAP://ws244501.test.com/ou=People,dc=test,dc=comâ€
â€cn=admin,ou=People,dc=test,dc=com"
"secretje"
AuthenticationTypes.ServerBind |AuthenticationTypes.SecureSocketsLaye
)
object ob = _deRoot.NativeObject
Does anybody know how to sucessfully connect to an LDAP server over SSL
What authentication flags do I use, what LDAP path do I use
Thanks
Johan
I use the following code to connect to an openldap server
This works just fine
_deRoot = new DirectoryEntry
"LDAP://ws244501.test.com/ou=People,dc=test,dc=comâ€
â€cn=admin,ou=People,dc=test,dc=com"
"secretje"
AuthenticationTypes.ServerBin
)
object ob = _deRoot.NativeObject
Now I want to be able to connect to it over SSL to make updates secure
Using the following code does not succeed (server not operational
I did import the root certificate
I have tried with different Authentication flags but no result
I also tried LDAP://ws244501.test.com:636/... but this had also no result
_deRoot = new DirectoryEntry
"LDAP://ws244501.test.com/ou=People,dc=test,dc=comâ€
â€cn=admin,ou=People,dc=test,dc=com"
"secretje"
AuthenticationTypes.ServerBind |AuthenticationTypes.SecureSocketsLaye
)
object ob = _deRoot.NativeObject
Does anybody know how to sucessfully connect to an LDAP server over SSL
What authentication flags do I use, what LDAP path do I use
Thanks
Johan