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
3
votes
2 answers

Where is microsoft.interop.security.azroles on Server 2008 R2?

As far as I can recall, on Server 2003, microsoft.interop.security.azroles used to live in "C:\Windows\Microsoft.NET\authman". On Server 2008 R2, that folder is empty. Anyone know where it's hiding?
serialhobbyist
  • 4,768
  • 5
  • 43
  • 65
3
votes
1 answer

My project builds with MSBuild 4 but not with MSBuild 3.5 even though I'm targeting the same version of the .NET Framework (3.5)?

When I build my solution using MSBuild 4 it compiles successfully: C:\Windows\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe MySolution.sln Build succeeded. 0 Warning(s) 0 Error(s) But when I try to do the same using MSBuild 3.5 I get the…
macrobug
  • 666
  • 6
  • 16
3
votes
2 answers

Will multi-threading increase the performance of a method in a WCF servce?

I have a WCF service that is hosted in IIS6. The important part of the method looks like this: public MyUser[] GetUsers(string appName, string[] names) { List users = new List(); foreach (string user in names) { …
HitLikeAHammer
  • 2,679
  • 3
  • 37
  • 53
3
votes
1 answer

Has AzMan been removed from Microsoft server 2012 R2?

I am working on a legacy product which uses Microsoft AzMan for authorization. Recently, as part of the Windows Server 2012 R2 migration, I found that the breaking changes indicate that the AzMan has been…
aJ.
  • 34,624
  • 22
  • 86
  • 128
3
votes
1 answer

Microsoft.Interop.Security.AzRoles.AzAuthorizationStoreClass.Initialize fails with System.IO.FileLoadException

Our ASP.NET web application uses Authorization manager. On a page of this web application, the authorization store which is a local XML file on the server is accessed many times to perform access check. Some clients of ours are getting a…
user630585
  • 31
  • 1
3
votes
1 answer

How to refresh AzMan access check cache?

I've created a web application that uses Microsoft AzMan, and it works just fine until you have multiple users. I'm almost 100% certain that AzMan is caching the same stuff for multiple users. To simplify it a bit, the problem I'm seeing is user A…
Max Schmeling
  • 12,363
  • 14
  • 66
  • 109
2
votes
1 answer

Azman on a resource level

I have used Azman in a previous project and it works well when authorizing operations on a system-level authorize role X to perform operation Y. allow Managers to update_sales_orders In a new project, I need to manage authorizations on a record…
Omtara
  • 2,911
  • 2
  • 19
  • 31
2
votes
1 answer

Is an IIS restart necessary to pick up azman changes?

Is it necessary to restart IIS in order to ensure that changes to azman.xml are picked up, or will IIS figure out that the permissions in azman.xml have been changed?
Lefty
  • 166
  • 1
  • 12
2
votes
2 answers

AzMan gives different results to different servers

We have 2 web-servers which are theoretically identical, but are producing different results when performing an AzMan authorisation check. We have the same web-site running on both machines (literally the same web-site - it's been XCOPYed from one…
RB.
  • 36,301
  • 12
  • 91
  • 131
2
votes
1 answer

Microsoft.Interop.Security.AzRoles in Server 2008/Windows 7

I am trying to follow these instructions on how to use AD LDS for both Membership and Roles for an application. I've almost got it all set, but the ending code calls for the "IAzApplication2" object from Microsoft.Interop.Security.AzRoles. I can…
emmilely
  • 55
  • 8
2
votes
1 answer

Concurrent updates in ADAM/AzMan throwing a strange error

We have a custom membership provider that uses a WCF service and ADAM/AzMan. We have been seeing a lot of errors lately which seems to correspond to more heavy use of our web aplication. I discovered that in the web application each time a user…
HitLikeAHammer
  • 2,679
  • 3
  • 37
  • 53
2
votes
2 answers

ASP.NET role based security with AzMan and AD roles

I'm trying to evaluate AzMan for one of my ASP.NET applications but I have a strange problem. My test application expects three roles: User Owner Admin I created XML Authorization store located in application's App_Data and added these role…
Ladislav Mrnka
  • 360,892
  • 59
  • 660
  • 670
2
votes
2 answers

Is there any difference between Interop.AZROLESLib and Microsoft.Interop.Security.AzRoles?

Microsoft provide the Microsoft.Interop.Security.AzRoles interop library in Server 2003 for AzMan (Authorization Manager). It was built under .NET 1.0. Can anyone tell me if there's a difference between this and creating a reference to the "azroles…
serialhobbyist
  • 4,768
  • 5
  • 43
  • 65
2
votes
2 answers

Is there AzMan 64bit?

Is there 64 bit version of AzMan? We have an app that uses Microsoft.Interop.Security.AzRoles.dll.Is there a 64 version of this ?
pdiddy
  • 6,217
  • 10
  • 50
  • 111
2
votes
1 answer

AzMan Nested Roles not finding user in role

I'm using AzMan (1.0) for an ASP.Net web app, and I have a question about nested Roles. Say I have the following roles: MyApp MyAppUser MyAppAdmin MyAppSupport For the most part, all users (MyApp) can access the app, but some functions will be…
Mikejh99
  • 378
  • 5
  • 12