debugging remoteuser / external auth flow

Liam Hoekenga liamr at umich.edu
Tue May 9 12:14:55 EDT 2017


On Tue, May 9, 2017 at 10:38 AM, Cantor, Scott <cantor.2 at osu.edu> wrote:

> Probably it would be a Java filter I'd be pointing to as the culprit.
>

And you would be right!
That Unicon OIDC stuff uses spring security and needed this added to
web.xml:

    <filter>
        <filter-name>springSecurityFilterChain</filter-name>

<filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
    </filter>

    <filter-mapping>
        <filter-name>springSecurityFilterChain</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>

 I'm hoping that maybe adjusting the filter will fix it?

Liam
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://shibboleth.net/pipermail/users/attachments/20170509/a6da2b19/attachment.html>


More information about the users mailing list