ecocentricenergy / nusoap-bundle
Symfony2 bundle for NuSOAP - SOAP Toolkit for PHP
This package's canonical repository appears to be gone and the package has been frozen as a result.
Installs: 327
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 7
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=5.3.3
- ecocentricenergy/nusoap: *
- symfony/framework-bundle: ^2.0 || ^3.0
Requires (Dev)
- phpunit/phpunit: ~4.0
This package is not auto-updated.
Last update: 2019-08-04 12:29:19 UTC
README
Symfony2 bundle for NuSOAP - SOAP Toolkit for PHP.
Requirements
Installation (Composer)
0. Install Composer
If you don't have Composer yet, download it following the instructions on http://getcomposer.org/ or just run the following command:
curl -s http://getcomposer.org/installer | php
1. Download the Bundle
Open a command console, enter your project directory and execute the following command to download the latest stable version of this bundle:
$ composer require noiselabs/nusoap-bundle
2. Enable the Bundle
Then, enable the bundle by adding the following line in the app/AppKernel.php file of your project:
// app/AppKernel.php class AppKernel extends Kernel { public function registerBundles() { $bundles = array( // ... new NoiseLabs\Bundle\NuSOAPBundle\NoiseLabsNuSOAPBundle(), ); // ... } }
Usage
$client = new \nusoap_client('http://example.com/url/to/some/valid.wsdl', true); $response = $client->call('someSOAPMethod', array('param1'=>'foo', 'param2'=>'bar'));