Commit Graph

148 Commits

Author SHA1 Message Date
Francis Besset 32259355d6 Deleted SoapServerFactory and used BeSimple\SoapServer\SoapServerBuilder to build the SoapServer 2011-10-12 22:01:50 +02:00
Francis Besset 70a85460c9 Used BeSimple\SoapCommon\Classmap for the webservice context 2011-10-12 21:08:59 +02:00
Francis Besset 4a7ec164e5 Updated Cache class 2011-10-11 22:41:32 +02:00
Francis Besset d3c31116c7 Replaced soap.client by soap.client.builder 2011-10-10 22:19:43 +02:00
Francis Besset 6d2e9d7634 Added user_agent option 2011-10-08 22:04:18 +02:00
Francis Besset 1d9bd2cdd3 Added besimple.soap.classmap service 2011-10-08 18:03:27 +02:00
Francis Besset 94a8a8fec1 Updated SoapClient definition 2011-10-08 12:41:47 +02:00
Francis Besset ec3866d5d1 Merge remote-tracking branch 'origin/master' into client 2011-09-22 00:18:34 +02:00
Francis Besset edee6a4c72 [Doc] Updated header tutorial to specify global headers functionality 2011-09-22 00:16:11 +02:00
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
Francis Besset 33d1e4031c Fixed issue #10 2011-09-14 22:08:46 +02:00
Francis Besset a0a92dd1b4 Added fixtures files 2011-09-13 21:34:39 +02:00
Francis Besset 48a7e1c991 Merge remote-tracking branch 'origin/master' into client 2011-09-13 21:19:20 +02:00
Francis Besset 3de0636bb8 Used TypeConverterCollection::getTypemap() to build the typemap for SoapServer 2011-09-13 21:08:33 +02:00
Francis Besset 95c08c6edf Used converters of BeSimpleSoapCommon for SoapClient 2011-09-13 20:50:16 +02:00
Francis Besset 864cf22895 Used converters of BeSimple\SoapCommon for SoapServer 2011-09-13 20:47:35 +02:00
Francis Besset ecc3ec3c93 Updated besimple.soap.client service 2011-09-10 19:39:14 +02:00
Francis Besset 154863cc84 Prevent infinite recursion in RpcLiteralRequestMessageBinder 2011-09-08 21:25:45 +02:00
Francis Besset 08c51aebcf Fixed typo 2011-09-08 21:24:40 +02:00
Francis Besset 4850f782d5 Updated RpcLiteralResponseMessageBinder to prevent infinite recursion 2011-09-08 20:44:06 +02:00
Francis Besset ade1584448 Fixed issue #8 2011-09-08 20:42:09 +02:00
Francis Besset 294058a59c Added namespace option in client definition 2011-09-04 23:43:20 +02:00
Francis Besset 4e33819eca Added cache_type option for soap server definition 2011-09-04 12:59:19 +02:00
Francis Besset b1da32bc97 Renamed client cache_wsdl option to cache_type 2011-09-04 12:24:51 +02:00
Francis Besset 2ea1704a1e Added the possibility to choice an other type cache for a client 2011-09-04 02:42:53 +02:00
Francis Besset 1a4e9246db Added besimple.soap.cache service 2011-09-04 01:59:32 +02:00
Francis Besset 502ba41935 Updated namespace for soap client 2011-09-04 00:48:45 +02:00
Francis Besset 17fdd64489 Added soap client 2011-09-04 00:47:45 +02:00
Francis Besset e9864b1d02 Deleted unused namespace and added PHPDoc on ServiceBinder 2011-09-01 21:15:40 +02:00
Francis Besset faf8b58108 Fixed error if an array is empty in RpcLiteralRequestMessageBinder 2011-09-01 20:18:28 +02:00
Francis Besset 958efd3431 Replaced QName->getNamespace() by ServiceDefinition->getNamespace() for headers 2011-09-01 19:40:44 +02:00
Francis Besset 57b35c5e62 [Doc] Added types available 2011-08-29 22:20:24 +02:00
Francis Besset c18cede7ab Added xsd:date type and DateTypeConverter 2011-08-29 21:41:59 +02:00
Francis Besset b4da2f727e Added besimple.soap.response service
It is highly recommended not to instantiate BeSimple\SoapBundle\Soap\SoapResponse
but to use the service besimple.soap.response

Before:

    public function helloAction($name)
    {
        return new SoapResponse("Hello ".$name);
    }

After:

    public function helloAction($name)
    {
        return $this
            ->container
            ->get('besimple.soap.response')
            ->setReturnValue("Hello ".$name)
        ;
    }
2011-08-27 22:56:51 +02:00
Francis Besset d4662ffe20 Updated RpcLiteralRequestMessageBinderTest 2011-08-27 22:12:38 +02:00
Francis Besset 3141adcfad Fixed namespace 2011-08-27 18:09:48 +02:00
Francis Besset db4c599af6 Use DOMDocument to retrieve the value in DateTimeTypeConverter 2011-08-27 18:07:30 +02:00
Francis Besset ce5c46408a Fixed issue #5 2011-08-26 23:39:43 +02:00
Christian Kerl 6290ea268a created DIC configuration for TypeConverter implementations and ConverterRepository 2011-08-26 22:22:32 +02:00
Christian Kerl f62a8bdd67 added compiler pass to register TypeConverter implementations in ConverterRepository 2011-08-26 22:22:17 +02:00
Christian Kerl 5d8d7b4ad5 added default type mapping from DateTime to xsd:dateTime 2011-08-26 22:22:02 +02:00
Christian Kerl 8bc2d1aa20 added TypeConverter for PHP's DateTime to XML's dateTime 2011-08-26 22:21:51 +02:00
Christian Kerl a256288a23 removed unused method 2011-08-26 22:20:32 +02:00
Christian Kerl 2dd65d2aca fixed fixture path in unit test 2011-08-26 22:19:51 +02:00
Francis Besset c154463b33 Updated definition of ComplexType and use classmap option of SoapServer
Please to refer to the documentation for the changes:
http://besim.pl/SoapBundle/tutorial/complex_type.html
2011-08-24 23:36:49 +02:00
Francis Besset 51a36dfb87 Merge remote-tracking branch 'origin/request_headers' 2011-08-17 08:35:49 +02:00
Francis Besset 9f7ff62449 Check if a value is null in RpcLiteralRequestMessageBinder 2011-08-16 21:06:10 +02:00
Francis Besset 0368461b12 Fixed typo 2011-08-16 20:41:14 +02:00
Francis Besset bf2f88aa05 Added message exception if the "setter" is not specified to hydrate a complex type. 2011-08-16 21:18:44 +03:00
Francis Besset d38e0c03b7 Fixed typo in webservice services definition 2011-08-16 20:06:24 +03:00