我正在使用以下代码来验证 AD 用户
string strLDAP = "LDAP://dc=ADServerIP/cn=Users,DC=Domain;
DirectoryEntry entry = new DirectoryEntry(strLDAP, usr, pwd);
object nativeObject = entry.NativeObject;
return true;
执行时出现以下异常
object nativeObject = entry.NativeObject;
System.Runtime.InteropServices.COMException (0x80005000):
System.DirectoryServices.DirectoryEntry.Bind(Boolean throwIfFail)
在 System.DirectoryServices.DirectoryEntry.Bind()
在 System.DirectoryServices.DirectoryEntry.get_NativeObject() 的未知错误 (0x80005000)
相同的代码适用于另一台 AD 服务器。可能是什么问题?