我正试图连接到Active Directory
(2003年)以更新出现在OutLook
地址簿中的“移动电话”字段,如下图所示。
我可以使用下面的代码读取大多数字段,但是找不到otherTelephone
,mobile
,otherMobile
字段。是什么原因?
static void Main(string[] args)
{
Console.Write("Enter user : ");
String username = Console.ReadLine();
try
{
DirectoryEntry myLdapConnection = createDirectoryEntry();
DirectorySearcher search = new DirectorySearcher(myLdapConnection,);
search.Filter = "(sAMAccountName=" + username + ")";
search.PropertiesToLoad.Add("title");
search.PropertiesToLoad.Add("street");
search.PropertiesToLoad.Add("department");
search.PropertiesToLoad.Add("mail");
search.PropertiesToLoad.Add("manager");
search.PropertiesToLoad.Add("telephoneNumber");
search.PropertiesToLoad.Add("otherTelephone");
search.PropertiesToLoad.Add("mobile");
search.PropertiesToLoad.Add("otherMobile");
SearchResult result = search.FindOne();
if (result != null)
{
DirectoryEntry entryToUpdate = result.GetDirectoryEntry();
Console.WriteLine("Current title : " + entryToUpdate.Properties["title"][0].ToString());
//Console.Write("\n\nEnter new title : ");
//String newTitle = Console.ReadLine();
//entryToUpdate.Properties["title"].Value = newTitle;
//entryToUpdate.CommitChanges();
//Console.WriteLine("\n\n...new title saved");
Console.ReadLine();
}
else Console.WriteLine("User not found!");
}
catch (Exception e)
{
Console.WriteLine("Exception caught:\n\n" + e.ToString());
}
}
static DirectoryEntry createDirectoryEntry()
{
// create and return new LDAP connection with desired settings
DirectoryEntry ldapConnection = new DirectoryEntry("abc.ca");
ldapConnection.Path = "LDAP://OU=staffusers,DC=leeds-art,DC=ac,DC=uk";
ldapConnection.AuthenticationType = AuthenticationTypes.Secure;
return ldapConnection;
}
答案 0 :(得分:0)
我认为您的问题是,默认情况下未在某个对象上设置某些(大多数)属性,它们仅在首次设置值时才针对该对象存在。您需要更新代码以处理根本不存在的值,并假设这意味着没有设置任何值。
您可以通过针对特定用户运行查询,观察缺少mobile
属性,然后向该字段添加一个值,然后删除它,来对此进行测试。然后,您应该看到从那时起该用户的属性就包含在该用户的列表中。