Magento Extensions Rating 2024
EXTENSIONS BY CATEGORY
B2B (Business-To-Business)
Blog
Customer
ERP (Enterprise Resource Planning)
Mega Menu
One Step Checkout
Order
POS (Point Of Sale)
Search
Shopping Cart
Sitemap
SEO
Social
Stock & Inventory Management
EXTENSIONS BY DEVELOPER
aheadWorks
Amasty
Boost My Shop
BSS Commerce
Magestore
MageWorx
Mirasvit
Templates Master
Wyomind
XTENTO
Magento 2 Documentation
Magento 2 Documentation
2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
vendor
magento
module-webapi
Model
Soap
ServerFactory.php
Go to the documentation of this file.
1
<?php
8
namespace
Magento\Webapi\Model\Soap
;
9
10
class
ServerFactory
11
{
16
protected
$_objectManager
;
17
21
protected
$_soapHandler
;
22
29
public
function
__construct
(
30
\
Magento
\Framework\ObjectManagerInterface
$objectManager
,
31
\
Magento
\
Webapi
\Controller\Soap\
Request
\Handler $soapHandler
32
) {
33
$this->_objectManager =
$objectManager
;
34
$this->_soapHandler = $soapHandler;
35
}
36
44
public
function
create
(
$url
,
$options
)
45
{
46
$soapServer = new \SoapServer(
$url
,
$options
);
47
$soapServer->setObject($this->_soapHandler);
48
return
$soapServer;
49
}
50
}
$url
$url
Definition:
query_redirect.php:14
Magento\Webapi\Model\Soap\ServerFactory\__construct
__construct(\Magento\Framework\ObjectManagerInterface $objectManager, \Magento\Webapi\Controller\Soap\Request\Handler $soapHandler)
Definition:
ServerFactory.php:29
$objectManager
$objectManager
Definition:
bootstrap.php:17
Magento\Webapi\Model\Soap\ServerFactory\$_objectManager
$_objectManager
Definition:
ServerFactory.php:16
Magento\Webapi\Model\Soap
Definition:
ConfigTest.php:6
Magento\Framework\Webapi\Request
Definition:
Request.php:18
Magento\Webapi\Model\Soap\ServerFactory\$_soapHandler
$_soapHandler
Definition:
ServerFactory.php:21
Magento
Magento\Webapi\Model\Soap\ServerFactory\create
create($url, $options)
Definition:
ServerFactory.php:44
Magento\Webapi\Model\Soap\ServerFactory
Definition:
ServerFactory.php:10
Magento\Webapi\Model\Cache\Type\Webapi
Definition:
Webapi.php:14
$options
$options
Definition:
multiple_mixed_products.php:29