Could not establish secure channel for SSL/TLS for SOAP call

后端 未结 3 1498
执念已碎
执念已碎 2021-01-04 18:59

Our core server is calling out to a soap web service over https on a number of different servers to confirm that a transaction has completed.

The code is dotnet 3.5

3条回答
  •  傲寒
    傲寒 (楼主)
    2021-01-04 19:45

    On the client side, try:

    ServicePointManager.Expect100Continue = true;
    ServicePointManager.SecurityProtocol = SecurityProtocolType.Ssl3;
    

提交回复
热议问题