Я хочу проверить клиентские сертификаты в моей службе WCF.
Моя цель - разрешить только клиентам с сертификатами с определенными отпечатками иметь возможность общаться с моим сервисом.
Мой сервис WCF размещен в IIS, я использую basicHttpBinding и security mode = "transport" с типом удостоверения "Certificate". IIS требует клиентские сертификаты для связи со службой.
Заранее спасибо за помощь.
UPDATE:
Моя конфигурация:
<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>
Поведение:
<serviceBehaviors>
<behavior name="SomeServiceBehavior">
<serviceMetadata httpsGetEnabled="true" />
<serviceDebug includeExceptionDetailInFaults="true" />
<serviceCredentials>
<clientCertificate>
<authentication certificateValidationMode="Custom" customCertificateValidatorType="SomeService.CustomCertificateValidator,SomeService" />
</clientCertificate>
</serviceCredentials>
</behavior>
</serviceBehaviors>
Сервисная конфигурация:
<service
behaviorConfiguration="SomeServiceBehavior"
name="SomeService">
<endpoint
address=""
binding="basicHttpBinding"
bindingConfiguration="testBinding"
contract="ISomeService">
</endpoint>
</service>
И для целей тестирования я реализовал валидатор следующим образом:
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");
}
}
И это не работает. Я могу подключиться к своему сервису с любым действующим сертификатом.