作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
尝试在 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/
我是一名优秀的程序员,十分优秀!