Friday, 7 June 2019

Making sure SoapClient is sending TLS 1.2 requests in PHP 5.5

We have a site on an old codebase using PHP 5.5 (for now) and one of our integrations we interface with using SoapClient has told us they will be disabling usage of TLS < 1.2 shortly.

Currently our connections are as simple as:

$client = new SoapClient($soap_url);

What do we have to do to make sure only TLS 1.2 requests are sent? I found this answer, but I'm not entirely sure if this still applies to our situation; additionally, not sure we should be forcing Soap 1.1 either?

What are the requirements on our end to make sure we send TLS 1.2 requests?



from Making sure SoapClient is sending TLS 1.2 requests in PHP 5.5

No comments:

Post a Comment