2017 © Pedro Peláez
 

library soap-client

Build and consume SOAP Client based web services

image

robcaw/soap-client

Build and consume SOAP Client based web services

  • Monday, January 6, 2014
  • by robincawser
  • Repository
  • 1 Watchers
  • 0 Stars
  • 31 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 37 Forks
  • 0 Open issues
  • 5 Versions
  • 0 % Grown

The README.md

BeSimpleSoapClient

Forked from BeSimple / BeSimpleSoapClient to help fellow students on Secure Web Application Development overcome SoapClient issues with the EE M2M web service., (*1)

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

For EE M2M users

Installation:

Add "robcaw/soap-client": "0.2.*@dev" to your composer.json and run composer update., (*3)

Do some SOAP client:, (*4)

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:, (*5)

$xml = $soap->__getLastResponse();

The Versions

06/01 2014

dev-master

9999999-dev https://github.com/BeSimple/BeSimpleSoapClient

Build and consume SOAP Client based web services

  Sources   Download

MIT

The Requires

 

The Development Requires

by Andreas Schamberger
by Christian Kerl

soap soap-client

02/12 2013

v0.2.1

0.2.1.0 https://github.com/BeSimple/BeSimpleSoapClient

Build and consume SOAP Client based web services

  Sources   Download

MIT

The Requires

 

The Development Requires

by Andreas Schamberger
by Christian Kerl

soap soap-client

02/12 2013

v0.2.2

0.2.2.0 https://github.com/BeSimple/BeSimpleSoapClient

Build and consume SOAP Client based web services

  Sources   Download

MIT

The Requires

 

The Development Requires

by Andreas Schamberger
by Christian Kerl

soap soap-client

06/11 2013

v0.2.0

0.2.0.0 https://github.com/BeSimple/BeSimpleSoapClient

Build and consume SOAP Client based web services

  Sources   Download

MIT

The Requires

 

The Development Requires

by Andreas Schamberger
by Christian Kerl

soap soap-client

06/11 2013

0.1.x-dev

0.1.9999999.9999999-dev https://github.com/BeSimple/BeSimpleSoapClient

Build and consume SOAP Client based web services

  Sources   Download

MIT

The Requires

 

The Development Requires

by Andreas Schamberger
by Christian Kerl

soap soap-client