.Net sdk broken against sandbox due to disabling TLS 1.0
Wednesday, November 15, 2017 at 10:50amAccording to the comment in this thread from the REST forum, Harris indicates that ESL turned off support for TLS 1.0 this week. This breaks the .Net SDK default implementation because that solution targets .Net 4.5. The fix against the current executable of the SDK is to add the following line when configuring your RslClient:
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;I wonder if it makes sense to a) update the SDK to target 4.6.1 instead of 4.5 and/or b) add this call inside of the SDK itself?
Reply to: .Net sdk broken against sandbox due to disabling TLS 1.0
Wednesday, November 15, 2017 at 10:54amReply to: .Net sdk broken against sandbox due to disabling TLS 1.0
Wednesday, November 15, 2017 at 11:04amReply to: .Net sdk broken against sandbox due to disabling TLS 1.0
Wednesday, November 15, 2017 at 11:06amReply to: .Net sdk broken against sandbox due to disabling TLS 1.0
Wednesday, November 15, 2017 at 11:09amReply to: .Net sdk broken against sandbox due to disabling TLS 1.0
Wednesday, November 15, 2017 at 11:16amReply to: .Net sdk broken against sandbox due to disabling TLS 1.0
Thursday, November 16, 2017 at 04:00pmReply to: .Net sdk broken against sandbox due to disabling TLS 1.0
Friday, November 17, 2017 at 04:03am