Tagged Questions

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.

learn more… | top users | synonyms

27
votes
8answers
2k views

Which authentication and authorization schemes are you using - and why?

We're beginning to design a whole bunch of new services to create (WCF, ADO.NET Data Services, possibly in the cloud at some point) and one question that pops up is what authentication and ...
6
votes
2answers
568 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?
4
votes
2answers
841 views

Authorization and Entitlement solution on .Net like earlier in AzMan

What is the best way to achieve application authorization and entitlement in .Net. Earlier AzMan use to be the standard way. With the advent of provider model, at least roles are taken care of but I ...
3
votes
1answer
135 views

Is AzMan being deprecated as the role based authorization technology for Windows apps?

There doesn't seem to have been any new development on AzMan for a few years now. I'm wondering if it is still the recommended solution for implementing role based authorization for a Windows ...
3
votes
2answers
184 views

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<User> users = new ...
3
votes
2answers
609 views

WPF Application - Role Management Recommendations

I have a WPF application with a WCF service layer and a SQL database. I now want to restrict elements of the application so that certain functions are only available to those users with a particular ...
2
votes
1answer
45 views

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 ...
2
votes
1answer
238 views

AZMan: InitializeClientContextFromName failing with “Value does not fall within the expected range.”

The following code, fails at the InitializeClientContextFromName, with "Value does not fall within the expected range." It works on another developer's machine. any clues I should follow up? I'm not ...
2
votes
1answer
134 views

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

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

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 ?
2
votes
1answer
179 views

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) ...
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
967 views

Getting a list of Tasks that belong to a Role from Azman

I'm using the AZROLESLib which is from the COM references "azroles 1.0 Type Library" and I am trying to create a list of the designated tasks for each role that I have currently set in my ...
2
votes
2answers
291 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 ...
2
votes
3answers
1k views

Relative connection string to AzMan XML store when using security application block

Is it possible to specify a relative connection string for an AzMan XML store? My current connection string is connectionString="msxml://c:/azman.xml" but I really need to make that relative so other ...
2
votes
2answers
2k views

Why do I get the error “Unable to update the password” when calling AzMan?

I'm doing a authorization check from a WinForms application with the help of the AzMan authorization provider from Enterprise Library and I'm receiving the the following error: Unable to update ...
1
vote
1answer
92 views

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

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

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?
1
vote
1answer
85 views

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

Azman to get role,operations, tasks of an user

AzAuthorizationStoreClass authorizationStore = new AzAuthorizationStoreClass(); authorizationStore.Initialize(0, ConfigurationManager.ConnectionStrings ...
1
vote
1answer
168 views

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 ...
1
vote
2answers
443 views

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

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

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 ...
1
vote
2answers
371 views

Granting ASP.NET Network Service account access to Azman

I have an Azman store in AD, but cannot access it from our ASP.NET web server. I'm assuming that I need to grant the ASP.NET Network Service permission to the Azman store (using the Azman config ...
1
vote
1answer
485 views

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 ...
1
vote
2answers
498 views

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

WIF simple WITHOUT Federation - Where to start

I am little lost at the moment. Hopefully you can point me in the right direction... Scenario: WinForms App / Active Directory / ONLY internal network What I want: Achieve the same that NetSqlAzMan ...
0
votes
1answer
140 views

NetSqlAzMan vs AzMan vs (?????)

I've been trying to "read between the lines" about the original (and/or current) motivation for the NetSqlAzMan project. Was this written for? An adapter for Windows Authorization Manager (AzMan). ...
0
votes
0answers
35 views

Attributes & Deny Authorizations in NetSqlAzMan

I am using NetSqlAzMan for managing authorizations in my application. In my application, I would like to manage authorization on a record level; allow/deny a user/group to perform an operation on ...
0
votes
1answer
35 views

Protect a method on a class using declarative security and azman

I have a wcf 4.0 service , I am running it locally in IIS express and am using azman to manage security. I am able to use the declarative syntax to secure the services, and prevent class instantiation ...
0
votes
0answers
35 views

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 ...
0
votes
0answers
42 views

AzAuthorizationStoreClass.Initialize throws exception “Value does not fall within the expected range.”

I am attempting to read some authorization information within a WCF web service hosted in Windows Server 2008, IIS7. I am successfully able to run the code on my Windows 7 development environment, ...
0
votes
0answers
22 views

How to navigate ASP.NET webpages by swapping between different roles?

I am developing an ASP.NET Web Forms application in C#. I have to make a function where the admin user can select other roles through a DropDownList and then navigate the website impersonating that ...
0
votes
1answer
105 views

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

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

How to Export AzMan XML Store to another Machine?

Hi Im trying to find a way to recreate the all of the Roles, tasks operations etc that are currently defined in an AzMan XML store on our Dev box in an XML store on our QA box. Of course just simply ...
0
votes
0answers
233 views

AzMan and Sql Store

I have setup AzMan SQL store. I can connect to it using the GUI (MMC). It works fine. My problem is that I am trying to use it in a .NET application (MVC or Console). When I try, I get an error: ...
0
votes
1answer
190 views

azman - problem with registering Interop.AZROLESLib.dll to GAC

I am struggling since 2 -3 hours to register the Interop.AZROLESLib.dll to gac using .net framework configuration tool. the error says "unable to add the selected assembly. the assembly must have ...
0
votes
1answer
130 views

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

Refreshing AzMan through AZROLESLib

We've written a simple AzMan wrapper class in .NET which uses the AZROLESLib COM interop library to access AzMan. It all works fine, except when we make changes to the underlying XML store, those ...
0
votes
2answers
541 views

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

Asp.net Authorization using Azman and Store - xml, adam , sql ..etc

I am setting up Azman for authorization in my asp.net web application. I can have the Azman store as XML or ADAM or Sql server. My question is, which store (XML,ADAM,Sql,..etc) is better in what ...
0
votes
1answer
279 views

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

AzMan API returns invalid data with high load

I have a WCF service that calls the Authorization manager (AzMan) API - which is a COM interface. I use the following code to get a list of roles for a given user account: public string[] ...
0
votes
2answers
444 views

Azman 64 bit using VS2010: BadImageFormatException

I recently upgraded a solution from VS2008 to VS2010. Just a solution upgrade, nothing else. I am targeting .Net 3.5. The solution is set to build build for "any CPU". Now, after the solution upgrade, ...
0
votes
2answers
172 views

AzMan XML configuration or SQL configuration, which one is more secure?

I am implementing the azman role based security in my application. I have seen how to configure it either using XML or SQL. But I am not able to understand which one is more secure? I am using ...
0
votes
2answers
319 views

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 ...

1 2