robcaw / soap-client
Build and consume SOAP Client based web services
v0.2.2
2013-12-02 15:02 UTC
Requires
- php: >=5.3.0
- ext-curl: *
- ext-soap: *
- ass/xmlsecurity: ~1.0
- besimple/soap-common: 0.2.*
Requires (Dev)
- mikey179/vfsstream: dev-master
- symfony/filesystem: ~2.3
- symfony/process: ~2.3
This package is not auto-updated.
Last update: 2024-11-19 02:54:53 UTC
README
Forked from BeSimple / BeSimpleSoapClient to help fellow students on Secure Web Application Development overcome SoapClient issues with the EE M2M web service.
The BeSimpleSoapClient is a component that extends the native PHP SoapClient with further features like SwA, MTOM and WS-Security.
For EE M2M users
Installation:
Add "robcaw/soap-client": "0.2.*@dev"
to your composer.json
and run composer update
.
Do some SOAP client:
use BeSimple\SoapClient\SoapClient as Soap;
$options = array(
"trace"=> true,
"exceptions"=> true,
'curl_ssl_version' => 3, //Must be version 3 for Orange/EE wsdl
);
$soap = new Soap($url, $options);
$xml = $soap->peekMessages($username, $password, 50);
print_r($xml);
If you get a "Looks like we got no XML document" error, you can still get a response by adding 'exceptions' => false
to the options and running:
$xml = $soap->__getLastResponse();