目录服务使用FindByIdentity方法进行扩展类

时间:2012-11-30 14:04:33

标签: sharepoint active-directory

我过去几天一直在使用目录服务。

使用UserPrincipal对象,我试图从当前的AD用户那里获取电子邮件和公司字段。电子邮件不是问题,因为默认情况下它是公开的。公司是另一个故事。

我在这里找到了一篇解释如何操作的帖子:Get job title using System.DirectoryServices.AccountManagement

虽然,我对这种方法有一个不幸的问题。该文章展示了如何在扩展类中创建FindByIdentity方法,但为了使其工作,您必须将搜索类型设置为扩展类类型,这样才能找到我的特定用户的条目。如果我在FindByIdentityWithType中将搜索类型设置为UserPrincipal,它会找到我的AD用户,但正如您所料,我收到转换错误。

所以我的问题非常简单,在扩展类中是否有任何已知的Find by Identity方法?

参考这里是我的扩展课程:

[DirectoryObjectClass("group")]
[DirectoryRdnPrefix("CN")]
public class UserPrincipalClassExtensions : System.DirectoryServices.AccountManagement.UserPrincipal
{
    PrincipalContext context;

    public UserPrincipalClassExtensions(PrincipalContext context)
        : base(context)
    { this.context = context; }

    public UserPrincipalClassExtensions(PrincipalContext context, string samAccountName, string Password,bool enabled)
        : base(context, samAccountName, Password, enabled)
    {

    }

    [DirectoryProperty("company")]
    public string Company
    {
        get
        {
            if (ExtensionGet("company").Length != 1)
                return null;

            return (string)ExtensionGet("company")[0];

        }
        set { this.ExtensionSet("company", value); }
    }

    // Implement the overloaded search method FindByIdentity.
    public static new UserPrincipalClassExtensions FindByIdentity(PrincipalContext context, string identityValue)
    {
        return (UserPrincipalClassExtensions)FindByIdentityWithType(context, typeof(UserPrincipalClassExtensions), identityValue);
    }

    // Implement the overloaded search method FindByIdentity. 
    public static new UserPrincipalClassExtensions FindByIdentity(PrincipalContext context, IdentityType identityType, string identityValue)
    {
        return (UserPrincipalClassExtensions)FindByIdentityWithType(context, typeof(UserPrincipalClassExtensions), identityType, identityValue);
    }
}

这是一个返回null的调用:

    SPUser user = SPContext.Current.Web.CurrentUser;
        using (PrincipalContext principalContext = new PrincipalContext(ContextType.Domain, getUserDomain(user)))
        {
            UserPrincipalClassExtensions UserInfos = UserPrincipalClassExtensions.FindByIdentity(principalContext,IdentityType.SamAccountName,user.Name);

        }

这是一个返回UserPrincipal但没有公司字段值的调用:

    SPUser user = SPContext.Current.Web.CurrentUser;
        using (PrincipalContext principalContext = new PrincipalContext(ContextType.Domain, getUserDomain(user)))
        {
            UserPrincipal UserInfos = UserPrincipal.FindByIdentity(principalContext,IdentityType.SamAccountName,user.Name);

        }

如果您需要任何进一步的信息,请告诉我们!

提前感谢!

修改

在IL Spy中搜索了一些并反编译de DLL之后,我注意到我的代码存在问题:

[DirectoryObjectClass("Person")]
[DirectoryRdnPrefix("CN")]

DirectoryObjectClass必须是“Person”

希望这会对其他人有所帮助!

0 个答案:

没有答案