我当前正在尝试连接到远程LDAP-Server
。为此,我尝试使用以下方法找出域:
DirectoryEntry entry = new DirectoryEntry("LDAP://141.83.80.30/lam/RootDSE");
不幸的是,我遇到了错误:
System.DirectoryServices.DirectoryServicesCOMException:'无效 提供了dn语法”
答案 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";