Commit Graph

663 Commits

Author SHA1 Message Date
Lukas Kahwe Smith 1bbf41fd78 allow Symfony2.4+ versions and do not use self.version inside require 2013-09-27 21:22:30 +02:00
Lukas Kahwe Smith 8f6dab8816 test different Symfony2 versions 2013-09-27 21:18:52 +02:00
Andreas Schamberger 461675042a fix soap header handling 2013-08-30 22:07:44 +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
Andreas Schamberger f5a8573a4e Add readme files 2013-08-24 17:38:18 +02:00
Andreas Schamberger 1f1d513ea3 remove obsolete file 2013-08-24 11:01:59 +02:00
Andreas Schamberger 8e305da9c0 change url for check if axis is ready 2013-08-24 10:53:24 +02:00
Andreas Schamberger dc3fcaf81f remove ini and try axis build 2013-08-24 09:47:34 +02:00
Andreas Schamberger d8d6ca5795 fix problem with cache path 2013-08-24 09:39:56 +02:00
Andreas Schamberger cbd49c3342 add php ini for travis and update travis config 2013-08-24 09:21:13 +02:00
Andreas Schamberger e9388023c1 add php ini for travis and update travis config 2013-08-24 09:05:58 +02:00
Andreas Schamberger 76360c193e add php ini for travis and update travis config 2013-08-24 09:03:23 +02:00
Andreas Schamberger 155956ca04 change file permissions 2013-08-24 08:44:10 +02:00
Andreas Schamberger 3f41d4b7bc change file permissions 2013-08-24 08:41:59 +02:00
Andreas Schamberger 4fa7fd759a add phpwebserver to travis 2013-08-24 08:24:31 +02:00
Andreas Schamberger 2b12264304 Axis and SoapServer interop tests 2013-08-23 23:25:16 +02:00
Andreas Schamberger f8a80c0361 fix wrong method call 2013-08-23 21:45:09 +02:00
Andreas Schamberger 19def707d3 use WsSecurityFilterClientServer from common 2013-08-23 20:59:35 +02:00
Andreas Schamberger b21d758e77 remove now obsolete code 2013-08-23 20:57:37 +02:00
Andreas Schamberger 9bc9410172 add BinarySecurityToken resolving to key resolver 2013-08-23 20:57:07 +02:00
Andreas Schamberger 1cde22d8bb fix securitykey factory method call 2013-08-23 20:56:37 +02:00
Andreas Schamberger 8d62141a3d add workaround for cli webserver option 2013-08-23 20:55:26 +02:00
Andreas Schamberger 96f8415b92 added encryption to WS Security 2013-08-23 20:48:13 +02:00
Andreas Schamberger 5229091033 further steps with WS-Security (signing) 2013-08-23 20:47:55 +02:00
Andreas Schamberger 580e6f4da7 added WsSecurityFilter that supports UsernamePassword for now 2013-08-23 20:47:41 +02:00
Andreas Schamberger 6a5109c526 fix SoapFault handling to throw proper soap fault to client 2013-08-23 20:47:20 +02:00
Andreas Schamberger 5e6fd5de25 extract common code used in client/server 2013-08-23 20:43:48 +02:00
Andreas Schamberger ee321fca42 fix missing 'cid:' in SwaTypeConverter 2013-08-23 20:43:22 +02:00
Andreas Schamberger b5af83f9d2 add workaround for cli webserver, option implemented in client 2013-08-23 20:30:50 +02:00
Francis Besset 9f9bab242d Fixed composer.json 2013-08-16 17:36:03 +02:00
Francis Besset f792f53aa2 Added composer.json 2013-08-16 17:18:40 +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 bef19356d6 Merge remote-tracking branch 'origin/complextype_pretty_name' 2013-08-05 09:54:08 +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 16dddc0da6 [SoapServer] Added Classmap class 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 232b678552 Merge branch 'fixed_tests' 2013-07-25 10:32:31 +02:00
Francis Besset 0c5d2c54ab Fixed tests 2013-07-25 09:53:04 +02:00
Francis Besset fe4e821ff5 Fixed syntax for PHP 5.3 2013-07-24 23:44:50 +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