Go to file
Christian Kerl 1370596779 updated README 2011-04-08 01:19:57 +02:00
Controller wsdl definition can now be retrieved; aligned controller method and route naming; 2011-04-08 00:46:58 +02:00
Converter disabled ConverterRepository::registerTypeConverterServices(), has to be replaced with a compiler pass; 2011-04-08 00:42:20 +02:00
DependencyInjection concrete WebServiceContext services are now defined by DI extension; 2011-04-08 00:45:52 +02:00
Resources wsdl definition can now be retrieved; aligned controller method and route naming; 2011-04-08 00:46:58 +02:00
ServiceBinding refactored code to better separate responsibilities 2011-02-03 01:07:08 +01:00
ServiceDefinition wsdl definition can now be retrieved; aligned controller method and route naming; 2011-04-08 00:46:58 +02:00
Soap SoapServerFactory no longer depends on dumper interface 2011-04-07 21:52:59 +02:00
Tests refactored code to better separate responsibilities 2011-02-03 01:07:08 +01:00
Util refactored code to better separate responsibilities 2011-02-03 01:07:08 +01:00
README.markdown updated README 2011-04-08 01:19:57 +02:00
WebServiceBundle.php implemented basic SoapKernel to transform a SoapRequest to a SoapResponse 2010-10-05 21:44:30 +02:00
WebServiceContext.php wsdl definition can now be retrieved; aligned controller method and route naming; 2011-04-08 00:46:58 +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 and add Zend\Soap library to app/autoload.php

QuickStart

  • Put WebServiceBundle in your src/Bundle dir

  • Enable WebServiceBundle in your app/AppKernel.php

  • 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:
                name:          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
    /**
     * @ws:Method('hello')
     * @ws:Param('name', type = '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 myapp src/Bundle/WebServiceBundle