Go to file
Francis Besset b4a293940a Added Contributors file 2011-07-17 19:46:43 +02:00
Controller some cleanup 2011-07-17 18:15:06 +02:00
Converter added TypeRepository managing all mappings from php to xml types; removed classmap generation from SoapServerFactory, this will be done by TypeRepository::createComplexTypeMap(...); 2011-07-17 19:37:23 +02:00
DependencyInjection added TypeRepository managing all mappings from php to xml types; removed classmap generation from SoapServerFactory, this will be done by TypeRepository::createComplexTypeMap(...); 2011-07-17 19:37:23 +02:00
EventListener The bundle is back! 2011-07-17 10:58:12 +02:00
Resources added TypeRepository managing all mappings from php to xml types; removed classmap generation from SoapServerFactory, this will be done by TypeRepository::createComplexTypeMap(...); 2011-07-17 19:37:23 +02:00
ServiceBinding some cleanup 2011-07-17 18:15:06 +02:00
ServiceDefinition Fixed typo 2011-07-17 19:41:06 +02:00
Soap added TypeRepository managing all mappings from php to xml types; removed classmap generation from SoapServerFactory, this will be done by TypeRepository::createComplexTypeMap(...); 2011-07-17 19:37:23 +02:00
Tests The bundle is back! 2011-07-17 10:58:12 +02:00
Util added TypeRepository managing all mappings from php to xml types; removed classmap generation from SoapServerFactory, this will be done by TypeRepository::createComplexTypeMap(...); 2011-07-17 19:37:23 +02:00
.gitignore Added scripts to run phpunit tests 2011-07-14 17:43:37 +02:00
CONTRIBUTORS.markdown Added Contributors file 2011-07-17 19:46:43 +02:00
README.markdown The bundle is back! 2011-07-17 10:58:12 +02:00
WebServiceBundle.php The bundle is back! 2011-07-17 10:58:12 +02:00
WebServiceContext.php added TypeRepository managing all mappings from php to xml types; removed classmap generation from SoapServerFactory, this will be done by TypeRepository::createComplexTypeMap(...); 2011-07-17 19:37:23 +02:00
phpunit.xml.dist Added scripts to run phpunit tests 2011-07-14 17:43:37 +02:00
vendors.php The bundle is back! 2011-07-17 10:58:12 +02:00

README.markdown

WebServiceBundle

The WebServiceBundle is a Symfony2 bundle to build WSDL and SOAP based web services. It is based on the [ckWebServicePlugin] 1 for symfony.

Requirements

  • Install and enable PHP's SOAP extension

  • Download Zend\Soap

     git submodule add http://github.com/zendframework/zf2.git vendor/zend-framework
    
  • Add Zend\Soap library to app/autoload.php

     // app/autoload.php
     $loader->registerNamespaces(array(
         'Zend\\Soap' => __DIR__.'/../vendor/zend-frameword/library',
         // your other namespaces
     ));
    

QuickStart

  • Put WebServiceBundle in your vendor/bundles/Bundle dir

    git submodule add https://github.com/BeSimple/BeSimpleSoapBundle.git vendor/bundles/WebServiceBundle
    
  • Enable WebServiceBundle in your app/AppKernel.php

    // app/AppKernel.php
    public function registerBundles()
    {
        return array(
            // ...
            new new Bundle\WebServiceBundle\WebServiceBundle(),
            // ...
        );
    }
    
  • Register the Bundle namespace

    // app/autoload.php
    $loader->registerNamespaces(array(
        'Bundle'     => __DIR__.'/../vendor/bundles',
        'Zend\\Soap' => __DIR__.'/../vendor/zend-frameword/library',
        // your other namespaces
    ));
    
  • Include the WebServiceBundle's routing configuration in app/config/routing.yml (you can choose the prefix arbitrarily)

    _ws:
        resource: "@WebServiceBundle/Resources/config/routing/webservicecontroller.xml"
        prefix:   /ws
    
  • Configure your first web service in app/config/config.yml

    web_service:
        services:
            DemoApi:
                namespace:     http://mysymfonyapp.com/ws/DemoApi/1.0/
                binding:       rpc-literal
                resource:      "@AcmeDemoBundle/Controller/DemoController.php"
                resource_type: annotation
    
  • Annotate your controller methods

    // src/Acme/DemoBundle/Controller/DemoController.php
    use Bundle\WebServiceBundle\ServiceDefinition\Annotation\Method;
    use Bundle\WebServiceBundle\ServiceDefinition\Annotation\Param;
    use Bundle\WebServiceBundle\ServiceDefinition\Annotation\Result;
    use Bundle\WebServiceBundle\Soap\SoapResponse;
    
    class DemoController extends Controller
    {
        /**
         * @Method("Hello")
         * @Param("name", phpType = "string")
         * @Result(phpType = "string")
         */
        public function helloAction($name)
        {
            return new SoapResponse(sprintf('Hello %s!', $name));
        }
    }
    
  • Open your web service endpoint

    • http://localhost/app_dev.php/ws/DemoApi - HTML documentation
    • http://localhost/app_dev.php/ws/DemoApi?wsdl - WSDL file

Test

phpunit -c phpunit.xml.dist