-
Notifications
You must be signed in to change notification settings - Fork 5.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unable to Find 'filterProcessingUrl' Method in Spring Security 6.1.1 Saml2LoginConfigurer Configuration #13417
Comments
@marcusdacoregio @jzheaux Looking for your expert input , is the document https://docs.spring.io/spring-security/reference/servlet/saml2/login/authentication.html outdated ? |
Thanks for the report @sumeetpri, the property should be |
hi @sumeetpri - were you able to find a solution for this in your original question: My use case - idp1 sends an assertion - i find out from that assertion that it is coming from a particular idp and process the sso. Happy to open another issue if it is against guidelines. |
@ssharma1011, at this point, you should be able to set the value to |
Hi @jzheaux - Thank you for your reply. I have a few questions:
3. I actually want to use a custom URL which should not contain /saml/SSO but {hostname}/anything/something. Is this achievable? Attaching my yml and configuration file. ` final RelyingPartyRegistrationRepository relyingPartyRegistrationRepository;
`
|
Hi @jzheaux @sumeetpri waiting for your valuable suggestion. |
I see, @ssharma1011, let's do this instead. So that this ticket stays focused to the discussion about filterProcessingUrl, will you please post your question to StackOverflow? You can paste a link to your question here, and I'd be happy to follow up with you there. |
I am using version 6.1.1 of Spring Security and I need to configure a single response processing endpoint for a federated IDP. I have referred to the Spring documentation which provides an example code snippet. However, I couldn't find the
filterProcessingUrl
method in theSaml2LoginConfigurer
class. As a result, I'm getting a compile error stating thatfilterProcessingUrl
is not found.Here is the example code mentioned the Spring documentation under SAML2 Authentication Responses section:
And here is my code for the SAML 2.0 configuration:
I'm wondering why I'm unable to find the
saml2.filterProcessingUrl
method in my code.We have multiple federated idp and want single assertion url for all idp like /saml2/SSO . How do we can achieve single Assertion url for all idp not dynamic by registration Id ?
The text was updated successfully, but these errors were encountered: