Francis Besset
a50215b649
Fixed bug with Zend Soap
2013-02-27 17:04:44 +01:00
Francis Besset
a86c680263
Fixed ComplexType strategy
2013-02-20 20:42:08 +01:00
Francis Besset
2e34b1ce1d
Used new interface for WdslTypeStrategy
2013-02-20 13:43:54 +01:00
Rekky
030561521e
Fix code styling
2013-01-30 22:16:55 +04:00
ldantunez
1f41d88f8b
Update ServiceDefinition/Loader/AnnotationClassLoader.php
...
Solving Symfony 2.1.* issue with the bundle.
2013-01-30 20:04:00 +04:00
craigmarvelley
a8c2fbb13a
Fixed bug causing annotations in inheriting controllers to be ignored
2012-01-05 16:37:12 +00:00
craigmarvelley
d2cdc9ccad
Updated to work with latest version of Zend\Soap
2012-01-04 11:47:45 +00:00
Francis Besset
f0031e8923
Fixed issue #17
2011-12-01 11:37:58 +01:00
Francis Besset
16ee889230
Check that complex type has not in classmap before adding
2011-11-26 19:59:09 +01:00
Francis Besset
bacdc90870
Moved Classmap instance in ServiceDefinition
2011-11-26 12:18:29 +01:00
Francis Besset
65fc380fa2
Fixed issue #16
2011-11-17 19:58:23 +01:00
Francis Besset
70a85460c9
Used BeSimple\SoapCommon\Classmap for the webservice context
2011-10-12 21:08:59 +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
ce5c46408a
Fixed issue #5
2011-08-26 23:39:43 +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
0e177bd067
Moved stylesheet option in WsdlDumper service and add the possibility to configure
2011-08-14 21:59:15 +02:00
Francis Besset
c5902122bb
Added headers in request
...
You can add @Soap\Header("foobar", phpType="string") in a method definition
2011-08-14 18:04:01 +02:00
Francis Besset
4fa893042f
New definition of complex type
...
The exposure of complex type properties was done only with public property.
Now you can expose properties and public methods.
Before:
In a complex type:
/**
* @var string
*/
public $var;
After:
In a complex type:
use BeSimple\SoapBundle\ServiceDefinition\Annotation as Soap;
/**
* @Soap\PropertyComplexType("string", name="var", nillable="true")
*/
public $username;
private $email;
/**
* @Soap\MethodComplexType("string", name="email", nillable="true", setter="setEmail")
*/
public function getEmail()
{
return $this->email;
}
public function setEmail($email)
{
$this->email = $email;
}
name, nillable are optionnal.
setter is optional and only available for MethodComplexType.
2011-07-23 21:24:59 +02:00
Francis Besset
c33005fed2
Fixed ServiceDefinition argument and type
2011-07-21 21:03:39 +02:00
Francis Besset
055bb8a96c
Replaced Bundle\WebServiceBundle by BeSimple\SoapBundle
2011-07-18 22:43:12 +02:00
Francis Besset
234689f4e5
Fixed typo
2011-07-17 19:41:06 +02:00
Christian Kerl
76e7f42ccb
added TypeRepository managing all mappings from php to xml types; removed classmap generation from SoapServerFactory, this will be done by TypeRepository::createComplexTypeMap(...);
...
Conflicts:
Resources/config/webservice.xml
Soap/SoapServerFactory.php
Util/QName.php
WebServiceContext.php
2011-07-17 19:37:23 +02:00
Christian Kerl
5da442b716
added Zend\Soap\Wsdl\Strategy implementation supporting array types and complex types (classes)
...
Conflicts:
ServiceDefinition/Dumper/WsdlDumper.php
2011-07-17 18:43:58 +02:00
Christian Kerl
62e07ba43c
added support to retrieve parameter php type form type hint
...
Conflicts:
ServiceDefinition/Loader/AnnotationClassLoader.php
2011-07-17 18:27:33 +02:00
Francis Besset
1c608ccf20
The bundle is back!
...
The definition of service has changed, read the README.
2011-07-17 10:58:12 +02:00
Francis Besset
51d1d28830
Cleaned files
2011-07-14 17:45:03 +02:00
Christian Kerl
8367556323
added annotation support
2011-04-09 00:40:31 +02:00
Christian Kerl
05a96310b3
fixed WsdlDumper to generate valid WSDL files
2011-04-09 00:38:39 +02:00
Christian Kerl
fa07646e3a
wsdl definition can now be retrieved; aligned controller method and route naming;
2011-04-08 00:46:58 +02:00
Christian Kerl
8895a69d04
replaced old LoaderInterface with Symfony Config Component's LoaderInterface; added annotation based loader implementations;
2011-04-08 00:41:16 +02:00
Christian Kerl
aa1dfdf0f8
refactored service definition dumper classes
2011-04-07 21:49:59 +02:00
Christian Kerl
e53b83616b
added namespace to service definition;
2011-02-03 01:04:12 +01:00
Christian Kerl
2a2552b147
added initial implementation of WsdlFileDumper based on Zend Wsdl class
2011-01-07 23:03:03 +01:00
Christian Kerl
4e54616d1e
refactored FileLoader class to use new Assert class
2011-01-07 23:02:04 +01:00
Christian Kerl
928dc80b5e
added return type to Method class
2011-01-07 23:00:17 +01:00
Christian Kerl
c7f173456b
added header comment
2010-10-08 17:01:27 +02:00
Christian Kerl
8d3743d928
added initial support for service binding
2010-10-08 14:24:42 +02:00
Christian Kerl
31d40380a6
added initial support for service definition
2010-10-07 15:16:56 +02:00