2011-10-09 20:17:50 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This file is part of the BeSimpleSoapBundle.
|
|
|
|
*
|
|
|
|
* (c) Christian Kerl <christian-kerl@web.de>
|
|
|
|
* (c) Francis Besset <francis.besset@gmail.com>
|
|
|
|
*
|
|
|
|
* This source file is subject to the MIT license that is bundled
|
|
|
|
* with this source code in the file LICENSE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace BeSimple\SoapClient;
|
|
|
|
|
2017-02-03 15:22:37 +01:00
|
|
|
use BeSimple\SoapBundle\Cache;
|
|
|
|
use BeSimple\SoapClient\SoapOptions\SoapClientOptions;
|
2016-10-27 16:24:44 +02:00
|
|
|
use BeSimple\SoapCommon\SoapOptions\SoapOptions;
|
2017-02-03 15:22:37 +01:00
|
|
|
use Exception;
|
|
|
|
use SoapHeader;
|
2011-10-09 20:17:50 +02:00
|
|
|
|
|
|
|
/**
|
2016-10-27 16:24:44 +02:00
|
|
|
* Provides a SoapClient instance.
|
2011-12-18 13:03:07 +01:00
|
|
|
*
|
2011-10-09 20:17:50 +02:00
|
|
|
* @author Francis Besset <francis.besset@gmail.com>
|
2011-10-10 00:40:21 +02:00
|
|
|
* @author Christian Kerl <christian-kerl@web.de>
|
2017-02-03 15:22:37 +01:00
|
|
|
* @author Petr Bechyně <mail@petrbechyne.com>
|
2011-10-09 20:17:50 +02:00
|
|
|
*/
|
2016-10-27 16:24:44 +02:00
|
|
|
class SoapClientBuilder
|
2011-10-09 20:17:50 +02:00
|
|
|
{
|
2016-10-27 16:24:44 +02:00
|
|
|
public function build(SoapClientOptions $soapClientOptions, SoapOptions $soapOptions)
|
2011-10-10 00:40:21 +02:00
|
|
|
{
|
2017-02-03 15:22:37 +01:00
|
|
|
$cache = new Cache($soapOptions);
|
|
|
|
$cache->validateSettings($soapOptions);
|
|
|
|
|
2016-10-27 16:24:44 +02:00
|
|
|
return new SoapClient(
|
|
|
|
$soapClientOptions,
|
|
|
|
$soapOptions
|
2011-10-10 00:40:21 +02:00
|
|
|
);
|
2011-10-10 00:21:23 +02:00
|
|
|
}
|
2017-02-03 15:22:37 +01:00
|
|
|
|
|
|
|
public function buildWithSoapHeader(
|
|
|
|
SoapClientOptions $soapClientOptions,
|
|
|
|
SoapOptions $soapOptions,
|
|
|
|
SoapHeader $soapHeader
|
|
|
|
) {
|
|
|
|
$soapClient = $this->build($soapClientOptions, $soapOptions);
|
|
|
|
if ($soapClient->__setSoapHeaders($soapHeader) === false) {
|
|
|
|
throw new Exception(
|
|
|
|
'Could not set SoapHeader: '.var_export($soapHeader, true)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $soapClient;
|
|
|
|
}
|
2014-08-18 10:31:20 +02:00
|
|
|
}
|