Francis Besset b4da2f727e Added besimple.soap.response service
It is highly recommended not to instantiate BeSimple\SoapBundle\Soap\SoapResponse
but to use the service besimple.soap.response

Before:

    public function helloAction($name)
    {
        return new SoapResponse("Hello ".$name);
    }

After:

    public function helloAction($name)
    {
        return $this
            ->container
            ->get('besimple.soap.response')
            ->setReturnValue("Hello ".$name)
        ;
    }
2011-08-27 22:56:51 +02:00
2011-08-26 23:39:43 +02:00
2011-08-27 22:56:51 +02:00
2011-08-11 00:59:40 +02:00
2011-07-17 19:46:43 +02:00

BeSimpleSoapBundle

The BeSimpleSoapBundle is a Symfony2 bundle to build WSDL and SOAP based web services. It is based on the ckWebServicePlugin for symfony.

Read about it on its official homepage.

Description
No description provided
Readme 7.9 MiB
Languages
PHP 97.3%
Python 1.6%
Java 0.7%
Shell 0.4%