Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/contributte/nusoap
:smirk: Fixed NuSOAP for PHP 5.6 - 8.2
https://github.com/contributte/nusoap
http library nusoap php soap
Last synced: about 17 hours ago
JSON representation
:smirk: Fixed NuSOAP for PHP 5.6 - 8.2
- Host: GitHub
- URL: https://github.com/contributte/nusoap
- Owner: contributte
- Created: 2016-03-01T09:36:38.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2024-11-20T17:16:01.000Z (about 1 month ago)
- Last Synced: 2024-12-27T06:00:09.677Z (about 17 hours ago)
- Topics: http, library, nusoap, php, soap
- Language: PHP
- Homepage: https://f00b4r.github.io/nusoap/
- Size: 950 KB
- Stars: 322
- Watchers: 23
- Forks: 358
- Open Issues: 55
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
NuSOAP
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.
🕹 f3l1x.io | 💻 f3l1x | 🐦 @xf3l1x
All credits belongs to official authors, take a look at sourceforge.net/projects/nusoap/-----
## Info
- Supported PHP: [5.4 - 8.2](https://packagist.org/packages/econea/nusoap)
- Official project: https://sourceforge.net/projects/nusoap/## Installation
To install this library use [Composer](https://getcomposer.org/).
```
composer require econea/nusoap
```## Usage
```php
// 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);
```## Development
See [how to contribute](https://contributte.org/contributing.html) to this package.
This package is currently maintained by these authors.
-----
Consider to [support](https://github.com/sponsors/f3l1x) **f3l1x**. Also thank you for using this package.