Tagged Questions
The windows-principal tag has no wiki summary.
8
votes
3answers
1k views
What's the difference between retrieving WindowsPrincipal from WindowsIdentity and Thread.CurrentPrincipal?
I am trying to work out why attribute based security isn't working as I'd expect in WCF and I suspect it might have something to do with the following:
...
5
votes
1answer
120 views
How can I ensure that IsInRole checks are not using cached credentials
I have a WPF client that connects to a WCF service, and I want to lock down some of the functionality so that only certain users can perform certain actions. The WCF service impersonates the client ...
2
votes
2answers
582 views
How can I retrieve all the roles a user is in?
Is there a way to get a list of roles a Windows authenticated user is in, without explicitly checking by WindowsPrincipal.IsInRole method?
2
votes
3answers
5k views
WindowsPrincipal.IsInRole and universal vs. global active directory groups
Does anybody know how to make WindowsPrincipal.IsInRole("domain\role") work with active directory universal groups?
Let's say the current user is a member of a group called Role in a domain called ...
1
vote
2answers
997 views
How can I temporarily impersonate a user to open a file?
I would like to temporarily impersonate a domain user account to read in a file on a network drive from an ASP.NET site.
I would rather not set up impersonation for the entire site or set up a mapped ...
1
vote
1answer
128 views
Why does Vista report that my Windows account not being in Adminstrators Role?
Under Windows Vista, when I check whether my current user account is in Administrators role, I am getting a negative, as shown in the following picture.
Can anyone tell me why I am not in the ...
0
votes
0answers
33 views
How to return the WindowsPrincipal object from (VBScript) QTP?
I am writing a test in QTP (In VBScript) that needs to get some information from the WindowsPrincipal object in order to log in to a service.
But how do you return the windows principal object in ...
0
votes
0answers
197 views
WindowsPrincipal.IsInRole() not checking against distribution list with public folders
I am facing an issue while authorizing users against roles from AD.
If my DL (which are all Security Groups) does not have public folders enabled, my authorization works fine. However DL's which ...
0
votes
1answer
324 views
Verify logged in user against exchange distribution list or AD groups in c#
I am trying to verify whether the logged in user exists in a AD group or distribution list. I tried to use WindowsIdentity but that does not give me proper results. If I add a user to the DL and then ...
0
votes
2answers
2k views
How can i get the WindowsIdentity or WindowsPrincipal of a WCF Claim / SecurityIdentifier (SID)?
I'm trying to allow all users in the Administrators group access through WCF.
internal sealed class AuthorizationManager : ServiceAuthorizationManager
{
public override bool ...