Go to file
Francis Besset dbeb00eae2 Added the possibility to add headers for a controller
Example:
    <?php

    namespace Acme\DemoBundle\Controller;

    use BeSimple\SoapBundle\ServiceDefinition\Annotation as Soap;
    use Symfony\Component\DependencyInjection\ContainerAware;

    /**
     * @Soap\Header("api_client_id", phpType = "int")
     * @Soap\Header("api_key", phpType = "string")
     */
    class DefaultController extends ContainerAware
    {
        // ...
    }
2011-09-20 22:34:16 +02:00
Controller Added besimple.soap.response service 2011-08-27 22:56:51 +02:00
Converter Added xsd:date type and DateTypeConverter 2011-08-29 21:41:59 +02:00
DependencyInjection created DIC configuration for TypeConverter implementations and ConverterRepository 2011-08-26 22:22:32 +02:00
Resources Replaced QName->getNamespace() by ServiceDefinition->getNamespace() for headers 2011-09-01 19:40:44 +02:00
ServiceBinding Fixed issue #10 2011-09-14 22:08:46 +02:00
ServiceDefinition Added the possibility to add headers for a controller 2011-09-20 22:34:16 +02:00
Soap Replaced QName->getNamespace() by ServiceDefinition->getNamespace() for headers 2011-09-01 19:40:44 +02:00
Tests Added fixtures files 2011-09-13 21:34:39 +02:00
Util Fixed issue #4 2011-08-11 00:59:40 +02:00
.gitignore Replaced webservice.* service name by besimple.soap.* 2011-07-18 22:59:20 +02:00
BeSimpleSoapBundle.php added compiler pass to register TypeConverter implementations in ConverterRepository 2011-08-26 22:22:17 +02:00
CONTRIBUTORS.markdown Added Contributors file 2011-07-17 19:46:43 +02:00
README.markdown Added link to ckWebServicePlugin in README 2011-08-11 11:22:31 +03:00
WebServiceContext.php Updated definition of ComplexType and use classmap option of SoapServer 2011-08-24 23:36:49 +02:00
phpunit.xml.dist Replaced zf2 by zend-soap and zend-mime of BeSimple Repository 2011-08-07 11:33:34 +02:00
vendors.php Replaced zf2 by zend-soap and zend-mime of BeSimple Repository 2011-08-07 11:33:34 +02:00

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.