Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
644 views

Is Windows Authorization Manager (AzMan) Obsolete? Is it good to use in a new ASP.NET application?

Does anyone use Windows Authorization Manager (AzMan) anymore for "greenfield" projects? If so, are there any benefits to using the technology in an ASP.NET application as a membership/role provider?
2
votes
3answers
1k views

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 ...
2
votes
2answers
298 views

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 ...
1
vote
1answer
153 views

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 ...
0
votes
1answer
403 views

AuthorizationManager based on service invocation parameters

I'm currently developing my own AuthorizationManager, it looks something like that: public class MyAuthorizationManager : ServiceAuthorizationManager { static bool initialize = false; public ...