gpt4 book ai didi

c# - 使用 "DirectoryEntry"API 从远程计算机通过 ssl 连接到 LDAP

转载 作者:太空宇宙 更新时间:2023-11-03 13:16:51 25 4
gpt4 key购买 nike

我需要从远程机器通过 SSL 连接到 LDAP;对此有很多讨论,但其中发布的解决方案只能在同一台 Windows Server 域机器上工作;相同的代码无法从远程计算机成功连接;

我试过的代码:

DirectoryEntry entry = new DirectoryEntry("LDAP://fqdn:636/DC=aa,DC=bb", "username", "password");
DirectorySearcher searcher = new DirectorySearcher();
searcher.SearchRoot = entry;
searcher.SearchScope = SearchScope.Subtree;
searcher.Filter = "(&(objectCategory=person)(objectClass=user))";
SearchResultCollection results = searcher.FindAll();

再说一遍,我能够从同一个 WindowsServer 域机器上获得结果;但是当我从远程计算机尝试相同的代码时,出现异常“服务器无法运行”

我发现这是由于证书验证失败,即 Windows Server 的证书未在远程机器上验证;但我不知道如何覆盖“DirectoryEntry 对象”的证书验证;

  • post有证书问题的解决方案;但它用于“LdapConnection”

  • 但我需要DirectoryEntry API 的解决方案;

仅供引用;这post对 Java 提出了同样的问题,但没有答案;我的要求是C#

最佳答案

很遗憾,DirectoryEntry 没有可用的证书覆盖。

您必须使用 System.DirectoryServices.Protocols 中的较低级别的 LdapConnectionLdapDirectoryIdentifier 类命名空间。

转换您的代码应该不会太困难,这样做,您将能够处理本地和远程目录资源。我不久前遇到了同样的问题,我写了一篇关于为什么会这样以及如何解决它的广泛帖子 - 检查一下:

Set callback for System.DirectoryServices.DirectoryEntry to handle self-signed SSL certificate?

关于c# - 使用 "DirectoryEntry"API 从远程计算机通过 ssl 连接到 LDAP,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31184965/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com