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
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
5d8d7b4ad5
added default type mapping from DateTime to xsd:dateTime
2011-08-26 22:22:02 +02:00
Francis Besset
51a36dfb87
Merge remote-tracking branch 'origin/request_headers'
2011-08-17 08:35:49 +02:00
Francis Besset
0368461b12
Fixed typo
2011-08-16 20:41:14 +02:00
Francis Besset
d38e0c03b7
Fixed typo in webservice services definition
2011-08-16 20:06:24 +03: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
cce23d8abe
Merge remote-tracking branch 'origin/master' into request_headers
...
Conflicts:
DependencyInjection/BeSimpleSoapExtension.php
Resources/config/webservice.xml
WebServiceContext.php
2011-08-14 21:16:11 +02:00
Francis Besset
33165ce8d2
Refactored the declaration of services for ServiceBinder
2011-08-14 21:06:04 +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
07ef0a62f4
Merge remote-tracking branch 'origin/new_definition'
2011-08-07 11:35:27 +02:00
Francis Besset
ff2cf6e730
Fixed typo in webservice definition
2011-07-27 23:20: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
9bd9677325
Simplified the creation of WebServiceContext
2011-07-21 22:55:59 +02:00
Francis Besset
c13a96131b
Replaced webservice.* service name by besimple.soap.*
2011-07-18 22:59:20 +02:00
Francis Besset
055bb8a96c
Replaced Bundle\WebServiceBundle by BeSimple\SoapBundle
2011-07-18 22:43:12 +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
Francis Besset
887169de13
Added debug parameter at SoapServerFactory
...
If kernel.debug parameter is true, the cache is disabled.
2011-07-17 12:35:47 +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
581ebaf865
Fixed DIC
2011-07-14 18:13:34 +02:00
Francis Besset
51d1d28830
Cleaned files
2011-07-14 17:45:03 +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
ff6eca48ee
reimplemented DI extension classes and DI container config;
2011-04-07 21:49:01 +02:00
Christian Kerl
cf5665a502
renamed service definition file; removed old routing.xml;
2011-04-07 19:47:14 +02:00