这一直困扰着我三天,经过大量的谷歌搜索,我决定发一个问题。我有一个WCF服务应用程序(“本地服务”),它安全地连接到“远程Web服务”(Java)(双向证书身份验证)。
我的服务端配置:
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="IhAdapterPortBinding" closeTimeout="00:01:00"
openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"
maxBufferSize="65536" maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered"
useDefaultWebProxy="true">
<readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
maxBytesPerRead="4096" maxNameTableCharCount="16384" />
<security mode="Transport">
<transport clientCredentialType="Certificate" proxyCredentialType="None"
realm="" />
<message clientCredentialType="UserName" algorithmSuite="Default" />
</security>
</binding>
</basicHttpBinding>
</bindings>
<client>
<endpoint address="https://someserver.com:8085/IhAdapter" binding="basicHttpBinding"
bindingConfiguration="IhAdapterPortBinding" contract="IHAdapter.IhAdapter"
name="IhAdapterPort" behaviorConfiguration="IHAdapterEndpointBehavior" />
</client>
<services>
<service name="SomeCompany.SomeService">
<endpoint address="" binding="basicHttpBinding"
contract="SomeCompany.ISomeService" />
</service>
</services>
<behaviors>
<endpointBehaviors>
<behavior name="IHAdapterEndpointBehavior">
<clientCredentials>
<clientCertificate storeLocation="LocalMachine" storeName="My" findValue="123...abc" x509FindType="FindByThumbprint"/>
<serviceCertificate>
<authentication certificateValidationMode="None" revocationMode="NoCheck"/>
</serviceCertificate>
</clientCredentials>
</behavior>
</endpointBehaviors>
<serviceBehaviors>
<behavior name="">
<serviceMetadata httpGetEnabled="true" />
<serviceDebug includeExceptionDetailInFaults="true" />
</behavior>
</serviceBehaviors>
</behaviors>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true" />
现在问题。在Visual Studio Web Development Server中托管服务或从本地测试客户端(.exe)调用远程服务时,调用成功。但是当本地服务是IIS托管的(localhost或其他一些服务器IIS)时,我得到例外:
无法为具有权限“https://someserver.com:8085”
的SSL / TLS建立安全通道内部异常:
请求已中止:无法创建SSL / TLS安全通道。
到目前为止我尝试或检查的内容:
还有一件事:当前的远程服务器证书是针对另一个主机名发出的,所以我必须以编程方式覆盖验证。因此,要在本地服务中创建远程服务对象,我有以下代码行:
ServicePointManager.Expect100Continue = true;
ServicePointManager.SecurityProtocol = SecurityProtocolType.Ssl3;
ServicePointManager.ServerCertificateValidationCallback = ((senderParam, certificate, chain, sslPolicyErrors) => true);
IHAdapter.IhAdapterClient ihAdapter = new IHAdapter.IhAdapterClient();
ihAdapter.SomeMethod(parameters); // the exception gets thrown here
我还能错过什么?任何想法,指针?
答案 0 :(得分:4)
好的,回答我自己的问题。
基于此链接:How to give ASP.NET access to a private key in a certificate in the certificate store? 我解决了我的问题。
我的解决方案的关键是这个检查清单:
我几乎肯定做了所有这些事情,但显然从来没有一起完成。希望这有助于其他人。无论如何,谢谢你的帮助。
答案 1 :(得分:0)
我认为所有这些消息都是由于链中的某些机器(客户端,代理服务器,服务器)因某种原因而不“喜欢”证书。
要详细说明twk所说的内容,如果您使用自签名证书或您自己的CA,则需要至少在服务器上的受信任机构存储中安装签名证书,并且可能在代理上安装。 / p>
我遇到的常见问题:
更多访问Could not create SSL/TLS secure channel - Could the problem be a proxy server?