尝试查询LDAP
DirectoryEntry de = new DirectoryEntry();
de.Path = @"dc=xxx,dc=xxx,dc=xxx,dc=edu";
de.AuthenticationType = AuthenticationTypes.Anonymous;
foreach (DirectoryEntry user in de.Children)
{
我得到了例外。
我还尝试将"LDAP://"
添加到路径,将"cn=users,"
添加到路径
与
相同DirectorySearcher srch = new DirectorySearcher(de);
srch.FindOne();
例外是
PresentationFramework.dll中出现'System.Windows.Markup.XamlParseException'类型的第一次机会异常
附加信息:'在类型'LDAPTest2.MainWindow'上调用与指定绑定约束匹配的构造函数引发了异常。行号“3”和行位置“9”。
我们使用Open Directory,并使用与其他程序相同的设置列出用户。
修改
根据{{1}}建议,我对marc_s
进行了同样的尝试,但我在System.DirectoryServices.Protocols
上得到了相同的例外
Bind()