052ab20d67 | ||
---|---|---|
.. | ||
SoapServerAuthentication | ||
SoapServerProxy | ||
Tests | ||
.gitignore | ||
CONTRIBUTORS.md | ||
Curl.php | ||
MimeFilter.php | ||
README.md | ||
SoapClient.php | ||
SoapClientBuilder.php | ||
SoapClientOptions.php | ||
SoapClientOptionsBuilder.php | ||
SoapResponse.php | ||
WsAddressingFilter.php | ||
WsSecurityFilter.php | ||
WsdlDownloader.php | ||
XmlMimeFilter.php | ||
composer.json | ||
phpunit.xml.dist |
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