不确定为什么会发生这种情况但是当我运行此代码时,它可以在一台服务器上运行,但不能在另一台服务器上运行。
两个服务器都返回一个正确的found.DisplayName但是只有一个服务器返回oUserPrincipal的值,另一个返回null值。
错误行:
UserPrincipal oUserPrincipal = UserPrincipal.FindByIdentity(ctx, found.DisplayName) returns null
dynamic config = _getExpandoFromXml("config.xml");
PrincipalContext ctx = new PrincipalContext(ContextType.Domain, config.activeDirectory.sDomain, config.activeDirectory.sDefaultOU,config.mailServer.user, config.mailServer.pass);
UserPrincipal user = new UserPrincipal(ctx);
PrincipalSearcher search = new PrincipalSearcher(user);
Console.WriteLine("before foreach");
foreach (Principal found in search.FindAll())
{
try{
if (found.DisplayName == null)
{
Console.WriteLine("found.Dispalyname is null");
}
else
{
Console.Write("Dispalyname: ");
Console.WriteLine(found.DisplayName);
}
UserPrincipal oUserPrincipal = UserPrincipal.FindByIdentity(ctx, found.DisplayName);
Console.Write("looking for user: ");
Console.WriteLine(found.DisplayName);
Console.WriteLine("after findbyidentiy");
if (oUserPrincipal == null)
{
Console.WriteLine("oUserPrinciapal is null");
}
if (oUserPrincipal.LastPasswordSet == null)
{
Console.WriteLine("lastpasswordset is null");
}
DateTime? dateOrNull = oUserPrincipal.LastPasswordSet;
Console.WriteLine("after LastPasswordSet");
答案 0 :(得分:1)
FindByIdentity只能搜索少数几个属性。这些是“IdentityType枚举中包含的任何格式”。
名称是一个有效选项,但未列出DisplayName,因此您可能会得到DisplayName和Name恰好相同的结果,否则会失败。
使用:
var oUserPrincipal = UserPrincipal.FindByIdentity(ctx, found.Name);
或
var oUserPrincipal = UserPrincipal.FindByIdentity(ctx, found.SamAccountName);
应该有用。
还有一个three parameter version of FindByIdentity,可让您指定要搜索的媒体资源。
答案 1 :(得分:0)