-
Notifications
You must be signed in to change notification settings - Fork 605
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
Setting to accept unsigned Logout messages #446
Comments
You need to include AuthServices in the sign out types. Either sign out of everything by calling |
Thank you for The super fast response! |
There's no option to turn of the signing requirement for logout messages. It's part of the profile spec section 4.4.4.2:
But if you really need an option to switch it off, I can consider adding it. |
Thanks again. I'll have a talk with the idp-guys first and hear what they have to say. |
Hi again! |
I see the need for it, but as this is very non-standard it's far down on the priority list for free-time development. If you want to sponsor the development to get it done faster, please drop me a mail. |
Hi!
I have a problem with the single signout functionality.
I'm using AS.Owin 1.7.2 on a site with multiple domains (actually it's several sites in same application).
I create SP for all domains dynamically like this:
This works fine for login, and the login request is called with the right metadata based on the domain.
For the logout request the issuer is always from the first domain, and thus fails.
Each SP has it's own unique module path.
For the logout I use
OwinContext.Authentication.SignOut(DefaultAuthenticationTypes.ApplicationCookie, DefaultAuthenticationTypes.ExternalCookie);
This doesn't seem to trigger single sign out, so I redirect to /logout where the signout request is triggered.
Any suggestions?
The text was updated successfully, but these errors were encountered: