Imitating Exchange Server's "RBAC AuthZ" in my own application... (is there something similar?)

Posted by makerofthings7 on Programmers See other posts from Programmers or by makerofthings7
Published on 2012-02-14T05:02:01Z Indexed on 2012/03/20 17:38 UTC
Read the original article Hit count: 344

Filed under:
|
|
|
|

Exchange 2010 has a delegation model where groups of winrm cmdlets are essentally grouped into roles, and the roles assigned to a user.

Exchange Roles Image (Image source)

This is a great & flexible model considering how I can leverage all the benefits of PowerShell, while using the right low level technologies (WCF, SOAP etc), and requiring no additional software on the client side.

image of how Exchange 2010 remote admin works (Image source)

Question(s)

  1. Is there a way for me to leverage Exchange's delegation model in my .NET application?

  2. Has anyone attempted to imitate this model?

  3. If I must start from scratch, how would I go about imitating this approach?

© Programmers or respective owner

Related posts about c#

Related posts about security