osucomm / ws-soap
Extends the PHP SOAP client to add basic WSSE support
Installs: 84 553
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 4
Forks: 2
Open Issues: 1
Requires
- php: >=5.3.0
- ext-curl: *
- ext-soap: *
This package is not auto-updated.
Last update: 2024-12-18 13:09:11 UTC
README
Extends the PHP SOAP client to add basic WSSE support. The library makes as few modifications to the base SOAP client class as possible and attempts to make authenticating to a service as easy as possible.
Only a subset of the web services security standard is implemented. Specifically, unencrypted plain text password authentication.
Installation
You can add the library to your project using Composer or by manually including the necessary files.
Composer
First, if you haven't already installed Composer, install it with
$ cd my-awesome-project
$ curl -sS https://getcomposer.org/installer | php
Then create a composer.json
file with the following contents:
{
"require": {
"osucomm/ws-soap": "~0.1"
}
}
And install the libarary:
$ php composer.phar install
Finally, you'll need to include Composer's autoloader somewhere in your project:
require 'vendor/autoload.php';
If you prefer to use an autoloader other than Composer, note that WsSoap is PSR-4 compliant.
Include Manually
Download or clone the library to a directory within your project and include
src/Client.php
somehwere in your project.
require '/path/to/WsSoap/src/Client.php';
Use
Creating a WSSE SOAP client is as simple as
$wsdl = "https://example.com/MY_WSDL.wsdl";
$username = 'USER';
$password = 'PASS';
$client = new WsSoap\Client($wsdl, array(
'wsUsername' => $username,
'wsPassword' => $password,
));
In addition to the required wsUsername
and wsPassword
keys, the constructor
options are identical to the native PHP SoapClient.
Once the client is instantiated, it can be used in exactly the same way as SoapClient.