Click here to Skip to main content
15,887,746 members
Articles / WCF

Securing WCF

Rate me:
Please Sign up or sign in to vote.
5.00/5 (4 votes)
10 Apr 2012Apache2 min read 29K   7  
The different securing mechanisms and how they are set up

Securing a WCF service is quite easy but several methods with different fields of applications exist. This post describes the different available securing mechanisms and how they are set up.

Securing your network service is important because if a service is not secured, every peer on your communication way can read your communication.

Basically two different approaches of securing a service exist:

  • Message security: This approach encrypts the contents of a message, therefore the security is delegated to the protocol. If a well-known and tested standard for the protocol in use is available, this approach has the advantage that the encryption is transparent to all peers and no special treatment is required. But not all protocols provide a payload encryption. Developing your own message security scheme is dangerous and requires special security skills. SOAP with the WS-Security extension is an example for a message-security scheme, but the WS-Security extension is not supported by many frameworks, especially it is not supported on Android out of the box.
  • Transport security: Transport layer security is independent of the protocol and is supported by far more applications. A well-known transport security mechanism is SSL/TLS which is used for HTTPS, SSH and many others. It establishes an end-to-end encryption based on X509-Certificates and associated private keys. The disadvantage of this approach is that non-end-to-end connections are not supported. The communication needs to be decrypted and encrypted on every hop.

WCF and Message Security

To enable service security for your service, add the following to your binding configuration:

XML
<security mode="Message">
  <message clientCredentialType="Certificate/IssuedToken/None/UserName/Windows" />
</security>

For a detailed explanation of the message security tag, look at MSDN.

WCF and Transport Security

Because of my affinity to mobile devices and mobile services, I prefer transport security over message security because it has far less overhead, is supported out of the box and can be applied to multiple technologies (SOAP, REST,...).

To enable transport security, add the following to your binding configuration and adjust your URLs from http to https:

XML
<security mode="Transport">
</security>

To generate a self-signed test certificate for your service, use the makecert tool and import the certificate into your local certificate storage. To associate the certificate with your service, you can use the netsh tool as shown:

http add sslcert ipport=<host>:<port> 
certhash=<certhash from certstore> appid=<chosen appid guid>

Appendix: Enable WCF logging

To get more information out of a service and to discover why it is not working as expected, it is always a good idea to enable logging. Put the following snippet in your app.config to enable logging to the specified file. A log viewer should be available on your system.

XML
<system.diagnostics>
<sources>
  <source name="System.ServiceModel" 
          switchValue="Information, ActivityTracing"
          propagateActivity="true">
   <listeners>
    <add name="traceListener" 
         type="System.Diagnostics.XmlWriterTraceListener" 
         initializeData= "c:\log\Traces.svclog" />
   </listeners>
  </source>
</sources>
</system.diagnostics>

Original post blogged on b2evolution.

This article was originally posted at http://www.deveck.net/deveck.php/2012/04/06/securing-wcf

License

This article, along with any associated source code and files, is licensed under The Apache License, Version 2.0


Written By
Student
Austria Austria
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
-- There are no messages in this forum --