Fixed
Details
Details
Assignee
Rod Widdowson
Rod WiddowsonReporter
scott.koranda@ligo.org
scott.koranda@ligo.orgComponents
Affects versions
Created December 17, 2016 at 11:52 PM
Updated September 28, 2022 at 2:47 PM
Resolved January 31, 2017 at 3:39 PM
Right now the Shibboleth EDS (version 1.1.0) includes this
logic:
if (policy != 'urn:oasis:names:tc:SAML:profiles:SSO:idpdiscovery-protocol:single') {
fatal(getLocalizedMessage('fatal.wrongProtocol'));
return false;
}
I am requesting an RFE for a configuration option, say
this.ignoreNonDefaultPolicy = false;
such that when the option is set to true the EDS would simply ignore
any value for the policy parameter.
The need here is to "mix" or "combine" the EDS with other custom code to make
a single discovery service that does consume and act on other values
for the policy protocol. As such it would be helpful if the "EDS part" of
the discovery service did not fail when a policy parameter is present
but is not the protocol default.