BeSimpleSoap/src/BeSimple/SoapServer/SoapServerBuilder.php

50 lines
1.4 KiB
PHP
Raw Normal View History

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;
use BeSimple\SoapCommon\SoapOptions\SoapOptions;
use BeSimple\SoapServer\SoapOptions\SoapServerOptions;
2011-10-09 19:41:56 +02:00
/**
* SoapServerBuilder provides a SoapServer instance from SoapServerOptions and SoapOptions.
2011-10-09 19:41:56 +02:00
*
* @author Petr Bechyně <petr.bechyne@vodafone.com>
2011-10-09 19:41:56 +02:00
*/
class SoapServerBuilder
2011-10-09 19:41:56 +02:00
{
/**
* Builds a SoapServer instance.
*
* @param SoapServerOptions $soapServerOptions
* @param SoapOptions $soapOptions
*
* @return SoapServer
*/
public function build(SoapServerOptions $soapServerOptions, SoapOptions $soapOptions)
2011-10-09 19:41:56 +02:00
{
use_soap_error_handler($soapServerOptions->isErrorReporting());
2011-10-09 19:41:56 +02:00
$server = new SoapServer($soapServerOptions, $soapOptions);
if ($soapServerOptions->hasPersistence()) {
$server->setPersistence($soapServerOptions->getPersistence());
}
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;
}
}