作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在尝试在 iPlanet LDAP 上进行分页搜索。这是我的代码:
LdapConnection ldap = new LdapConnection("foo.bar.com:389");
ldap.AuthType = AuthType.Anonymous;
ldap.SessionOptions.ProtocolVersion = 3;
PageResultRequestControl prc = new PageResultRequestControl(1000);
string[] param = new string[] { "givenName" };
SearchRequest req = new SearchRequest("ou=people,dc=bar,dc=com", "(ou=MyDivision)", SearchScope.Subtree, param);
req.Controls.Add(prc);
while (true)
{
SearchResponse sr = (SearchResponse)ldap.SendRequest(req);
... snip ...
}
当我运行它时,我得到一个异常,指出“服务器不支持控件。控件是关键的”在片段之前的行中。快速谷歌搜索没有任何结果。 iPlanet 是否支持分页?如果是这样,我做错了什么?谢谢。
最佳答案
所有 LDAP v3 兼容目录必须包含服务器支持的控件的 OID 列表。可以通过使用 null/空搜索根 DN 发出基本级别搜索来访问该列表,以获取目录服务器根 DSE 并读取多值 supportedControl
属性。
分页搜索支持的 OID 是 1.2.840.113556.1.4.319 .
这是一个让您入门的代码片段:
LdapConnection lc = new LdapConnection("ldap.server.name");
// Reading the Root DSE can always be done anonymously, but the AuthType
// must be set to Anonymous when connecting to some directories:
lc.AuthType = AuthType.Anonymous;
using (lc)
{
// Issue a base level search request with a null search base:
SearchRequest sReq = new SearchRequest(
null,
"(objectClass=*)",
SearchScope.Base,
"supportedControl");
SearchResponse sRes = (SearchResponse)lc.SendRequest(sReq);
foreach (String supportedControlOID in
sRes.Entries[0].Attributes["supportedControl"].GetValues(typeof(String)))
{
Console.WriteLine(supportedControlOID);
if (supportedControlOID == "1.2.840.113556.1.4.319")
{
Console.WriteLine("PAGING SUPPORTED!");
}
}
}
我认为 iPlanet 不支持分页,但这可能取决于您使用的版本。较新版本的 Sun 制作的目录似乎支持分页。您可能最好使用我描述的方法检查您的服务器。
关于c# - iPlanet LDAP 和 C# PageResultRequestControl,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1646518/
我正在尝试在 iPlanet LDAP 上进行分页搜索。这是我的代码: LdapConnection ldap = new LdapConnection("foo.bar.com:389"); lda
我是一名优秀的程序员,十分优秀!