Retrieve 'relying-party.xml' via HTTP
Rod Widdowson
rdw at steadingsoftware.com
Sat Apr 1 08:28:59 EDT 2017
> Can the 'services.xml' be configured to retrieve the 'relying-party.xml' from a remote HTTP resource?
Yes. You need to generate the bean (as you did) and then stick a reference to it in shibboleth.RelyingPartyResolverResources/
> <util:list id="shibboleth.RelyingPartyResolverResources">
> <ref bean="FileBackedRelyingParty"/>
> </util:list>
>
> <util:list id="shibboleth.RelyingPartyResolverResources">
> <value>%{idp.home}/conf/credentials.xml</value>
> <value>%{idp.home}/system/conf/relying-party-system.xml</value>
> </util:list>
You cannot create the same bean twice. Just remove the file name and replace it with the reference
<util:list id="shibboleth.RelyingPartyResolverResources">
<value>%{idp.home}/conf/credentials.xml</value>
<ref bean="FileBackedRelyingParty"/>
</util:list>
More information about the users
mailing list