authorizationmanager

Issue in retrieving the task list from AuthorizationManager (AzMan)

I am using authorization Manager in one of my application and my requirement is to copy the AzMan store from one location to another location. My source location is Active directory and destination is xml and I have the path for both of these. When I create an AzMan store and initialize with the source link to get a handle of object, th...

Powershell AuthorisationManager check failed

This is just a blank script. I have made the ExecutionPolicy unrestricted as this is just a developer machine. Is there anything I'm missing? I'm running this on a win 2003 server virtualised. cheers ...

AuthorizationManager based on service invocation parameters

Hello, I'm currently developing my own AuthorizationManager, it looks something like that: public class MyAuthorizationManager : ServiceAuthorizationManager { static bool initialize = false; public override bool CheckAccess(OperationContext operationContext) { ServiceSecurityContext context = ServiceSecurityContext...

Get list of users belonging to a role using Authorization Manager (AzMan)

Using ASP.NET (C#) I have set up Authorization Manager to allow me to handle roles on a website. Added users to roles is simple Roles.AddUserToRole("DOMAIN\\UserName", "role"). However I want to list the users belonging to a role, but since they are stored as SID's, displaying them would not be that helpful. To get the users, I am thinki...