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 windows authentication and security in WCF Service

Dec 14 2011 5:46PM by Neeraj Kaushik   

This is continuation with previous post on “Security in WCF -I”.

Here I’ll explain how we can implement windows authentication with transport level security in intranet environment.

Windows authentication

In intranet environment, client and service are .Net application.Windows authentication is most suitable authentication type in intranet where client credentials stored in windows accounts & groups. Intranet environment address a wide range of business applications. Developers have more controlled in this environment.

For Intranet, you can use netTcpBinding,NetNamedPipeBinding and NetMsmqBinding for secure and fast communication.

Windows credential is default credential type and transport security is default security mode for these bindings.

Protection Level

You can set Transport Security protection level through WCF:

  • None: WCF doesn’t protect message transfer from client to service.
  • Signed: WCF ensures that message have come only from authenticated caller. WCF checks validity of message by checking Checksum at service side. It provides authenticity of message.
  • Encrypted & Signed: Message is signed as well as encrypted. It provides integrity, privacy and authenticity of message.

Configuration in WCF Service for Windows Authentication

    Service is hosted on netTcpBinding with credential type windows and protection level as EncryptedAndSigned.
var tcpbinding = new NetTcpBinding(SecurityMode.Transport);
//Client credential will be used of windows user
tcpbinding.Security.Transport.ClientCredentialType = 
		TcpClientCredentialType.Windows;
// When configured for EncryptAndSign protection level, WCF both signs the message and encrypts
//its content. The Encrypted and Signed protection level provides integrity,
//privacy, and authenticity.
tcpbinding.Security.Transport.ProtectionLevel = 
System.Net.Security.ProtectionLevel.EncryptAndSign;

Client credential type can be set by TcpClientCredentialType enum.

public enum TcpClientCredentialType
{
None,
Windows,
Certificate
}

Protection level can be set by ProtectionLevel  enum.

  // Summary:
    //     Indicates the security services requested for an authenticated stream.
    public enum ProtectionLevel
    {
        // Summary:
        //     Authentication only.
        None = 0,
        //
        // Summary:
        //     Sign data to help ensure the integrity of transmitted data.
        Sign = 1,
        //
        // Summary:
        //     Encrypt and sign data to help ensure the confidentiality and integrity of
        //     transmitted data.
        EncryptAndSign = 2,
    }

WCF Service Code

Service Host

class Program
    {
static void Main(string[] args)
{
Uri baseAddress = new Uri("http://localhost:8045/MarketService");
using (var productHost = new ServiceHost(typeof(MarketDataProvider)))
  {
 var tcpbinding = new NetTcpBinding(SecurityMode.Transport);
 //Client credential will be used of windows user
 tcpbinding.Security.Transport.ClientCredentialType = 
			TcpClientCredentialType.Windows;
 // When configured for EncryptAndSign protection level, WCF both signs the message and encrypts
 //its content. The Encrypted and Signed protection level provides integrity,
 //privacy, and authenticity.
 tcpbinding.Security.Transport.ProtectionLevel = 
		System.Net.Security.ProtectionLevel.EncryptAndSign;

 ServiceEndpoint productEndpoint = productHost.
 AddServiceEndpoint(typeof(IMarketDataProvider), tcpbinding, 
		"net.tcp://localhost:8000/MarketService");

 ServiceEndpoint producthttpEndpoint = productHost.AddServiceEndpoint(
		typeof(IMarketDataProvider), new BasicHttpBinding(), 
		"http://localhost:8045/MarketService");

 productHost.Open();
 Console.WriteLine("The Market service is running and is listening on:");
 Console.WriteLine("{0} ({1})",
         productEndpoint.Address.ToString(),
         productEndpoint.Binding.Name);
 Console.WriteLine("{0} ({1})",
         producthttpEndpoint.Address.ToString(),
         producthttpEndpoint.Binding.Name);
 Console.WriteLine("\nPress any key to stop the service.");
 Console.ReadKey();
   }
        }


    }

Alternatively, you can configure the binding using a config file:

<bindings> 
    <netTcpBinding> 
    <binding name = "TCPWindowsSecurity"> 
     <security mode = "Transport"> 
          <transport 
                 clientCredentialType = "Windows" 
                 protectionLevel = "EncryptAndSign" 
           /> 
     </security> 
</binding> 
</netTcpBinding> 
</bindings>

Run WCF Service

image

Client Application

 static void Main(string[] args)
  {
  try
    {
     Console.WriteLine("Connecting to Service..");
     var proxy = new ServiceClient(new NetTcpBinding(), 
	new EndpointAddress("net.tcp://localhost:8000/MarketService"));
     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();
}

ServiceClient is custom class which inherits ClientBase<T> class in System.ServiceModel namespace to create channels and communication with service on endpoints.

public class ServiceClient : ClientBase, IMarketDataProvider
    {
     public ServiceClient()   { }
     public ServiceClient(string endpointConfigurationName) :
        base(endpointConfigurationName) { }
     
     public ServiceClient(string endpointConfigurationName, string remoteAddress) :
        base(endpointConfigurationName, remoteAddress)   { }
   
     public ServiceClient(string endpointConfigurationName, 
		System.ServiceModel.EndpointAddress remoteAddress) :
	        base(endpointConfigurationName, remoteAddress)
        { }
     public ServiceClient(System.ServiceModel.Channels.Binding binding, 
			System.ServiceModel.EndpointAddress remoteAddress) :
           base(binding, remoteAddress)
        {}
	/// 
        /// IMarketDataProvider method
        /// 
        /// 
        ///     
	public double GetMarketPrice(string symbol)
        {
            return base.Channel.GetMarketPrice(symbol);
        }
    }

Verify User credentials in Service

You can see caller information in WCF service by ServiceSecurityContext class.  Every operation on a secured WCF service has a security call context. The security call context is represented by the class ServiceSecurityContext.The main use for the security call context is for custom security mechanisms, as well as analysis and auditing.

ServiceSecurityContext.Current in Quickwatch window.

 

image

Send Alternate Windows credentials to Service

WCF also give option to send alternate windows credential from client. By default it send logged in user credential. You can send alternate credential like below

proxy.ClientCredentials.Windows.ClientCredential.Domain = "mydomain";
  
proxy.ClientCredentials.Windows.ClientCredential.UserName = "ABC";
proxy.ClientCredentials.Windows.ClientCredential.Password = "pwd";

Now If I run client application with changed credentials, if credentials are of valid windows user, service will authenticate caller else it will reject caller request. In my case I deliberately gives wrong credential to produce reject exception.

Service sends “System.Security.Authentication.InvalidCredentialException with message "The server has rejected the client credentials.”

image

I hope you understood windows authentication concept here. If you have any question please feel free to send me comments.

You can download code here:

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


Neeraj Kaushik
53 · 4% · 1132
1
 
0
Lifesaver
 
0
Refreshed
 
0
Learned
 
0
Incorrect



Submit

Your Comment


Sign Up or Login to post a comment.

"Implement windows authentication and security in WCF Service" rated 5 out of 5 by 1 readers
Implement windows authentication and security in WCF Service , 5.0 out of 5 based on 1 ratings
    Copyright © Rivera Informatic Private Ltd Contact us      Privacy Policy      Terms of use      Report Abuse      Advertising      [ZULU1097]