gpt4 book ai didi

c# - 如何在 LDAP 服务器上查找用户

转载 作者:行者123 更新时间:2023-11-30 18:43:52 29 4
gpt4 key购买 nike

尝试在 LDAP 服务器上查找用户时,出现以下错误“未知错误 (0x8000500c)”

这是我正在使用的代码:

PrincipalContext domainContext = new PrincipalContext(ContextType.Domain, "gandalf.intrafg");
UserPrincipal p = UserPrincipal.FindByIdentity(domainContext, IdentityType.SamAccountName, "Consultor1");

顺便说一句,以下代码似乎有效(未生成异常),但 samAccountName 以字节数组的形式出现。有人知道为什么吗?

DirectoryEntry entry = new DirectoryEntry("LDAP://gandalf.intrafg");

DirectorySearcher searcher = new DirectorySearcher(entry);

//searcher.PropertiesToLoad.Add("givenName");
//searcher.PropertiesToLoad.Add("sn");
searcher.PropertiesToLoad.Add("samAccountName");

searcher.Filter = "(&(objectCategory=person)(samAccountName=Consultor1))";

SearchResult result = searcher.FindOne();

最佳答案

您的第二个代码块工作得很好,但是我没有在 DirectoryEntry 初始值设定项中传递域名。

    Directory entry = new DirectoryEntry();
//other code
result.Properties["samAccountName"][0].ToString();

关于c# - 如何在 LDAP 服务器上查找用户,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3676526/

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