-
Notifications
You must be signed in to change notification settings - Fork 603
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
Support Logout over SOAP #1118
Comments
saml2Binding is always null in LogoutCommand.CommandResult
|
Logout over SOAP is not supported by the library. Implementing it would be quite complex as the session is normally handled by cookies on the client. A logout is done by deleting the cookie. So to be able to do a logout, there must be a front-channel request. Implementing logout would require some kind of cache holding a list of black-listed sessions that then would be killed on the next request. Is this something you really need? Or can you stick with logout over redirect/POST? Please also note that the metadata generated does not expose SOAP as an accepted binding for the logout endpoing. |
its unfortunately mandated for use, i am going to look for an exception. I did wip up a prototype, |
Non Security Issues
IDP initiated SOAP Logout doesnt seem to log user out, i noticed that the IDP has a error in the Federation log (opensso). I need to support both redirect and soap
code is https://github.com/ricardosaracino/SamlOwin
Debug Output
IDP Metadata
IDP Error Message
Information needed
What nuget packages are you using
package id="Sustainsys.Saml2" version="2.3.0" targetFramework="net48"
package id="Sustainsys.Saml2.Owin" version="2.3.0" targetFramework="net48"
package id="Microsoft.AspNet.Identity.Owin" version="2.2.2" targetFramework="net48"
package id="Microsoft.AspNet.Mvc" version="5.2.7" targetFramework="net48"
What is the expected behaviour
I would expect the user to be logged out
What happens instead.
User Remains logged in
Additional info
Please include
The text was updated successfully, but these errors were encountered: