将HTTP请求发送到https时发生错误 - >握手失败了

时间:2014-11-05 18:53:38

标签: c# wcf basichttpbinding

我正在使用basicHttpsbinding使用网络服务,如下所示

 EXCClient CreateClient()
    {
        var binding = new System.ServiceModel.BasicHttpsBinding();
        binding.ReaderQuotas.MaxArrayLength = int.MaxValue;
        binding.MaxReceivedMessageSize = int.MaxValue;
        binding.UseDefaultWebProxy = false;
        var endpoint = new System.ServiceModel.EndpointAddress("https://{siteName}/{service}");

        var client = new EXCClient(binding, endpoint);
        return client;
        //return new EXCClient();
    }

使用站点托管在IIS 7.5上,并且在服务器上有多个站点。我正在使用.net表单站点,调用代码如下所示

var x = service.Client.GetResults({parameter});

运行此服务时,将返回大约15分钟的结果,然后开始出现此错误。

  

向https:// {siteName} / {service} /发出HTTP请求时发生错误。这可能是由于在HTTPS情况下未使用HTTP.SYS正确配置服务器证书。这也可能是由客户端和服务器之间的安全绑定不匹配引起的

     

基础连接已关闭:发送时发生意外错误。 ---> System.IO.IOException:由于意外的数据包格式,握手失败。

如果我回收网站的应用程序池,则服务开始再次返回结果大约15分钟,然后再次开始失败。我的应用程序池没有内存限制。

app.config看起来像

<bindings>
    <basicHttpBinding>
        <binding name="BasicHttpBinding_EXC">
            <security mode="Transport" />
        </binding>
        <binding name="BasicHttpBinding_EXC1" />
    </basicHttpBinding>
</bindings>
<client>
    <endpoint address="https://vadrs.tax.utah.gov/vdx/" binding="basicHttpsBinding"
        bindingConfiguration="BasicHttpBinding_EXC" contract="UTVehicleServices.EXC"
        name="BasicHttpBinding_EXC" />
</client>

1 个答案:

答案 0 :(得分:5)

这个问题的答案可以在帖子“How do I disable SSL fallback and use only TLS for outbound connections in .NET? (Poodle mitigation)”中找到。我有其他Web服务调用设置以下代码而没有后退

System.Net.ServicePointManager.SecurityProtocol = System.Net.SecurityProtocolType.Ssl3;

我必须将协议类型设置为TLS,如回答帖中所述。