757 questions
0
votes
0
answers
155
views
Keycloak logout is returning Success status in Saml Logout Response and application is redirected to the home page but session still exist in Keycloak
My enterprise application code was working earlier for a long time, but without any change to it the SSO Logout for the SAML protocol using Keycloak (version 26.0.0) has stopped working.
Basically, I ...
0
votes
0
answers
23
views
Customizing Saml2LogoutResponse in an AP-Initiated SLO
I'm testing my Spring servlet application for an AP-initiated SLO, and I get a 500 error from the Asserting party when I return a success message in SamlLogoutResponse. The AP logs indicate that the ...
0
votes
0
answers
89
views
Spring Security SAML in Springboot 3.5.x not responding to forwarded requests
I have an older version of my app that I upgraded to SpringBoot 3.5.x and the SAML ACS URL changed after upgrading. So I used urlrewrite to forward the request from the old URL to the new URL. ...
0
votes
0
answers
146
views
How to Support SAML Multitenancy with spring-security-saml2-service-provider 6.3.9 and Microsoft Entra?
We want to publish a multitenant app for external tenant users. Right now, We've already established a single-tenant mechanism for our web application using spring-security-saml2-service-provider 6.3....
0
votes
0
answers
93
views
Implement JWT authentication using com.auth0 library in Spring Boot Using Java
I am trying to implement JWT authentication to one particular endpoint. I have SAML authentication already in place.
Spring Boot Version - 2.7.18
com.auth0 (java-jwt) version - 4.4.0
com.auth0 (jwks-...
0
votes
0
answers
76
views
standard procedure to implement SAML based SSO authentication
So I has set up a SAML based SSO using azure as IDP and a springboot application as service provider. I have setup an azure application, enabled SAML and got the metadata URI. I have also set the ...
1
vote
2
answers
504
views
Invalid CORS request or requests dont work
After building my vite project and integrating it into my java spring boot application. I am messing around with cors configurations. When haven no configuration, I can login via SAML SSO where i have ...
3
votes
1
answer
197
views
How to access encrypted assertions after migrating to spring-security-saml2-service-provider 6.4
Background
In an application where spring-security-saml2-service-provider was upgraded from 6.3.x to 6.4.1, I am experiencing a change in behaviour where I'm struggling to access the list of encrypted ...
2
votes
1
answer
374
views
SAML authentication getting failed sometimes with Credential Expired Exception
We are using Spring Security SAML Extension Project. But we are experiencing some weird issue with the users as stated below,
We have set the maxAuthenticationAge to 8 hours in the ...
0
votes
0
answers
152
views
Saml project works with gradle but not with maven
I have set up a simple Gradle project with springboot and SAML integration which works perfectly fine, but when i try to use maven (a database server which is in development uses maven) and use the ...
1
vote
1
answer
163
views
Saml2 SP behind reverse proxy
I have problem running a SAMl2 SP behind reverse proxy running OpenSAMl with Spring security 6. When running locally from own computer this works as it should. When running behind proxy it seems the ...
0
votes
1
answer
435
views
How to get the SAML RelayState in Spring Boot Controller?
I could obtain the RelayState in Spring SAML 1 by accessing the SAMLCredential through the SecurityContext.
SAMLCredential saml = (SAMLCredential) SecurityContextHolder.getContext()
...
1
vote
1
answer
88
views
Okta SAML Integration for Single Sign-on
I have a website www.example.com. I have few clients (businesses) using my website, let's say they are C1 (www.c1.com), C2 (www.c2.com) and C3 (www.c3.com). I want to enable Okta SAML authentication ...
0
votes
0
answers
178
views
How to populate the username in OKTA form using SAML
I want to populate the username in the Okta login form using SAML.
So far I found out that it can be achieved using Subject tag, but I did not manage to make it work. Has anyone done it and can give ...
3
votes
0
answers
479
views
Federated SAML 2.0 SSO login with Spring Authorization Server
The requirement is to implement Single Sign On(SSO) with SAML using Spring Authorization Server, based on Service Provider(SP) initiated flow.
Does Spring Authorization Server support SSO with SAML? ...