BeSimpleSoap/Resources/doc/reference
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
..
configuration.rst Added besimple.soap.response service 2011-08-27 22:56:51 +02:00
installation.rst [Doc] Fixed typo 2011-08-09 14:48:56 +03:00