overridding admin interface beans/flows
Cantor, Scott
cantor.2 at osu.edu
Wed Dec 14 17:38:41 UTC 2022
> I cannot find what I seem to be missing. Somehow SWF cannot route
> these REST requests properly. I suppose I can change my custom
> DoLockoutManagerOperation to use query string parameters...
You have to merge in values via shibboleth.RESTFlows (merged into shibboleth.DefaultRESTFlows).
It's a constraint on the support for PathInfo in the whole SWF/servlet mapping layer in Spring.
Probably not documented well, if at all, it hasn't come up, but I allowed it.
-- Scott
(in system file)
<bean id="shibboleth.DefaultRESTFlows" class="org.springframework.beans.factory.config.ListFactoryBean">
<property name="sourceList">
<list>
<value>admin/metrics</value>
<value>admin/lockout</value>
<value>admin/revocation</value>
<value>admin/storage</value>
</list>
</property>
</bean>
More information about the users
mailing list