2011-10-09 19:41:56 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This file is part of the BeSimpleSoapServer.
|
|
|
|
*
|
|
|
|
* (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\SoapServer;
|
|
|
|
|
2016-10-27 16:24:44 +02:00
|
|
|
use BeSimple\SoapCommon\SoapOptions\SoapOptions;
|
|
|
|
use BeSimple\SoapServer\SoapOptions\SoapServerOptions;
|
2011-10-09 19:41:56 +02:00
|
|
|
|
|
|
|
/**
|
2016-10-27 16:24:44 +02:00
|
|
|
* SoapServerBuilder provides a SoapServer instance from SoapServerOptions and SoapOptions.
|
2011-10-09 19:41:56 +02:00
|
|
|
*
|
2016-10-27 16:24:44 +02:00
|
|
|
* @author Petr Bechyně <petr.bechyne@vodafone.com>
|
2011-10-09 19:41:56 +02:00
|
|
|
*/
|
2016-10-27 16:24:44 +02:00
|
|
|
class SoapServerBuilder
|
2011-10-09 19:41:56 +02:00
|
|
|
{
|
|
|
|
/**
|
2016-10-27 16:24:44 +02:00
|
|
|
* Builds a SoapServer instance.
|
2012-04-21 20:32:02 +02:00
|
|
|
*
|
2016-10-27 16:24:44 +02:00
|
|
|
* @param SoapServerOptions $soapServerOptions
|
|
|
|
* @param SoapOptions $soapOptions
|
2012-04-21 20:32:02 +02:00
|
|
|
*
|
2016-10-27 16:24:44 +02:00
|
|
|
* @return SoapServer
|
2012-04-21 20:32:02 +02:00
|
|
|
*/
|
2016-10-27 16:24:44 +02:00
|
|
|
public function build(SoapServerOptions $soapServerOptions, SoapOptions $soapOptions)
|
2011-10-09 19:41:56 +02:00
|
|
|
{
|
2016-10-27 16:24:44 +02:00
|
|
|
use_soap_error_handler($soapServerOptions->isErrorReporting());
|
2011-10-09 19:41:56 +02:00
|
|
|
|
2016-10-27 16:24:44 +02:00
|
|
|
$server = new SoapServer($soapServerOptions, $soapOptions);
|
|
|
|
if ($soapServerOptions->hasPersistence()) {
|
|
|
|
$server->setPersistence($soapServerOptions->getPersistence());
|
2011-10-12 21:57:00 +02:00
|
|
|
}
|
2016-10-27 16:24:44 +02:00
|
|
|
if ($soapServerOptions->hasHandlerClass()) {
|
|
|
|
$server->setClass($soapServerOptions->getHandlerClass());
|
|
|
|
} else if ($soapServerOptions->hasHandlerObject()) {
|
|
|
|
$server->setObject($soapServerOptions->getHandlerObject());
|
2011-10-09 19:41:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return $server;
|
|
|
|
}
|
2016-10-27 16:24:44 +02:00
|
|
|
}
|