服务器无法运行
这是我的 web.config 中使用的连接字符串:
<add key="GlobalAppStoreActiveDirectoryPath" value="GC://10.xxx.xx.xxx/DC=company,DC=com"/>
我的身份验证页面中的代码:
using (var searchRoot = new DirectoryEntry(_path, domUserName, password))
{
try
{
using (var searcher = new DirectorySearcher(searchRoot))
{
searcher.Filter = "(SAMAccountName=" + username + ")";
searcher.PropertiesToLoad.Add("cn");
var result = searcher.FindOne();//---> am getting an exception here "server not operational"
到 Active Directory 服务器的 telnet
正在运行 telnet 10.xxx.xx.xxx 3268
但我没有得到身份验证。请在这方面提供帮助
This is the connectionString am using in my web.config:
<add key="GlobalAppStoreActiveDirectoryPath" value="GC://10.xxx.xx.xxx/DC=company,DC=com"/>
the code in my authentication page:
using (var searchRoot = new DirectoryEntry(_path, domUserName, password))
{
try
{
using (var searcher = new DirectorySearcher(searchRoot))
{
searcher.Filter = "(SAMAccountName=" + username + ")";
searcher.PropertiesToLoad.Add("cn");
var result = searcher.FindOne();//---> am getting an exception here "server not operational"
The telnet
to the Active Directory Server is workingtelnet 10.xxx.xx.xxx 3268
But am not getting authenticated.Plz help in this regard
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试以下作为您的 LDAP 连接字符串吗(它对我有用):
Can you just try the following as your LDAP connexion string (it works for me) :