neutrondev/new-nusoap

New NuSoap

v0.10.1 2021-09-03 10:48 UTC

README

NuSOAP is a rewrite of SOAPx4, provided by NuSphere and Dietrich Ayala. It is a set of PHP classes - no PHP extensions required - that allow developers to create and consume web services based on SOAP 1.1, WSDL 1.1 and HTTP 1.0/1.1.

💻 LeoWare

All credits belongs to official authors, take a look at https://sourceforge.net/projects/nusoap/

68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f6e657574726f6e6465762f6e65772d6e75736f61702e7376673f7374796c653d666c61742d737175617265 68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6e657574726f6e6465762f6e65772d6e75736f61702e7376673f7374796c653d666c61742d737175617265 68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6e657574726f6e6465762f6e65772d6e75736f61702e7376673f7374796c653d666c61742d737175617265

Info

Installation

To install this library use Composer.

composer require neutrondev/new-nusoap

Usage

// Config
$client = new nusoap_client('example.com/api/v1', 'wsdl');
$client->soap_defencoding = 'UTF-8';
$client->decode_utf8 = FALSE;

// Calls
$result = $client->call($action, $data);