2010-10-04 20:27:00 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2011-04-07 21:49:01 +02:00
|
|
|
<container xmlns="http://symfony.com/schema/dic/services"
|
2010-10-04 20:27:00 +02:00
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2011-04-07 21:49:01 +02:00
|
|
|
xsi:schemaLocation="http://symfony.com/schema/dic/services http://symfony.com/schema/dic/services/services-1.0.xsd">
|
2010-10-04 20:27:00 +02:00
|
|
|
|
2010-10-04 21:13:45 +02:00
|
|
|
<parameters>
|
2011-04-07 21:49:01 +02:00
|
|
|
<parameter key="webservice.cache_dir">%kernel.cache_dir%/webservice</parameter>
|
2010-10-04 21:13:45 +02:00
|
|
|
</parameters>
|
|
|
|
|
2011-03-26 16:23:44 +01:00
|
|
|
<services>
|
2011-04-07 21:49:01 +02:00
|
|
|
<service id="webservice.controller" class="Bundle\WebServiceBundle\Controller\SoapWebServiceController">
|
|
|
|
<argument type="service" id="service_container" />
|
2011-03-26 16:23:44 +01:00
|
|
|
<argument type="service" id="http_kernel" />
|
2010-10-05 21:44:30 +02:00
|
|
|
</service>
|
2010-10-08 14:24:42 +02:00
|
|
|
|
2011-04-07 21:49:01 +02:00
|
|
|
<service id="webservice.context" class="Bundle\WebServiceBundle\WebServiceContext" abstract="true">
|
|
|
|
<argument type="service" id="webservice.definition.loader"/>
|
|
|
|
<argument type="service" id="webservice.definition.dumper.wsdl"/>
|
|
|
|
<argument type="service" id="webservice.converter.repository"/>
|
|
|
|
<argument type="service" id="webservice.binder.request"/>
|
|
|
|
<argument type="service" id="webservice.binder.response"/>
|
|
|
|
<argument type="collection">
|
|
|
|
<!--
|
|
|
|
<argument key="name">%webservice.name%</argument>
|
|
|
|
<argument key="namespace">%webservice.namespace%</argument>
|
|
|
|
|
|
|
|
<argument key="resource">%webservice.resource%</argument>
|
|
|
|
<argument key="resource_type">%webservice.resource_type%</argument>
|
|
|
|
-->
|
|
|
|
<argument key="cache_dir">%webservice.cache_dir%</argument>
|
|
|
|
</argument>
|
2010-10-08 14:24:42 +02:00
|
|
|
</service>
|
|
|
|
|
2011-04-07 21:49:01 +02:00
|
|
|
<service id="webservice.binder.request.rpcliteral" class="Bundle\WebServiceBundle\ServiceBinding\RpcLiteralRequestMessageBinder" />
|
|
|
|
<service id="webservice.binder.response.rpcliteral" class="Bundle\WebServiceBundle\ServiceBinding\RpcLiteralResponseMessageBinder" />
|
|
|
|
<service id="webservice.binder.request.documentwrapped" class="Bundle\WebServiceBundle\ServiceBinding\DocumentLiteralWrappedRequestMessageBinder" />
|
|
|
|
<service id="webservice.binder.response.documentwrapped" class="Bundle\WebServiceBundle\ServiceBinding\DocumentLiteralWrappedResponseMessageBinder" />
|
2011-02-03 01:07:08 +01:00
|
|
|
|
2010-12-30 02:18:10 +01:00
|
|
|
<service id="webservice.converter.repository" class="Bundle\WebServiceBundle\Converter\ConverterRepository">
|
|
|
|
<call method="registerTypeConverterServices">
|
|
|
|
<argument type="service" id="service_container" />
|
|
|
|
</call>
|
|
|
|
</service>
|
2011-04-07 21:49:01 +02:00
|
|
|
<!--
|
|
|
|
<service id="webservice.definition.loader" class="">
|
|
|
|
|
2010-10-07 15:16:56 +02:00
|
|
|
</service>
|
2011-04-07 21:49:01 +02:00
|
|
|
-->
|
|
|
|
<service id="webservice.definition.dumper.wsdl.rpcliteral" class="Bundle\WebServiceBundle\ServiceDefinition\Dumper\WsdlDumpler">
|
|
|
|
|
2010-10-07 15:16:56 +02:00
|
|
|
</service>
|
2011-04-07 21:49:01 +02:00
|
|
|
<!--
|
|
|
|
<service id="webservice.definition.dumper.wsdl.documentwrapped" class="">
|
|
|
|
|
|
|
|
</service>
|
|
|
|
-->
|
2010-10-04 21:13:45 +02:00
|
|
|
</services>
|
2011-03-26 16:23:44 +01:00
|
|
|
</container>
|