作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我尝试通过 .NET 4 Web 服务的安全 SSL 连接连接到 Active Directory 轻型目录服务 2008 R2 的实例,但收到“服务器无法运行”的消息。错误。
这是我用来绑定(bind)的代码:
DirectoryEntry entry = new DirectoryEntry("LDAP://2.2.2.2:636/DC=nfa,DC=local");
entry.Username = "CN=ldapadmin,DC=nfa,DC=local";
entry.Password = "P@ssw0rd";
entry.AuthenticationType = AuthenticationTypes.SecureSocketsLayer;
我也尝试过这样的:
DirectoryEntry entry2 = new DirectoryEntry("LDAP://2.2.2.2:636/DC=nfa,DC=local", "CN=ldapadmin,DC=nfa,DC=local", "P@ssw0rd", AuthenticationTypes.SecureSocketsLayer);
最佳答案
服务器需要安装 SSL 证书 meets the documented requirements 。测试与 LDP 的连通性。您将需要使用计算机的完全限定域名进行连接。将上面的 IP 地址替换为 FQDN,您就已经准备就绪。
关于asp.net - 如何通过 SSL 连接到 AD LDS?处理 "The server is not operational"错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10702134/
我是一名优秀的程序员,十分优秀!