Francis Besset
b5fbb9192c
Updated doc
2013-02-20 15:58:12 +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
Matthias Noback
76bd41018e
Fixed git URLs for the deps file
2012-11-15 10:34:29 +01:00
Francis Besset
5cb8249218
Fixed issue #20
2011-12-01 11:12:40 +01:00
Francis Besset
bacdc90870
Moved Classmap instance in ServiceDefinition
2011-11-26 12:18:29 +01:00
Francis Besset
ea65831c12
Fixed typo on definition of cache directory
2011-11-22 23:05:55 +01:00
Francis Besset
64e1759f45
[Doc] Updated SoapServer configuration
2011-11-22 10:08:36 +01:00
Francis Besset
ebb5343e11
[Doc] Updated cache documentation
2011-11-13 22:51:29 +01:00
Francis Besset
6c4ef348bd
Merge remote-tracking branch 'origin/client'
2011-11-13 22:42:51 +01:00
Francis Besset
0ac7a78870
[Doc] Global update
2011-11-13 22:40:42 +01:00
Francis Besset
4abf5a59ed
[Doc] Add the WSDL address
2011-11-13 21:55:26 +01:00
Francis Besset
70a85460c9
Used BeSimple\SoapCommon\Classmap for the webservice context
2011-10-12 21:08:59 +02:00
Francis Besset
d3c31116c7
Replaced soap.client by soap.client.builder
2011-10-10 22:19:43 +02:00
Francis Besset
6d2e9d7634
Added user_agent option
2011-10-08 22:04:18 +02:00
Francis Besset
1d9bd2cdd3
Added besimple.soap.classmap service
2011-10-08 18:03:27 +02:00
Francis Besset
94a8a8fec1
Updated SoapClient definition
2011-10-08 12:41:47 +02:00
Francis Besset
0f86292fcb
[Doc] Fixed typo
2011-09-24 13:44:10 +03:00
Francis Besset
ec3866d5d1
Merge remote-tracking branch 'origin/master' into client
2011-09-22 00:18:34 +02:00
Francis Besset
edee6a4c72
[Doc] Updated header tutorial to specify global headers functionality
2011-09-22 00:16:11 +02:00
Francis Besset
95c08c6edf
Used converters of BeSimpleSoapCommon for SoapClient
2011-09-13 20:50:16 +02:00
Francis Besset
864cf22895
Used converters of BeSimple\SoapCommon for SoapServer
2011-09-13 20:47:35 +02:00
Francis Besset
ecc3ec3c93
Updated besimple.soap.client service
2011-09-10 19:39:14 +02:00
Francis Besset
294058a59c
Added namespace option in client definition
2011-09-04 23:43:20 +02:00
Francis Besset
4e33819eca
Added cache_type option for soap server definition
2011-09-04 12:59:19 +02:00
Francis Besset
b1da32bc97
Renamed client cache_wsdl option to cache_type
2011-09-04 12:24:51 +02:00
Francis Besset
2ea1704a1e
Added the possibility to choice an other type cache for a client
2011-09-04 02:42:53 +02:00
Francis Besset
1a4e9246db
Added besimple.soap.cache service
2011-09-04 01:59:32 +02:00
Francis Besset
502ba41935
Updated namespace for soap client
2011-09-04 00:48:45 +02:00
Francis Besset
17fdd64489
Added soap client
2011-09-04 00:47:45 +02:00
Francis Besset
958efd3431
Replaced QName->getNamespace() by ServiceDefinition->getNamespace() for headers
2011-09-01 19:40:44 +02:00
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
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
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
edf2f9f011
[Doc] Added header tutorial
2011-08-14 18:32:35 +02:00
Francis Besset
d3a8965500
[Doc] Updated array tutorial
2011-08-14 18:13:12 +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
ea003a1224
[Doc] Fixed typo
2011-08-09 14:48:56 +03:00
Francis Besset
07ef0a62f4
Merge remote-tracking branch 'origin/new_definition'
2011-08-07 11:35:27 +02:00
Francis Besset
b945632dcf
[Doc] Updated installation
2011-08-07 11:34:00 +02:00