<div dir="ltr"><div>For an ActivationCondition -- <a href="https://wiki.shibboleth.net/confluence/display/IDP4/ActivationConditions">https://wiki.shibboleth.net/confluence/display/IDP4/ActivationConditions</a> -- I've place file 'activation-conditions.xml' on a remote server that fronts our git (same locations as the 'attribute-resolver.xml' etc).</div><div><br></div><div>My level of Spring comprehension is low -- how do I invoke 'fileResource1' and 'fileResource2' to load the files? Is the configuration below somewhat sane?<br></div><div><br></div><div>Configuration in 'services.xml':<br></div><div><br></div><div><bean id="fileResource1"<br>          class="net.shibboleth.ext.spring.resource.FileBackedHTTPResource"<br>          c:client-ref="shibboleth.FileCachingHttpClient"<br>          c:url="<a href="https://remote-url.com/attribute-resolver.xml">https://remote-url.com/attribute-resolver.xml</a>"<br>          c:backingFile="%{idp.home}/conf/attribute-resolver.xml"><br>    </bean><br>    <br>    <bean id="fileResource2" <br>           class="net.shibboleth.ext.spring.resource.FileBackedHTTPResource"<br>               c:client-ref="shibboleth.FileCachingHttpClient"<br>         c:url="<a href="https://remote-url.com/activation-conditions.xml">https://remote-url.com/activation-conditions.xml</a>"<br>          c:backingFile="%{idp.home}/conf/activation-conditions.xml"/><br><br>    <util:list id ="shibboleth.AttributeResolverResources"><br>       <value>%{idp.home}/conf/attribute-resolver.xml</value><br>          <value>%{idp.home}/conf/activation-conditions.xml</value><br> </util:list></div></div>