我们得到以下错误;
The request was aborted: Could not create SSL/TLS secure channel
在使用WebRequest
对象发出HTTPS
请求时。有趣的是,这只会在一段时间后发生,并且在应用程序重新启动时暂时固定,这表明某些东西正在被填满或其他东西。
有没有人见过这种东西?
我们得到以下错误;
The request was aborted: Could not create SSL/TLS secure channel
在使用WebRequest
对象发出HTTPS
请求时。有趣的是,这只会在一段时间后发生,并且在应用程序重新启动时暂时固定,这表明某些东西正在被填满或其他东西。
有没有人见过这种东西?
我似乎记得去年遇到过这个问题。我怀疑您没有正确关闭您的 WebRequest 对象,这就是为什么在使用一定数量后它不允许您创建任何新连接的原因。
我有完全一样的问题!我在近距离(秒)内向 HTTPS Web 服务发送了两个申请。第一次申请工作正常,但第二次申请失败。
我尝试设置“System.Net.ServicePointManager.SecurityProtocol = Net.SecurityProtocolType.Ssl3”,但第二个申请冻结...
我正在使用 VB.NET 2008。
谢谢
看起来它可能是一个 Conenction: Keep-alive 事情:http: //blogs.x2line.com/al/archive/2005/01/04/759.aspx#780
对我来说类似的问题通过以下方式解决:
System.Net.ServicePointManager.SecurityProtocol = System.Net.SecurityProtocolType.Tls12;