我正在编写.net web api,我需要使用LDAP连接到AD。我试图连接到在线ldap服务器ldap.forumsys.com,但它会抛出NotImplementedException。
我正在使用System.DirectoryServices
这是我的代码
using (var entry = new DirectoryEntry("LDAP://ldap.forumsys.com/dc=example,dc=com",
"uid=tesla,dc=example,dc=com", "password"))
{
var obj = entry.NativeObject;
}
我正在使用MacBook和Mono,可能Mono中没有库,或者我没有包含任何东西。