0


我正在尝试解决此问题,但无法使其正常工作。
问题

我的查询有什么问题?

编码

private static void ExecuteQuery()
        {
            string sDomain = "10.12.14.165:389";
            string sDefaultOU = "CN=GeneralUsers,CN=Company,DC=Server,DC=LDS,DC=LOCAL";
            string sServiceUser = "myUser";
            string sServicePassword = "myPassword";


            DirectoryEntry ldapEntry = new DirectoryEntry("LDAP://" + sDomain + @"/" + sDefaultOU,
                                                          sServiceUser,
                                                          sServicePassword);

            DirectorySearcher ldapSearcher = new DirectorySearcher(ldapEntry);
            //Error Occurs here
            SearchResultCollection ldapResult = ldapSearcher.FindAll();
        }

错误

@SearchResultCollection ldapResult = ldapSearcher.FindAll();
例外:服务器上没有这样的对象。

注意力

对象确实存在

4

1 回答 1

0

问题出现在 LDS 配置中。我进行身份验证的用户对 LDS 没有权限,我使用的查询工作正常。

于 2014-09-16T06:45:23.630 回答