C#,LDAP:尝试找出DN,但RootDSE答复“无效的dn语法”

时间:2019-05-02 11:15:13

标签: c# exception ldap

我当前正在尝试连接到远程LDAP-Server。为此,我尝试使用以下方法找出域:

DirectoryEntry entry = new DirectoryEntry("LDAP://141.83.80.30/lam/RootDSE");

不幸的是,我遇到了错误:

  

System.DirectoryServices.DirectoryServicesCOMException:'无效   提供了dn语法”

1 个答案:

答案 0 :(得分:0)

您可以使用以下代码段进行远程LDAP连接。

DirectoryEntry directoryEntry = new DirectoryEntry("LDAP://example.com");
directoryEntry.Path = "LDAP://OU=Specific Users,OU=All Users,OU=Users,DC=example,DC=com";