ecocentricenergy/nusoap-bundle

Symfony2 bundle for NuSOAP - SOAP Toolkit for PHP

v1.0 2016-06-10 02:59 UTC

This package is not auto-updated.

Last update: 2019-08-04 12:29:19 UTC


README

Symfony2 bundle for NuSOAP - SOAP Toolkit for PHP.

Latest Stable Version Total Downloads Latest Unstable Version Build Status License

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'));