ivol/workday-soap-client

Soap client, that will be able to authenticate using X509 authentication (https://docs.oasis-open.org/wss/v1.1/wss-v1.1-spec-errata-os-x509TokenProfile.htm) or username/password authentication mechanism to Workday Web Services.

v1.0.1 2021-05-13 13:35 UTC

This package is auto-updated.

Last update: 2024-04-23 20:45:26 UTC


README

Build Status

This library allows authenticating requests passed to WWS. It allows 2 types of authentication:

  • X509 Authentication
  • UserNameToken authentication

Usage

<?php

use ivol\Workday\Soap\SoapClient;

$wsdl = 'add your link to WWS wsdl here';
$options = [
    'token' => new UsernamePasswordToken("root","root", "root_tenant") // for list of available tokens - check ivol\Workday\Soap\Token
];

$client = new SoapClient($wsdl, $options);
$client->Get_Postings([]);

License

Workday-soap-client is released under the MIT License.