Getting Started with Adobe After Effects - Part 6: Motion Blur


Upload Image Close it
Select File

Browse by Tags · View All
#DOTNET 33
#.NET 26
#ASP.NET 25
ASP.NET 24
brh 22
#C# 14
.NET 13
WCF 11
c# 9
#MultiThreading 7

Archive · View All
January 2011 10
September 2011 6
May 2011 6
December 2011 5
October 2011 5
June 2011 5
February 2011 3
November 2012 2
August 2012 2
April 2012 2

Implement Role based security using Windows Groups in WCF

Dec 19 2011 12:02PM by Neeraj Kaushik   

This is third blog on security concept in WCF. You can read previous posts:

Something about Security in WCF- I

Implement windows authentication and security in WCF Service

Today I’ll describe how we can implement role based authorization using Windows Group. In this case you will not need to maintain any information in database because roles are managing through windows group.

Step1: Create Windows Group

MarketServiceSuperUser in “Windows Users and Groups” in control panel. This group will be treated as roles in application.

image

Step2: Add users to windows Group. In this case user will be member of this group.

image

image

Step 3: Implement Role based security in Service side.

The principal in .NET is any object that implements the IPrincipal interface, defined in the System.Security.Principal namespace:

public interface IPrincipal
{
IIdentity Identity

{get;}

bool IsInRole(string role);
}


The IsInRole() method simply returns true if the identity associated with this principal is a member of the specified role, and false otherwise.

Programmatic Implementation

 public double GetMarketPrice(string symbol)

        {
            IPrincipal principal = Thread.CurrentPrincipal;
            if (!principal.IsInRole("MarketServiceSuperUser"))
                throw new AuthenticationException("Access Denied");

            GetServiceContext();
            //TODO: Fetch market price
            //sending hardcode value
            if (!symbol.EndsWith(".NSE"))
                throw new FaultException(new ValidationException { ValidationError = "Symbol is not valid" }, new FaultReason("Validation Failed"));
           //send real price
            return 34.4d;
        }

image

Principal object contains caller’s identity and can be check if role is valid for this user. If Client user is not member of windows group then IsInRole will return false.

Declarative Implementation

Above behavior can also be implemented by PrincipalPermission attribute which take SecurityAction enum and role name.

      [PrincipalPermission(SecurityAction.Demand, Role = "MarketServiceSuperUser")]
       public double GetMarketPrice(string symbol)

        {
            //sending hardcode value
            if (!symbol.EndsWith(".NSE"))
                throw new FaultException(new ValidationException { ValidationError = "Symbol is not valid" }, new FaultReason("Validation Failed"));
           //send real price
            return 34.4d;
        }

Step 4: Run Client Application

  • Run with User which are not member of MarketServiceSuperUser.
   static void Main(string[] args)
        {
            try
            {
                Console.WriteLine("Connecting to Service..");
                var proxy = new ServiceClient(new NetTcpBinding(), new EndpointAddress("net.tcp://localhost:8000/MarketService"));
                proxy.ClientCredentials.Windows.ClientCredential.Domain = "domainuser";
                proxy.ClientCredentials.Windows.ClientCredential.UserName = "MarketServiceUser";
                proxy.ClientCredentials.Windows.ClientCredential.Password = "123456";
                
                Console.WriteLine("MSFT Price:{0}", proxy.GetMarketPrice("MSFT.NSE"));
                Console.WriteLine("Getting price for Google");
                double price = proxy.GetMarketPrice("GOOG.NASDAQ");
            }
            
            catch (FaultException ex)
            {
                Console.WriteLine("Service Error:" + ex.Detail.ValidationError);
            }
            catch (Exception ex)
            {
                Console.WriteLine("Service Error:" + ex.Message);
            }
            Console.ReadLine();
        }

In above code client will call with user which is member of MarketServiceSuperUser, service will authorize to access resources in service. 

  • Run with User which are not member of MarketServiceSuperUser.
proxy.ClientCredentials.Windows.ClientCredential.Domain = "domainuser"; 

proxy.ClientCredentials.Windows.ClientCredential.UserName = "MarketServiceInvalidUser";

proxy.ClientCredentials.Windows.ClientCredential.Password = "123456";

In this case SecurityAccessDeniedException  will generate with “Access Denied” message.

image

I hope this post brief you about implementation of role base security using windows group.

Tags: #DOTNET, #ASP.NET, ASP.NET, .NET, WCF,


Neeraj Kaushik
54 · 4% · 1132
2
 
0
Lifesaver
 
 
0
Learned
 
0
Incorrect



Submit

Your Comment


Sign Up or Login to post a comment.

"Implement Role based security using Windows Groups in WCF" rated 5 out of 5 by 2 readers
Implement Role based security using Windows Groups in WCF , 5.0 out of 5 based on 2 ratings
    Copyright © Rivera Informatic Private Ltd Contact us      Privacy Policy      Terms of use      Report Abuse      Advertising      [ZULU1097]