I'm using the SoftLayer PHP library to make SoftLayer API call to from a shell script.
I got the following error when invoking
SoftLayer_SoapClient::getClient ( "SoftLayer_Product_Package", $pakagekey, $userName, $apiKey );
There was an error querying the SoftLayer API: Could not connect to host ERROR | | SOAP-ERROR: Parsing Schema: can't import schema from 'https://api.softlayer.com/soap/v3/SoftLayer_Product_Package?xsd' ERROR | PHP | ERR 1 with message SOAP-ERROR: Parsing Schema: can't import schema from 'https://api.softlayer.com/soap/v3/SoftLayer_Product_Package?xsd' in /softlayer/SoftLayer/SoapClient.class.php:262
The SoapClient.class.php 262 has
$soapClient = new SoftLayer_SoapClient($endpointUrl . $serviceName . '?wsdl');
Any idea why I'm getting this error?