Click here to Skip to main content
15,884,007 members
Articles / Web Development / ASP.NET

An easy way to use certificates for WCF security

Rate me:
Please Sign up or sign in to vote.
4.69/5 (38 votes)
30 Apr 2007MIT12 min read 476.5K   7.2K   136  
An easy solution to use certificates on Windows Communication Foundation loading the certificates from files
using System;
using System.Collections.Generic;
using System.Text;
using System.ServiceModel;
using System.ServiceModel.Activation;

namespace DevAge.ServiceModel
{

    //ISS .svc example
    //<%@ServiceHost Service="YourCalculatorService"
    //               Factory="DevAge.ServiceModel.CertificateServiceHostFactory"
    //               language=c# Debug="true" %>
    // 
    // For more informations look at:
    // http://msdn2.microsoft.com/en-us/library/aa395224.aspx  "Custom Service Host"

    /// <summary>
    /// The factory class derived from ServiceHostFactory used to create the CertificateServiceHost class.
    /// Useful when hosting the service with IIS where you cannot specify what class to create but you can specify the host factory.
    /// </summary>
    public class CertificateServiceHostFactory : ServiceHostFactory
    {
        protected override ServiceHost CreateServiceHost(Type serviceType, Uri[] baseAddresses)
        {
            return new CertificateServiceHost(serviceType, baseAddresses);
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

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


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

Comments and Discussions