In .net client to enable TLS1.x programatically: // Default Protocols are Ssl3 | Tls. This is changed to support Zuora's TLS 1.1 rollout
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls | SecurityProtocolType.Tls11 | SecurityProtocolType.Tls12; OR with a registry hack (source http://stackoverflow.com/questions/28286086/default-securityprotocol-in-net-4-5/28502562#28502562 😞 Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\.NETFramework\v4.0.30319]
"SchUseStrongCrypto"=dword:00000001
[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\.NETFramework\v4.0.30319]
"SchUseStrongCrypto"=dword:00000001
... View more