Integrate with multiple ADFSs
Is that possible to integrate with multiple IDP (ADFS) systems, instead of letting one ADFS relaying to others? How do I configure it?
In looking at chapter 6, the XML definition for ExtendedMetadataDelegate would be something like below?
<bean class="org.springframework.security.saml.metadata. ExtendedMetadataDelegate">
<constructor-arg>
<list>
<bean class="org.opensaml.saml2.metadata.provider.Filesy stemMetadataProvider">
<constructor-arg>
<value type="java.io.File">classpath:security/FederationMetadata1.xml</value>
</constructor-arg>
<property name="parserPool" ref="parserPool"/>
</bean>
<bean class="org.opensaml.saml2.metadata.provider.Filesy stemMetadataProvider">
<constructor-arg>
<value type="java.io.File">classpath:security/FederationMetadata2.xml</value>
</constructor-arg>
<property name="parserPool" ref="parserPool"/>
</bean>
</list>
</constructor-arg>
..... <the rest is the same>