we upgraded our php version from 5.4 to 5.6.13 and one of our webservices (soap) does not connect anymore.
We get the following output:
SOAP-ERROR: Parsing WSDL: Couldn't load from 'https://someservice.com?wsdl' : failed to load external entity "https://someservice.com?wsdl
We can curl the webservice from the server and it returns 200 with the xml output. We're not passing any other parameters along with the SoapClient Call:
$wsdl = "https://somservice.com";
$service = new \SoapClient($wsdl . "?wsdl", $params);
Any ideas?