BeSimpleSoap/Resources/config
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
..
routing Replaced Bundle\WebServiceBundle by BeSimple\SoapBundle 2011-07-18 22:43:12 +02:00
converters.xml created DIC configuration for TypeConverter implementations and ConverterRepository 2011-08-26 22:22:32 +02:00
loaders.xml New definition of complex type 2011-07-23 21:24:59 +02:00
webservice.xml Added besimple.soap.response service 2011-08-27 22:56:51 +02:00