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

后端 未结 3 1491
执念已碎
执念已碎 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:32

    This turned out to be an interaction between the production "core" server (the one calling the service) and the destination server (hosting the service) not sharing an acceptable https algorithm. wfetch was extremely helpful in diagnosing the issue.

    It turned out the destination server was not set up to accept TLS 1.0, only SSL 3.0 was accepted.

    Apparently, something changed in Windows 2008 Server which means that outbound https connections would only be acceptable using TLS 1.0 (or better, presumably).

    In our case, the problem was resolved when the configuration on the destination server was changed to accept TLS. It feels like there should be a way to alter my program to force it to use SSL but I haven't found it.

提交回复
热议问题