Avatar of Starr Duskk
Starr Duskk
Flag for United States of America

asked on 

SecurityProtocol and 500 server error

I'm confirming on the ServicePointManager...

https://docs.microsoft.com/en-us/dotnet/api/system.net.servicepointmanager?view=netframework-4.7.2

That if I use this with an HttpWebRequest, it will require one of these protocols:
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12 Or System.Net.SecurityProtocolType.Ssl3 Or System.Net.SecurityProtocolType.Tls

Open in new window


When we send XML to the client, it is erroring with a 500 server error, and I suspect it is because, as I was just informed, that they haven't configured the TLS12 yet.

If I have that protocol set prior to sending our HttpWebRequest, will it cause a 500 server error if they don't have it configured?

Thanks!
ASP.NET

Avatar of undefined
Last Comment
Starr Duskk

8/22/2022 - Mon