我正在尝试使用对象类person和uidObject在 OpenLDAP 中创建一个新的用户记录。问题似乎在于 System.DirectoryServices.DirectoryEntry 我只找到了一种使用一个对象类添加新条目的方法,而不是添加多个对象类的方法。
这个 C# 代码
DirectoryEntry nRoot = new DirectoryEntry(path);
nRoot.AuthenticationType = AuthenticationTypes.None;
nRoot.Username = username;
nRoot.Password = pwd;
try
{
DirectoryEntry newUser = nRoot.Children.Add("CN=" + "test", "person");
newUser.Properties["cn"].Add("test");
newUser.Properties["sn"].Add("test");
newUser.Properties["objectClass"].Add("uidObject"); // this doesnt't make a difference
newUser.Properties["uid"].Add("testlogin"); // this causes trouble
newUser.CommitChanges();
}
catch (COMException ex)
{
Console.WriteLine(ex.ErrorCode + "\t" + ex.Message);
}
...导致错误:
-2147016684 请求的操作不满足与对象类相关的一个或多个约束。(来自 HRESULT 的异常:0x80072014)