BeSimpleSoap/src/BeSimple/SoapClient
Petr Bechyně 052ab20d67 tiny bugfixes 2016-11-11 16:04: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
Tests Large refactoring removing states, abstract magic, vague fluent interfaces 2016-10-27 16:24:44 +02: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
Curl.php Soap server with attachments refactoring 2016-11-08 15:42:52 +01:00
MimeFilter.php Soap server with attachments refactoring 2016-11-08 15:42:52 +01:00
README.md Fixed version besimple/soap-* version in README's 2013-10-30 16:49:47 +01:00
SoapClient.php tiny bugfixes 2016-11-11 16:04:44 +01:00
SoapClientBuilder.php Large refactoring removing states, abstract magic, vague fluent interfaces 2016-10-27 16:24:44 +02:00
SoapClientOptions.php SoapOptions moved 2016-11-09 17:05:43 +01:00
SoapClientOptionsBuilder.php SoapOptions moved 2016-11-09 17:05:43 +01:00
SoapResponse.php Large refactoring removing states, abstract magic, vague fluent interfaces 2016-10-27 16:24:44 +02: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 Soap server with attachments refactoring 2016-11-08 15:42:52 +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