我在使用Web应用程序中UserPrincipal类的GetAuthorizationGroups方法时遇到问题。
使用以下代码,我收到“在尝试检索授权组时,发生错误(5)”
PrincipalContext context = new PrincipalContext(ContextType.Domain, null, "DC=MyCompany,DC=COM", "username", "password");
UserPrincipal p = UserPrincipal.FindByIdentity(context, IdentityType.SamAccountName, "joe.blogs");
var groups = p.GetAuthorizationGroups();
我相信这段代码在某种程度上有效。
以下是错误的堆栈跟踪。
[PrincipalOperationException: While trying to retrieve the authorization groups, an error (5) occurred.]
System.DirectoryServices.AccountManagement.AuthZSet..ctor(Byte[] userSid, NetCred credentials, ContextOptions contextOptions, String flatUserAuthority, StoreCtx userStoreCtx, Object userCtxBase) +317279
System.DirectoryServices.AccountManagement.ADStoreCtx.GetGroupsMemberOfAZ(Principal p) +441
System.DirectoryServices.AccountManagement.UserPrincipal.GetAuthorizationGroupsHelper() +78
System.DirectoryServices.AccountManagement.UserPrincipal.GetAuthorizationGroups() +11
通过从PrincipalContext构造函数中删除用户名和密码详细信息并更改应用程序池(在iis7中)以同一用户(username@mycompany.com)运行 - 以下代码可以正常工作。
PrincipalContext context = new PrincipalContext(ContextType.Domain, null, "DC=MyCompany,DC=COM");
UserPrincipal p = UserPrincipal.FindByIdentity(context, IdentityType.SamAccountName, "joe.blogs");
var groups = p.GetAuthorizationGroups();
我需要让第一个示例中的代码生效 - 我不希望将应用程序池作为域用户运行,只是为了让这段代码正常工作。
答案 0 :(得分:5)
我处理了同样的问题。见有关类似问题的讨论。 https://stackoverflow.com/a/8347817/2012977
解决方案如下:
public List<GroupPrincipal> GetGroups(string userName)
{
var result = new List<GroupPrincipal>();
PrincipalContext ctx = GetContext(); /*function to get domain context*/
UserPrincipal user = UserPrincipal.FindByIdentity(ctx, userName);
if (user != null)
{
PrincipalSearchResult<Principal> groups = user.GetAuthorizationGroups();
var iterGroup = groups.GetEnumerator();
using (iterGroup)
{
while (iterGroup.MoveNext())
{
try
{
Principal p = iterGroup.Current;
result.Add((GroupPrincipal) p);
}
catch (PrincipalOperationException)
{
continue;
}
}
}
}
return result;
}
答案 1 :(得分:2)
错误5表示ERROR_ACCESS_DENIED,表示与权限相关的问题。也就是说,以下代码对我有用,在Windows 7上运行,网站作为默认应用程序池运行:
.aspx页面的“正文”内容:
<asp:GridView ID="GridView1" runat="server">
</asp:GridView>
代码隐藏:
protected void Page_Load(object sender, EventArgs e)
{
var Context = new PrincipalContext(ContextType.Domain, "logon_domain", "username", "password");
var principal = UserPrincipal.FindByIdentity(Context, "user_to_query");
var groups = principal.GetAuthorizationGroups();
GridView1.DataSource = groups;
GridView1.DataBind();
}
在我的示例中,logon_domain
是domain_name\username
的左手,而不是您使用的域规范的样式。我的解决方案可能适用于您,也可能不适用。如果没有,它确实指向某处的权限问题。
答案 2 :(得分:0)
请管理员查看返回错误代码5的用户的AD帐户。我今天遇到了该帐户,结果证明是该用户帐户的设置。有一个复选框用于继承未检查的安全设置(已检查所有其他用户)。这解决了我。