vote up 0 vote down star

Hi.

I want to check client certificates in my WCF service.

My goal is to allow only clients with certificates with specific thumbprints to be able to communicate with my service.

My WCF service is hosted in IIS, I'm using basicHttpBinding and security mode="transport" with credential type "Certificate". IIS requires client certificates for communication with the service.

Thanks in advance for help.

UPDATE: My configuration:

<basicHttpBinding>
<binding 
			 name="testBinding"
         maxReceivedMessageSize="2147483647">
    	 <readerQuotas 
					maxDepth="2147483647"
                maxStringContentLength="2147483647"
                maxArrayLength="2147483647"
                maxBytesPerRead="2147483647"
                maxNameTableCharCount="2147483647" />
 <security mode="Transport">
			  <transport clientCredentialType="Certificate"/> 
			 </security>

</binding>
</basicHttpBinding>

Behavior:

<serviceBehaviors>
    <behavior name="SomeServiceBehavior">
      <serviceMetadata httpsGetEnabled="true" />
      <serviceDebug includeExceptionDetailInFaults="true" />
      <serviceCredentials>
        <clientCertificate>
          <authentication certificateValidationMode="Custom" customCertificateValidatorType="SomeService.CustomCertificateValidator,SomeService"  />
        </clientCertificate>
      </serviceCredentials>         
     </behavior> 
   </serviceBehaviors>

Service configuration:

<service 
    		   behaviorConfiguration="SomeServiceBehavior"
               name="SomeService">
        <endpoint 
    			  address=""
                  binding="basicHttpBinding"
                  bindingConfiguration="testBinding"
                  contract="ISomeService">
        </endpoint>
      </service>

And for test purpose I implemented validator in this way:

public class CustomCertificateValidator : X509CertificateValidator
    {
        public override void Validate(System.Security.Cryptography.X509Certificates.X509Certificate2 certificate)
        {                
            throw new SecurityTokenValidationException("TEST Certificate was not issued by a trusted issuer TEST");
        }
    }

And this doesn't work. I can connect to my service with any valid certificate.

flag

71% accept rate

1 Answer

vote up 1 vote down check

You can create a class derived from X509CertificateValidator and use it to do custom validation of the incoming certificate. Throw an SecurityTokenValidationException if you want to fail validation for some reason.

Set the certificateValidationMode to Custom and specify your validator in the clientCertificate service behavior section of the config file.

How to: Create a Service that Employs a Custom Certificate Validator

link|flag
I tried to add custom validator in clientCertificate but it doesn't work. It seems that it is designed to validate client certificate that the service will be using in duplex mode. I need to validate incoming certificate (certificate the client is sending). Have you tried this option in this scenario? – empi Oct 13 at 12:54
This can work on either the client or service side and is used to validate the incoming message certificate. – Maurice Oct 13 at 12:57
Make sure you add this to the <serviceBehaviors> to validate the client in the service which is what you want. The <endpointBehaviors> is used only on the client to validate the service. – Maurice Oct 13 at 13:00
I've added my configuration. Do you need any more information? – empi Oct 13 at 13:07
The part of the config you added seems correct. However you didn't add your actual service configuration. so please check if you are actually using "SomeServiceBehavior" with your service. It's happened to me quit a few times that I create a service behavior but forgot to add it to my service. – Maurice Oct 13 at 13:24
show 12 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.