HI there, do you have spring security Java config example for Fediz? Currently
getting infinite redirect f.s.w.FederationAuthenticationEntryPoint :
Redirecting to IDP: https://xxx/fediz-idp/federation?wa=wsignin1.0&wreply...
Suspecting that FederationAuthenticationFilter is misconfigured. Example:
http.antMatcher("/secure/**")
.addFilterAfter(federationAuthenticationFilter,
BasicAuthenticationFilter.class)
.authorizeRequests()
.anyRequest()
.authenticated()
.and()
.exceptionHandling()
.authenticationEntryPoint(federationAuthenticationEntryPoint);
Any help is appreciated.