Download the PHP package dcarbone/soap-plus without Composer
On this page you can find all versions of the php package dcarbone/soap-plus. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download dcarbone/soap-plus
More information about dcarbone/soap-plus
Files in dcarbone/soap-plus
Package soap-plus
Short Description PHP SoapClient wrapper class
License Apache-2.0
Homepage https://github.com/dcarbone/soap-plus
Informations about the package soap-plus
soap-plus
In a nutshell, this class replaces the internal query mechanism used by PHP's SoapClient class. The main reason for this wrapper is to enable consumption of NTLM-authenticated SharePoint SOAP services in a PHP application. This is not a data-mapper, it simply returns data as the normal SoapClient would, but all of the internal querying is handled by the PHP CURL library.
Installation
This lib is designed to be used with Composer
"Require" entry:
Constructor
The constructor has been overloaded to allow for a few new nifty features. All of the base construction options are usable. To see a list of built-in available options, see here http://www.php.net/manual/en/soapclient.soapclient.php.
Additional Options
auth_type
- basic
- ntlm
- digest
- any
- anysafe
- NULL / undefined
These directly relate to the built-in CURLAUTH_XXX options available (see here, search for "CURLAUTH")
It is entirely optional, and should only be set if you also define "login"
and "password"
options.
If you define a remote WSDL, the same parameters will be used for WSDL retrieval as well as querying.
user_agent
This property is optional, and allows you to define a custom User Agent header value in requests.
debug
By setting "debug" => true
in your configuration array, every query and result will be stored in an internally array that can
be accessed via the methods getDebugQueries()
and getDebugResults()
. You may also enable/disable debugging post-construct with
enableDebug()
and disableDebug()
.
One word of caution on debugging. SOAP results can often be quite large, meaning you could potentially have lots of memory
being sucked up for the strings that are saved in the internal array. I would recommend NOT enabling this feature anywhere
outside of a dev / local dev environment. I have also provided a resetDebugValue()
method which will empty the arrays.
wsdl_cache_path
This option will allow you to specify the directory in which the WSDL cache files will be generated. If no value is passed for this option, sys_get_temp_dir value is used.
Querying
The typical mechanism by which PHP's SoapClient expects results is for them to be in an array. Coming from the SharePoint world, where most documentation outlines how to construct queries in XML, this can be a bit tedious. As such, I have provided a simple XML -> array conversion functionality in this library. For example:
SharePoint Lists GetListItems
Below is an example XML SOAP query against SharePoint's GetListItems action on the Lists WSDL.
Using SoapClientPlus, this is transformed into...
... which is then passed into the standard SoapClient's own __soapCall
method.
Note You do not HAVE to use XML, you may pass in an array. It is simply there as some people might find it easier to use. I use PHP's SimpleXMLElement implementation to handle the transformation.
Questions / Comments
As I stated in the buff, I created this library to help ease the pain of SharePoint services consumption in PHP wherein I had to use the NTLM auth mechanism. I am always open to new feature ideas from the community, so if you are using this library and have a suggestion, please let me know. I always enjoy a good challenge :)
All versions of soap-plus with dependencies
ext-curl Version *
ext-libxml Version *
ext-simplexml Version *
ext-soap Version *
dcarbone/curl-plus Version 3.0.*