You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 16, 2019. It is now read-only.
My application redirects to the CAS server to login and then returns to my application on success.
The redirect hits the CAS server with an 'Origin' header of 'null'. The Origin header exists with a value of 'null'. This is different to a missing Origin header!
The only code that needs changing is the isValidOrigin() where an origin of 'null' should return true.
if("null".equals(origin)) return true;
Is this the correct solution or are there more issues hiding behind the scenes?
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
In my case, I am using a JASGI CAS SSO server.
My application redirects to the CAS server to login and then returns to my application on success.
The redirect hits the CAS server with an 'Origin' header of 'null'. The Origin header exists with a value of 'null'. This is different to a missing Origin header!
The only code that needs changing is the isValidOrigin() where an origin of 'null' should return true.
Is this the correct solution or are there more issues hiding behind the scenes?
The text was updated successfully, but these errors were encountered: