I have two domains that are set up with a two way trust.
Domain A has a group (group A) with a member (User A).
Domain B has a group (group B) with Group A (from the other domain) as a member.
I'm checking with:
if(User.IsInRole(group B))
{
// logging in as User A should provide access because this use is part of Group A which is part of Group B
}
but that's not working.
what am I missing here?
This fails for me when run on a machine logged in as the user and joined to that domain.