I'm trying to use an external webservice but I get the error Parsing Schema: can't import schema from webservice_url
. The service uses HTTP Basic authentication and is using SSL. I can login via a web browser and see the xml it produces but I can't change what is generated since it is not my code generating the xml. I have the following code.
$config = array('login' => $user_id, 'password' => $password);
$client = new SoapClient($url, $config);