mrvanes/simplesamlphp-module-error

There is no license information available for the latest version (v1.0) of this package.

A module to generate SAML Error Responses in a controlled way.

Installs: 6

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 0

Open Issues: 0

Type:simplesamlphp-module

v1.0 2020-08-19 11:27 UTC

This package is auto-updated.

Last update: 2024-04-11 04:15:44 UTC


README

SimpleSAMLphp SAML ErrorResponse generator

This package can be used to generate SAML ErrorResponses in a controlled way. Useful when testing SP Error handling.

Configuration

'authproc' => array(
    0 => array(
       'class' => 'error:ErrorResponse',
       'status' => SAML2\Constants::STATUS_RESPONDER,
       'code' => 'FooCode',
       'message' => 'Foo Message'
    ),

code may not contain spaces. All spaces are removed.