1

我有一个使用用户主体名称 (UPN) 格式保存在数据库中的帐户:jdoe@domain.gobalx.com

我正在使用 UPN 格式对声明进行身份验证的 SharePoint 环境中工作。

我的问题是我需要为持久化的 UPN 帐户获取 UserProfile 对象。我尝试了以下方法,但它不起作用:

string upnAccount = "jdoe@domain.globalx.com";
SPServiceContext ctx = SPServiceContext.GetContext(SPContext.Current.Site);
UserProfileManager upm = new UserProfileManager(ctx);
UserProfile user = upm.GetUserProfile(upnAccount);

我不断收到:Microsoft.Office.Server.UserProfiles.UserNotFoundException:检索用户配置文件时遇到错误

这是否意味着我必须将 UPN 帐户转换为索赔,如果是这样,有人有如何做到这一点的示例吗?

4

2 回答 2

1
            UserProfileManager UPM = null;

            using (SPSite site = new SPSite(SPContext.Current.Web.Url))
            {
                using (SPWeb web = site.OpenWeb())
                {
                    ServerContext serverContext = ServerContext.GetContext(site);
                    UPM = new UserProfileManager(serverContext);
                     foreach (UserProfile profile in UPM)
                    {

                        an = profile["AccountName"].Value;
                        title = profile["Title"].Value;
                    }
                }
            }

你可以试试这个来获取所有用户配置文件。在 foreach 循环中,您可以检查您的字段并获取特定的用户详细信息

于 2012-02-16T12:43:57.107 回答
0

在某些情况下,在具有联合身份验证的 SharePoint 网站下,在您未设置同步之前不会自动创建用户配置文件。对于这个问题,您可以通过 Central Admin 检查是否已经存在 jdoe@domain.globalx.com 的用户配置文件。

此外,您的代码必须在模拟下运行,检查异常日志并尝试使用 SPSecurity.RunWithElevatedPrivileges。

于 2012-02-16T09:26:14.647 回答