I am currently trying to connect to my Novell LDAP
in SSL using C#
. At first, I have tried exactly the same operation with authentication = None
and it works perfectly.
My domain name was of this form: LDAP://xxx.yyy.zzz.com:999/o=XYZ,c=ZYX
and in my query I had AuthenticationType.None
set.
Now, if I try the same with: LDAPS://xxx.yyy.zzz.com:636/o=XYZ,c=ZYX
and in my query I had AuthenticationType.SecureSocketsLayer
set. I have an error: Unknown error (0x80005000)
whereas the SSL is working on the server.