BeSimpleSoap/src/BeSimple/SoapClient
Petr Bechyně d3023b1a5a UnitTests are now located in tests directory & tiny improvements 2017-03-15 10:25:48 +01:00
..
Curl SoapClient custom endpoint location & connection keep alive configuration added & tests updated 2017-03-03 11:11:44 +01:00
SoapOptions SoapClient custom endpoint location & connection keep alive configuration added & tests updated 2017-03-03 11:11:44 +01:00
SoapServerAuthentication SoapOptions moved 2016-11-09 17:05:43 +01:00
SoapServerProxy SoapOptions moved 2016-11-09 17:05:43 +01:00
.gitignore Fixed tests 2013-07-25 09:53:04 +02:00
CONTRIBUTORS.md Add 'src/BeSimple/SoapClient/' from commit '41301775bf7ca3cc8f486929c0d7484dce4c7393' 2013-07-19 16:56:20 +02:00
MimeFilter.php Support of older PHP versions removed: MimeFilter does not sanitize PHP 5.4.x error 2017-02-22 12:23:24 +01:00
README.md Fixed version besimple/soap-* version in README's 2013-10-30 16:49:47 +01:00
SoapClient.php SoapClient custom endpoint location & connection keep alive configuration added & tests updated 2017-03-03 11:11:44 +01:00
SoapClientBuilder.php SoapClient large refactoring & tests update 2017-02-14 16:01:39 +01:00
SoapClientMessageWithAttachments.php SoapClient large refactoring & tests update 2017-02-14 16:01:39 +01:00
SoapClientOptionsBuilder.php SoapClient custom endpoint location & connection keep alive configuration added & tests updated 2017-03-03 11:11:44 +01:00
SoapFaultWithTracingData.php SoapClient large refactoring & tests update 2017-02-14 16:01:39 +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
SoapResponseFactory.php SoapClient large refactoring & tests update 2017-02-14 16:01:39 +01:00
SoapResponseTracingData.php SoapClient large refactoring & tests update 2017-02-14 16:01:39 +01:00
WsAddressingFilter.php Reorganized directories structure 2013-07-19 17:01:55 +02:00
WsSecurityFilter.php Cleaned unused method, property, variable or parameter 2013-12-02 16:02:29 +01:00
WsdlDownloader.php Curl/WsdlGenerator - better error handling 2017-02-18 00:13:02 +01:00
XmlMimeFilter.php MimeFilters are now stateless 2016-11-02 09:55:12 +01:00
composer.json Revert "[SoapClient] [Tests] Down required version of symfony/filesystem vendor" 2014-08-14 14:57:00 +02:00
phpunit.xml.dist Fixed tests which require a webserver 2013-07-24 23:40:21 +02:00

README.md

BeSimpleSoapClient

The BeSimpleSoapClient is a component that extends the native PHP SoapClient with further features like SwA, MTOM and WS-Security.

Features (only subsets of the linked specs implemented)

  • SwA: SOAP Messages with Attachments Spec
  • MTOM: SOAP Message Transmission Optimization Mechanism Spec
  • WS-Security Spec1, Spec2
  • WS-Adressing Spec

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-client": "0.2.*@dev"
    }
}

Now you are ready to install the library:

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