b4da2f727e
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) ; } |
||
---|---|---|
Controller | ||
Converter | ||
DependencyInjection | ||
Resources | ||
ServiceBinding | ||
ServiceDefinition | ||
Soap | ||
Tests | ||
Util | ||
.gitignore | ||
BeSimpleSoapBundle.php | ||
CONTRIBUTORS.markdown | ||
README.markdown | ||
WebServiceContext.php | ||
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.