我从 Active Directory 获取 UserPrincipal 时遇到问题。首先,我在本地环境中使用过(不是使用 IIS,而是使用 ASP.NET 开发服务器):
User usr = new User();
usr.SoeId = Request.ServerVariables["LOGON_USER"];
usr.IP = Request.ServerVariables["REMOTE_ADDR"];
usr.FirstName = UserPrincipal.Current.GivenName;
usr.LastName = UserPrincipal.Current.Surname;
它工作正常。我得到了我想要的。但是,当我在测试环境中安装应用程序时,出现错误“对象引用未设置为对象的实例”。我从这里尝试过解决方案。
using (PrincipalContext pc = new PrincipalContext(ContextType.Domain))
{
UserPrincipal up = UserPrincipal.FindByIdentity(pc, usr.SoeId);
return up.DisplayName;
// or return up.GivenName + " " + up.Surname;
}
但它不起作用。
我使用 Windows 身份验证。模拟设置为真。请帮我。