Questions tagged [authorizationmanager]
7 questions
12
votes
2 answers
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?

Jason
- 4,897
- 2
- 33
- 40
3
votes
1 answer
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…

Kapil
- 9,469
- 10
- 40
- 53
2
votes
3 answers
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…

SamWM
- 5,196
- 12
- 56
- 85
1
vote
1 answer
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
alt text…

Johnathon
- 25
- 6
0
votes
0 answers
Powershell: AuthorizationManager check failed (3 or more files) ("ExecutionPolicy": "RemoteSigned" or "Unrestricted")
I have the problem when I try to excecute file 3 (auth_test2.ps1), then I get the error-message (and the output):
AuthorizationManager check failed.
At C:\Users\systemCESCH\Documents\Workspace.\auth_test1.ps1:2 char:2
+ . <<<< ($thisScript +…

Dobi
- 125
- 5
- 15
0
votes
1 answer
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 override bool CheckAccess(OperationContext…

NAADEV
- 31
- 5
0
votes
0 answers
C# - Get Role by login User in Azman
I am using C# to get the Role from Azman Manager by login User.
This is my code,
internal string AzRoleCheck(string strUserName)
{
string strRoleName = string.Empty;
try
{
WindowsIdentity userIdentity = new…

Manikandan Sethuraju
- 2,873
- 10
- 29
- 48