Added extra option to configure HTTP authentication

This commit is contained in:
Rémi Marseille
2014-04-22 22:05:04 +02:00
parent 9ac755d86e
commit 2ae7515294
2 changed files with 6 additions and 1 deletions

View File

@ -113,6 +113,11 @@ class SoapClient extends \SoapClient
$this->cliWebserverWorkaround = $options['cli_webserver_workaround'];
}
$this->curl = new Curl($options);
if (isset($options['extra_options'])) {
unset($options['extra_options']);
}
$wsdlFile = $this->loadWsdl($wsdl, $options);
// TODO $wsdlHandler = new WsdlHandler($wsdlFile, $this->soapVersion);
$this->soapKernel = new SoapKernel();