Skip to content

Latest commit

 

History

History
69 lines (49 loc) · 2.15 KB

README.md

File metadata and controls

69 lines (49 loc) · 2.15 KB

NoiselabsNuSOAP

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