yii-diandi/yii2-soap-client

SOAP Client Extension for Yii 2

dev-master 2020-07-22 01:30 UTC

This package is auto-updated.

Last update: 2024-04-22 09:32:58 UTC


README

Note, PHP SOAP extension is required.

Installation

The preferred way to install this extension is through composer.

Either run

composer require --prefer-dist yii-diandi/yii2-soap-client "*"

or add

"diandi/yii2-soap-client": "*"

to the require section of your composer.json file.

Usage

You need to setup soap client application component:

'components' => [
    'siteApi' => [
        'class' => 'diandi\soapclient\Client',
        'url' => 'http://myservice.com/api/hello',
        'options' => [
            'cache_wsdl' => WSDL_CACHE_NONE,
        ],
    ]
    ...
]

or define the client directly in the code:

$client = new \diandi\soapclient\Client([
    'url' => 'http://myservice.com/api/hello',
]);

Example of calling the SOAP function:

$client = Yii::$app->siteApi;
echo $client->getHello('Alex');