Questions tagged [azman]

AzMan (Windows Authorization Manager) is a role-based access control (RBAC) framework that provides an administrative tool to manage authorization policy and a runtime that allows applications to perform access checks against that policy.

The AzMan administration tool (AzMan.msc) is supplied as a Microsoft Management Console (MMC) snap-in. Role-based authorization policy specifies access in terms of user roles that reflect an application's authorization requirements. Users are assigned to roles based on their job functions and these roles are granted permissions to perform related tasks.

Authorization policy is managed separately from an application’s code. The application designer defines the set of low-level operations that are considered security sensitive and then defines a set of tasks that map onto those operations. The tasks, but not the operations, are designed to be understandable by administrators and business analysts.

Administrators use the AzMan snap-in to manage which roles should have access to which tasks. As the business evolves and roles need to be modified, the administrator makes changes to the authorization policy; the underlying business application does not need to be changed. Federation-aware applications employ AzMan for access control decisions by mapping federation claims to AzMan roles.

http://msdn.microsoft.com/en-us/library/bb897401.aspx

79 questions
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
2
votes
1 answer

Azman - Connection string for SQL Store

I'm trying to create a SQL backing store for Azman using the MMC snap-in. The tool asks for a URL-style connection string for connecting to the back end: I have a URL-style connection string that works just fine for SQLExpress on the local…
Avram
  • 251
  • 3
  • 12
2
votes
2 answers

Reference sample for ClaimsAuthorizationManager in Windows Identity Foundation 4.5

Sorry for the long question, trying to get all my points across! I have been spending a considerable amount of time researching how to update our existing Identity and Access Management scheme to a more modern platform that solves a number of…
CarlR
  • 1,718
  • 1
  • 17
  • 21
2
votes
1 answer

Attempted to access an unloaded appdomain calling AzMan

In an ASP.NET MVC web application, I'm seeing the following error occaisionally: System.AppDomainUnloadedException: Attempted to access an unloaded appdomain. (Exception from HRESULT: 0x80131014) at …
David Gardiner
  • 16,892
  • 20
  • 80
  • 117
1
vote
1 answer

Looping through IAzApplication IAzRoles collection too slow

I have this simple code which loops through all the apps in Azman and all their roles. It works great when I have no users assigned to the Roles. But the moment I assign users (2 of the roles have like 7000 users), the app hangs in foreach(IAzRole…
StackThis
  • 1,262
  • 1
  • 14
  • 23
1
vote
1 answer

ADAM and Azman with ASP.Net forms authentication

Has anyone been able to make ADAM/Azman work with ASP.Net forms authentication. The default ADAM role provider works only with AD Domain users. And every single article I have read says that you need to write a custom role provider for it. I have…
StackThis
  • 1,262
  • 1
  • 14
  • 23
1
vote
1 answer

Is there a sample anywhere of an AzMan Custom Object Picker?

Supposedly it's possible to write a custom picker and integrate it with AzMan. This capability can be used to allow MMC users to add non-Windows users to AzMan stores. (See here). According to one of the Microsoft blogs, a sample was included in…
Ann L.
  • 13,760
  • 5
  • 35
  • 66
1
vote
1 answer

Use AzMan RoleManager in conjunction with default ASP.NET Membership

I would like to use the AzMan RoleManager API in my existing webapplication. I'm already using the default ASP.NET membership provider which stores its users in the ASPNETDB database. I quickly took a look at AzMan and administered my policy store…
Ropstah
  • 17,538
  • 24
  • 120
  • 194
1
vote
1 answer

AzMan and Classic ASP

I have setup AzMan and have a few classic ASP sites that I would like to use it in. The AzMan store is setup in Active Directory. I can get it to work fine in ASP.NET and using a VBS (Visual Basic Script). My problem is that it doesn't work on…
vincentw56
  • 545
  • 8
  • 19
1
vote
1 answer

Azman and multiple domains

I have an app that's using the AuthorizationStoreRoleProvider to authorize against a primary domain. We now have a secondary trusted domain from which users will access the app. Just wondering if it's possible to configurate an azman policy to…
Darren J.
  • 25
  • 6
1
vote
1 answer

Azman to get role,operations, tasks of an user

AzAuthorizationStoreClass authorizationStore = new AzAuthorizationStoreClass(); authorizationStore.Initialize(0, ConfigurationManager.ConnectionStrings ["StoreLocation"].ConnectionString, null); …
Yogesh
  • 1,206
  • 4
  • 22
  • 50
1
vote
2 answers

Cannot authorize with different server name

I have a web service running in IIS 6.0 on Windows 2003. It's authentication mode is Integrated Windows security (anonymous disabled), and authorization is done with Authorization Manager and an XML authorization store. My test user is a domain user…
Tor Haugen
  • 19,509
  • 9
  • 45
  • 63
1
vote
2 answers

ADAM (AD LDS) & AzMan for Membership and Roles

Well, I'm currently developing an application that must use the local Active Directory for membership. Everything is alright with membership, since I have no domain controllers around and a virtual machine instance is way too much work for my PC,…
Luis Aguilar
  • 4,331
  • 6
  • 36
  • 55
1
vote
1 answer

How to get all the provisioned operations from AzMan in a single call?

I'm using Authorization Manager in my .net C# application. During application startup, I cache all the operations for which the user has access then use this cached data for further processing. The issue is - I can check access only for one…
Kapil
  • 9,469
  • 10
  • 40
  • 53
1
vote
1 answer

Calling initialize method of AzMan object causes FileNotFoundException

I have A WCF service that has a class that inherits System.Web.Security.RoleProvider. In this class I use Authorization Manager (AzMan) - using AzRoles.dll - for role management. Authentication is in an ADAM instance. I have been having trouble…
HitLikeAHammer
  • 2,679
  • 3
  • 37
  • 53