e3ddebfea4
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); } |
||
---|---|---|
Controller | ||
Converter | ||
DependencyInjection | ||
EventListener | ||
Resources | ||
ServiceBinding | ||
ServiceDefinition | ||
Soap | ||
Tests | ||
Util | ||
.gitignore | ||
BeSimpleSoapBundle.php | ||
CONTRIBUTORS.markdown | ||
Cache.php | ||
README.markdown | ||
WebServiceContext.php | ||
composer.json | ||
phpunit.xml.dist | ||
vendors.php |
README.markdown
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.