BeSimpleSoap/src/BeSimple/SoapCommon
Petr Bechyně 8db9b374e4 SoapFault handling refactored: client now returns server fault codes + more details in message 2017-05-26 10:53:41 +02:00
..
Converter SoapClient large refactoring & tests update 2017-02-14 16:01:39 +01:00
Definition [SoapBundle][SoapCommon] Removed unused TypeRepository in Definition\Method classes 2013-12-08 00:23:30 +01:00
Fault SoapFault handling refactored: client now returns server fault codes + more details in message 2017-05-26 10:53:41 +02:00
Mime Parser fix: single line MimeMessages are now parsed correctly 2017-04-06 15:51:29 +02:00
SoapOptions SoapClient large refactoring & tests update 2017-02-14 16:01:39 +01:00
Storage Soap server with attachments refactoring 2016-11-08 15:42:52 +01:00
Tests SoapClient large refactoring & tests update 2017-02-14 16:01:39 +01:00
Type Reorganized directories structure 2013-07-19 17:01:55 +02:00
Util Reorganized directories structure 2013-07-19 17:01:55 +02:00
.gitignore Reorganized directories structure 2013-07-19 17:01:55 +02:00
AttachmentsHandlerInterface.php AttachmentsHandlerInterface refactored 2016-11-08 18:31:28 +01:00
Cache.php SoapClient large refactoring & tests update 2017-02-14 16:01:39 +01:00
ClassMap.php SoapResponse is a product of SoapResponseFactory, small refactorings 2016-11-02 16:08:21 +01:00
FilterHelper.php Reorganized directories structure 2013-07-19 17:01:55 +02:00
Helper.php Reorganized directories structure 2013-07-19 17:01:55 +02:00
README.md Fixed version besimple/soap-* version in README's 2013-10-30 16:49:47 +01:00
SoapKernel.php SoapClient large refactoring & tests update 2017-02-14 16:01:39 +01:00
SoapMessage.php SoapServer/Client now handle binary files correctly & large tests/fixtures update 2017-04-04 18:36:18 +02:00
SoapOptionsBuilder.php SoapClient custom endpoint location & connection keep alive configuration added & tests updated 2017-03-03 11:11:44 +01:00
SoapRequest.php SoapRequest is now SoapRequestFactory product 2016-11-01 16:23:21 +01:00
SoapRequestFactory.php SoapClient large refactoring & tests update 2017-02-14 16:01:39 +01:00
SoapRequestFilter.php MimeFilters are now stateless 2016-11-02 09:55:12 +01:00
SoapResponse.php Support of older PHP versions removed: MimeFilter does not sanitize PHP 5.4.x error 2017-02-22 12:23:24 +01:00
SoapResponseFilter.php MimeFilters are now stateless 2016-11-02 09:55:12 +01:00
WsSecurityFilterClientServer.php Cleaned unused method, property, variable or parameter 2013-12-02 16:02:29 +01:00
WsSecurityKey.php Reorganized directories structure 2013-07-19 17:01:55 +02:00
WsdlHandler.php Cleaned unused method, property, variable or parameter 2013-12-02 16:02:29 +01:00
composer.json Updated version to 0.3 2014-08-14 14:21:49 +02:00
phpunit.xml.dist Reorganized directories structure 2013-07-19 17:01:55 +02:00

README.md

BeSimpleSoapCommon

The BeSimpleSoapCommon component contains functionylity shared by both the server and client implementations.

Features

  • Common interfaces for SoapClient and SoapServer input/output processing flow
  • MIME parser for SwA and MTOM implementation
  • Soap type converters

Installation

If you do not yet have composer, install it like this:

curl -s http://getcomposer.org/installer | sudo php -- --install-dir=/usr/local/bin

Create a composer.json file:

{
    "require": {
        "besimple/soap-common": "0.2.*@dev"
    }
}

Now you are ready to install the library:

php /usr/local/bin/composer.phar install