Our .net WCF Client, the WebRequest call, compiled to a windows EXE refuses to connect to a web server that surfaces ONLY SSL2. client exe is NET 4.5.2 framework based and being called from a server which comprised TLS1.2 only. Something just opposite to How do I disable SSL fallback and use only TLS for outbound connections in .NET? (Poodle mitigation)
my below .net 4.5.2 based code have no option to call with ssl2
ServicePointManager.SecurityProtocol = System.Net.SecurityProtocolType.Tls11 | System.Net.SecurityProtocolType.Ssl3 | System.Net.SecurityProtocolType.Tls | System.Net.SecurityProtocolType.Tls12;
Not sure how to get rid with this. Please please help me. As wcf client I am calling from an app server and I can't change app server to make it SSL2 comprised. If I will make it SSL2 comprised, I know call will be done but app server applications security will be a problem. So, as a work around I need to just change a bit of code in my client application only not for the app server