【发布时间】:2015-03-14 06:21:55
【问题描述】:
我在我的应用程序中发现了一个问题,这意味着某些东西在不知不觉中(对我而言)发生了变化:
ServicePointManager.SecurityProtocol = SecurityProtocolType.SSl3;
尽管如此,我的 EWS 托管 API 集成似乎已经运行了一段时间,但我现在得到了一致的 WebExceptions:
The request failed. The underlying connection was closed: An unexpected error occurred on a send.
我正在修复我们的应用程序,以确保将 SecurityProtocol 正确设置为 SecurityProtocolType.Tls,但鉴于它是 AppDomain 中的全局设置,因此不是快速修复。
This o365 blog post 建议 Microsoft 计划删除 SSLv3 支持(大概是鉴于 POODLE 漏洞)-但有人知道最近是否有影响 EWS 中 SSLv3 支持的更改?
【问题讨论】:
标签: ssl .net-4.0 exchangewebservices ews-managed-api