Commit Graph

45 Commits

Author SHA1 Message Date
Francis Besset fd5154a469 Fixed typo 2013-12-10 15:25:09 +01:00
Francis Besset 1b4e262c60 [SoapBundle] Simplified conditional statement 2013-12-08 00:25:20 +01:00
Francis Besset 60e3714602 [SoapBundle][SoapCommon] Removed unused TypeRepository in Definition\Method classes 2013-12-08 00:23:30 +01:00
Rekky 1e82d7fdd7 Fix WSDL schema stylesheet including 2013-12-07 19:55:33 +01:00
Francis Besset 8788d7595d Cleaned unused method, property, variable or parameter 2013-12-02 16:02:29 +01:00
Francis Besset b45224587a Added use TypeConverterInterface 2013-12-02 15:39:59 +01:00
Francis Besset c8baf14c75 Fixed typo 2013-12-02 15:39:39 +01:00
Francis Besset 53849c68e0 Removed unused `use` statement 2013-12-02 15:35:36 +01:00
Francis Besset ecdf7e1872 Fixed an undefined variable
Fixed commit c830097430
Fixed issue #22
2013-11-20 08:45:12 +01:00
Francis Besset dcfca04db4 Merge remote-tracking branch 'origin/exception'
Conflicts:
	composer.json
	src/BeSimple/SoapBundle/composer.json
2013-11-15 10:37:55 +01:00
Francis Besset 73efa627ce Removed old Zend dependencies in composer.json 2013-11-13 16:43:47 +01:00
Francis Besset 6a6661012e [SoapBundle] Enhanced exception management with Symfony2 2013-11-13 15:02:30 +01:00
Francis Besset 00c8726bb2 Updated composer.json 2013-10-30 16:35:17 +01:00
Ronan Le Bris e7d86b3e99 Adding besimple/soap-wsdl to dependencies
Fix missing `BeSimple\SoapWsdl\Dumper\Dumper` class in `BeSimple\SoapBundle\WebServiceContext`
2013-10-28 11:09:23 +01:00
Francis Besset 54894b2fd9 Fixed ComplexType without alias name
Fix issue #17
2013-10-17 13:51:31 +02:00
Francis Besset c830097430 Rewrited Definition of WebService and WSDL dumper 2013-10-15 11:46:12 +02:00
Francis Besset 391a3f10b8 Merge branch '0.1' 2013-10-15 11:15:10 +02:00
Francis Besset ad82f752f7 [SoapBundle] Added new request format (soap, wsdl) and used them in routing 2013-09-30 16:45:30 +02:00
Francis Besset ebd565cd79 Fixed besimple/soap-* version 2013-09-27 21:35:39 +02:00
Francis Besset 81ce2d7571 Merge branch '0.1' 2013-09-27 21:33:11 +02:00
Francis Besset 4391b94dbb Fixed besimple/soap-* version 2013-09-27 21:30:33 +02:00
Lukas Kahwe Smith 1bbf41fd78 allow Symfony2.4+ versions and do not use self.version inside require 2013-09-27 21:22:30 +02:00
Francis Besset adb1d9bd89 [SoapBundle] Keep debug in WebServiceContext
Issue #6
The generated cache is incorrect (maybe because service are cached).
To fix the problem quickly, the debug mode is enabled.
2013-08-26 14:40:00 +02:00
Francis Besset 4d9b112bb5 Updated version to 0.2 2013-08-16 17:18:31 +02:00
Francis Besset 42d38653af [SoapBundle] Fixed SoapWebServiceController to keep compatibility with Symfony 2.0 2013-08-06 17:04:24 +02:00
Francis Besset 990cca2783 [SoapBundle] Fixed compatibility with Symfony 2.0 2013-08-06 15:20:17 +02:00
Francis Besset 9b0b9a8944 [SoapBundle] Fixed tests 2013-08-06 11:43:40 +02:00
Francis Besset 71d84eddb7 [SoapBundle] Fixed usage of bad key in ComplexType strategy
Fix issue #5
2013-08-06 11:02:21 +02:00
Francis Besset 762ca4d7eb [SoapBundle] [Doc] Updated documentation to Alias documentation 2013-08-05 09:52:54 +02:00
Francis Besset 5aefca6be7 [SoapBundle] Cleaned configuration 2013-08-05 09:40:39 +02:00
Francis Besset e765ea746e [SoapBundle] Moved configuration of ComplexType aliases from config to PHP objects with annotations
Before:
``` yaml
be_simple_soap:
    services_classmap:
        Cutomer: My\Bundle\Entity\Customer
        Cart:    My\Bundle\Entity\Cart

After:
``` php
<?php

namespace My\Bundle\Entity;

use BeSimple\SoapBundle\ServiceDefinition\Annotation as Soap;

/**
 * @Soap\Alias("Customer")
 */
class Customer
{
    // ... your PHP code
}

/**
 * @Soap\Alias("Cart")
 */
class Cart
{
    // ... your PHP code
}
2013-08-05 09:40:39 +02:00
Francis Besset 6de878de7d [SoapBundle] Fixed ComplexType strategy to find Type by Classname 2013-08-05 09:40:38 +02:00
Francis Besset 04a94bbbe4 [SoapBundle] Updated ComplexType strategy 2013-08-05 09:40:38 +02:00
Francis Besset be1e80799c [SoapBundle] Added services_classmap node configuration 2013-08-05 09:40:38 +02:00
Francis Besset 9487e3a9e7 Fixed tests which require a webserver 2013-07-24 23:40:21 +02:00
Francis Besset 491d5f1ab1 [SoapBundle] Removed the first char if the ComplexType start with `\`
Fixed issue https://github.com/BeSimple/BeSimpleSoapBundle/issues/59
2013-07-23 18:06:44 +02:00
Francis Besset a736a52bab [SoapBundle] [Doc] Removed installation from deps and update installation with composer 2013-07-23 09:39:18 +02:00
Francis Besset 10d37dcea7 [SoapBundle] [Doc] Added PHP cURL extension in requirements 2013-07-23 09:38:26 +02:00
Francis Besset eaeec1830d Removed travis build status in README 2013-07-23 09:12:34 +02:00
Francis Besset e4a9b70fb3 [SoapBundle] Fixed Configuration.php 2013-07-22 11:52:32 +02:00
Francis Besset 333c54d642 [SoapBundle] Fixed service definition of `besimple.soap.client.builder`
Fixed issue #1
2013-07-20 19:07:19 +02:00
Francis Besset a2bd42c71f [SoapBundle] Used `BeSimple\SoapServer\Exception\ReceiverSoapFault` instead of `SoapFault` 2013-07-19 19:15:27 +02:00
Francis Besset 934a639ff1 Created branch-alias 0.1-dev 2013-07-19 19:11:59 +02:00
Francis Besset b78bf408bf Reorganized directories structure 2013-07-19 17:01:55 +02:00
Francis Besset 9328c98935 Add 'src/BeSimple/SoapBundle/' from commit 'e99f707b105c0a0472260d8d42a5a14a7fb7a211'
git-subtree-dir: src/BeSimple/SoapBundle
git-subtree-mainline: 9a8d23fa23
git-subtree-split: e99f707b10
2013-07-19 17:00:11 +02:00