服务器无法运行

发布于 2024-12-12 04:26:14 字数 672 浏览 0 评论 0原文

这是我的 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 working
telnet 10.xxx.xx.xxx 3268

But am not getting authenticated.Plz help in this regard

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

行雁书 2024-12-19 04:26:14

您可以尝试以下作为您的 LDAP 连接字符串吗(它对我有用):

"LDAP://10.xxx.xx.xxx:3268/DC=company,DC=com"

Can you just try the following as your LDAP connexion string (it works for me) :

"LDAP://10.xxx.xx.xxx:3268/DC=company,DC=com"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文