Commit Graph

5 Commits

Author SHA1 Message Date
Francis Besset 0f86292fcb [Doc] Fixed typo 2011-09-24 13:44:10 +03:00
Francis Besset edee6a4c72 [Doc] Updated header tutorial to specify global headers functionality 2011-09-22 00:16:11 +02:00
Francis Besset 958efd3431 Replaced QName->getNamespace() by ServiceDefinition->getNamespace() for headers 2011-09-01 19:40:44 +02:00
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
Francis Besset edf2f9f011 [Doc] Added header tutorial 2011-08-14 18:32:35 +02:00