Я пытаюсь получить WCF-сервер и клиент взаимно аутентифицируют друг друга, используя SSL-сертификаты на транспортном уровне, используя BasicHttpBinding. Вот как создается сервер:
var soapBinding = new BasicHttpBinding() { Namespace = "http://test.com" };
soapBinding.Security.Mode = BasicHttpSecurityMode.Transport;
soapBinding.Security.Transport.ClientCredentialType =
HttpClientCredentialType.Certificate;
var sh = new ServiceHost(typeof(Service1), uri);
sh.AddServiceEndpoint(typeof(IService1), soapBinding, "");
sh.Credentials.ServiceCertificate.SetCertificate(
StoreLocation.LocalMachine, StoreName.My,
X509FindType.FindBySubjectName, "localhost");
sh.Open();
Вот клиент:
var binding = new BasicHttpBinding();
binding.Security.Mode = BasicHttpSecurityMode.Transport;
var service = new ServiceReference2.Service1Client(binding,
new EndpointAddress("https://localhost:801/Service1"));
service.ClientCredentials.ClientCertificate.SetCertificate(
StoreLocation.LocalMachine, StoreName.My,
X509FindType.FindBySubjectName, "localhost");
service.ClientCredentials.ServiceCertificate.Authentication.
CertificateValidationMode =
System.ServiceModel.Security.X509CertificateValidationMode.PeerTrust;
service.HelloWorld();
Сертификат для localhost находится в личных, доверенных корневых и доверенных сторонних контейнерах. Internet Explorer может подключиться к хосту и увидеть WSDL. Кроме того, вызовы SSL работают нормально с ClientCredentialType = HttpClientCredentialType.None
HelloWorld () завершается с:
System.ServiceModel.Security.MessageSecurityException occurred<br/>
Message="The HTTP request was forbidden with client authentication
scheme 'Anonymous'."
, которое является повторно вызванным исключением из: «Удаленный сервер возвратил ошибку: (403) Запрещено».
как можно выяснить, что происходит в wtf?