79 lines
3.9 KiB
XML
79 lines
3.9 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<container xmlns="http://symfony.com/schema/dic/services"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://symfony.com/schema/dic/services http://symfony.com/schema/dic/services/services-1.0.xsd">
|
|
|
|
<parameters>
|
|
<parameter key="webservice.file_locator.class">Symfony\Component\HttpKernel\Config\FileLocator</parameter>
|
|
|
|
<parameter key="webservice.cache_dir">%kernel.cache_dir%/webservice</parameter>
|
|
</parameters>
|
|
|
|
<services>
|
|
<service id="webservice.controller" class="Bundle\WebServiceBundle\Controller\SoapWebServiceController">
|
|
<argument type="service" id="service_container" />
|
|
<argument type="service" id="http_kernel" />
|
|
</service>
|
|
|
|
<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>
|
|
|
|
</service>
|
|
|
|
<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" />
|
|
|
|
<service id="webservice.converter.repository" class="Bundle\WebServiceBundle\Converter\ConverterRepository">
|
|
<call method="registerTypeConverterServices">
|
|
<argument type="service" id="service_container" />
|
|
</call>
|
|
</service>
|
|
|
|
<service id="webservice.file_locator" class="%webservice.file_locator.class%" public="false">
|
|
<argument type="service" id="kernel" />
|
|
</service>
|
|
|
|
<!-- TODO: replace with delegating loader -->
|
|
<service id="webservice.definition.loader" alias="webservice.definition.loader.annot_file" />
|
|
|
|
<service id="webservice.definition.loader.annot_file" class="Bundle\WebServiceBundle\ServiceDefinition\Loader\AnnotationFileLoader">
|
|
<tag name="webservice.definition.loader" />
|
|
<argument type="service" id="webservice.file_locator" />
|
|
<argument type="service" id="webservice.definition.loader.annot_class" />
|
|
</service>
|
|
|
|
<service id="webservice.definition.loader.annot_class" class="Bundle\WebServiceBundle\ServiceDefinition\Loader\AnnotationClassLoader">
|
|
<tag name="webservice.definition.loader" />
|
|
<argument type="service" id="webservice.annotations.reader" />
|
|
<argument type="service" id="annotations.configuration_reader" />
|
|
</service>
|
|
|
|
<service id="webservice.definition.dumper.wsdl.rpcliteral" class="Bundle\WebServiceBundle\ServiceDefinition\Dumper\WsdlDumper">
|
|
|
|
</service>
|
|
<!--
|
|
<service id="webservice.definition.dumper.wsdl.documentwrapped" class="">
|
|
|
|
</service>
|
|
-->
|
|
</services>
|
|
</container>
|