Commit Graph

390 Commits

Author SHA1 Message Date
Francis Besset db885b2be7 Added KeyValue type 2013-02-27 17:03:38 +01:00
Francis Besset 9b585dedb7 Updated TODO 2013-02-21 10:56:06 +01:00
Francis Besset e0feb94de1 Updated LICENSE file 2013-02-21 10:49:18 +01:00
Francis Besset f44e231368 Updated installation with composer doc 2013-02-21 09:42:43 +01:00
Francis Besset 67adf2e77a Updated phpunit.xml.dist 2013-02-21 08:47:10 +01:00
Francis Besset 03f19a0e61 Refactored SoapWebServiceController 2013-02-21 08:27:36 +01:00
Francis Besset 794d6cf8c2 Used MessageBinder of BeSimpleSoapCommon component 2013-02-21 08:22:55 +01:00
Francis Besset 2b60cec190 Fixed MessageBinder to avoid BC Break 2013-02-21 08:13:40 +01:00
Francis Besset b4900b95c5 Added Util\MessageBinder 2013-02-20 21:58:49 +01:00
Francis Besset a86c680263 Fixed ComplexType strategy 2013-02-20 20:42:08 +01:00
Francis Besset b7d9705891 Added TODO.md file 2013-02-20 20:41:15 +01:00
Francis Besset 3c44c543b1 Renamed CONTRIBUTORS.markdown to CONTRIBUTORS.md 2013-02-20 17:18:03 +01:00
Francis Besset 9e18ef7693 Updated travis file 2013-02-20 17:04:58 +01:00
Francis Besset 9cce7a02e5 Updated composer.json 2013-02-20 16:37:00 +01:00
Francis Besset 6994f7712b Added build status from travis in README 2013-02-20 16:32:51 +01:00
Francis Besset 29ab80c06c Added travis 2013-02-20 16:29:50 +01:00
Francis Besset f5d49a0236 Updated bootsrap tests (use composer for vendors) 2013-02-20 16:25:08 +01:00
Francis Besset 332872443e Renamed README.markdown to README.md 2013-02-20 16:00:12 +01:00
Francis Besset b5fbb9192c Updated doc 2013-02-20 15:58:12 +01:00
Francis Besset 55ae5e7e99 Updated Cache 2013-02-20 15:30:01 +01:00
Francis Besset f26fc4f72a Updated installation doc with Composer 2013-02-20 15:26:26 +01:00
Francis Besset e3ddebfea4 Added SoapResponseListener
This listener allow return a raw result from the action.

Before:
    /**
     * @Soap\Method("hello")
     * @Soap\Param("name", phpType = "string")
     * @Soap\Result(phpType = "string")
     */
    public function helloAction($name)
    {
        return $this->container->get('besimple.soap.response')->setReturnValue(sprintf('Hello %s!', $name));
    }

After:
    /**
     * @Soap\Method("hello")
     * @Soap\Param("name", phpType = "string")
     * @Soap\Result(phpType = "string")
     */
    public function helloAction($name)
    {
        return sprintf('Hello %s!', $name);
    }
2013-02-20 14:45:47 +01:00
Francis Besset 2e34b1ce1d Used new interface for WdslTypeStrategy 2013-02-20 13:43:54 +01:00
Francis Besset 0ee09df973 Fixed zend-(soap|mime) vendors 2013-02-20 11:53:52 +01:00
Francis Besset 833d622093 Merge pull request #55 from tutitututu/master
Fix incompatibility with Symfony 2.1.*
2013-02-12 07:10:39 -08:00
Rekky 030561521e Fix code styling 2013-01-30 22:16:55 +04:00
Francis Besset 655afe5b60 Merge pull request #9 from tutitututu/master
Fix autoload path
2013-01-30 08:26:29 -08:00
ldantunez 1f41d88f8b Update ServiceDefinition/Loader/AnnotationClassLoader.php
Solving Symfony 2.1.* issue with the bundle.
2013-01-30 20:04:00 +04:00
Rekky 66e8de0f94 Fix autoload path 2013-01-30 19:38:53 +04:00
Francis Besset c49afcd7f6 Added .travis.yml 2013-01-16 12:01:18 +01:00
Francis Besset 3bd32c380d Fixed tests 2013-01-16 11:53:33 +01:00
Francis Besset 41301775bf Added composer.json 2013-01-15 22:52:18 +01:00
Francis Besset baa586e268 Added composer.json 2013-01-15 22:51:04 +01:00
Francis Besset 17d0652959 Added composer.json 2013-01-15 22:45:35 +01:00
Francis Besset 127d06fcb9 Added composer.json 2013-01-15 22:45:13 +01:00
Francis Besset 7005a75231 Merge pull request #50 from matthiasnoback/patch-1
Fixed git URLs for the deps file
2012-11-15 01:35:54 -08:00
Matthias Noback 76bd41018e Fixed git URLs for the deps file 2012-11-15 10:34:29 +01:00
Francis Besset 5a88648060 Refactoring of SoapWebServiceController::definitionAction() 2012-08-27 11:44:30 +02:00
Francis Besset 6a4fba600f Added contributors file 2012-08-06 11:15:23 +02:00
Francis Besset 7add8ee159 Merge pull request #8 from Scheb/master
Load schemas only when there is a schemaLocation attribute
2012-08-06 02:01:01 -07:00
Christian Scheb 2a82f02db3 Code formating changes 2012-08-02 10:13:49 +02:00
Francis Besset 4741e142d0 Added Craig Marvelley in contributors file 2012-08-01 09:36:30 +03:00
Francis Besset 3a963b0201 Merge pull request #27 from boxuk/master
Updated code to work with more recent versions of Zend library dependencies
2012-07-31 23:35:26 -07:00
Christian Scheb 5b4f19d032 Schemas should only included when there is a "schemaLocation" attribute 2012-07-31 16:57:35 +02:00
Christian Kerl 8dace85c50 Merge pull request #1 from aschamberger/master
Sync Server with Client and document builder methods
2012-05-22 12:00:33 -07:00
Christian Kerl ef0361df59 Merge pull request #7 from aschamberger/master
Sync Server with Client and fix some coding standard issues
2012-05-22 12:00:29 -07:00
Christian Kerl 51e6f0f689 Merge pull request #7 from aschamberger/master
Sync Server with Client
2012-05-22 12:00:17 -07:00
Andreas Schamberger 587e421dca moved client specific code to SoapClient 2012-04-29 20:26:00 +02:00
Andreas Schamberger 64002c61d2 server interop test 2012-04-29 19:23:46 +02:00
Andreas Schamberger 51a971ed33 added soap client specific soap kernel 2012-04-29 19:23:46 +02:00