BeSimpleSoap/Resources/doc
Francis Besset e3ddebfea4 Added SoapResponseListener
This listener allow return a raw result from the action.

Before:
    /**
     * @Soap\Method("hello")
     * @Soap\Param("name", phpType = "string")
     * @Soap\Result(phpType = "string")
     */
    public function helloAction($name)
    {
        return $this->container->get('besimple.soap.response')->setReturnValue(sprintf('Hello %s!', $name));
    }

After:
    /**
     * @Soap\Method("hello")
     * @Soap\Param("name", phpType = "string")
     * @Soap\Result(phpType = "string")
     */
    public function helloAction($name)
    {
        return sprintf('Hello %s!', $name);
    }
2013-02-20 14:45:47 +01:00
..
_static Added RST documentation 2011-08-02 23:27:56 +02:00
soapserver Added SoapResponseListener 2013-02-20 14:45:47 +01:00
cache.rst [Doc] Updated cache documentation 2011-11-13 22:51:29 +01:00
conf.py Added RST documentation 2011-08-02 23:27:56 +02:00
index.rst [Doc] Global update 2011-11-13 22:40:42 +01:00
installation.rst Fixed git URLs for the deps file 2012-11-15 10:34:29 +01:00