2016-06-02 16:07:45 +00:00
===== IDP SingleLogoutService sub element
2016-06-02 20:50:43 +00:00
The `SingleLogoutService` sub element defines the logout SAML endpoint of the IDP. The client adapter will send requests
2022-10-19 06:49:23 +00:00
to the IDP formatted via the settings within this element when it wants to log out.
2016-06-02 16:07:45 +00:00
[source,xml]
----
<SingleLogoutService validateRequestSignature="true"
validateResponseSignature="true"
signRequest="true"
signResponse="true"
requestBinding="redirect"
responseBinding="post"
postBindingUrl="posturl"
redirectBindingUrl="redirecturl">
----
signRequest::
2016-06-10 10:56:37 +00:00
Should the client sign logout requests it makes to the IDP? This setting is _OPTIONAL_.
2016-06-02 16:07:45 +00:00
Defaults to whatever the IDP `signaturesRequired` element value is.
signResponse::
2016-06-10 10:56:37 +00:00
Should the client sign logout responses it sends to the IDP requests? This setting is _OPTIONAL_.
2016-06-02 16:07:45 +00:00
Defaults to whatever the IDP `signaturesRequired` element value is.
validateRequestSignature::
2016-06-10 10:56:13 +00:00
Should the client expect signed logout request documents from the IDP? This setting is _OPTIONAL_. Defaults to whatever the IDP `signaturesRequired` element value is.
2016-06-02 16:07:45 +00:00
validateResponseSignature::
2016-06-10 10:56:13 +00:00
Should the client expect signed logout response documents from the IDP? This setting is _OPTIONAL_. Defaults to whatever the IDP `signaturesRequired` element value is.
2016-06-02 16:07:45 +00:00
requestBinding::
2016-06-10 10:59:17 +00:00
This is the SAML binding type used for communicating SAML requests to the IDP. This setting is _OPTIONAL_.
2016-06-02 20:50:43 +00:00
The default value is `POST`, but you can set it to REDIRECT as well.
2016-06-02 16:07:45 +00:00
responseBinding::
2016-06-10 10:59:17 +00:00
This is the SAML binding type used for communicating SAML responses to the IDP. The values of this can be `POST` or `REDIRECT`. This setting is _OPTIONAL_.
2016-06-02 20:50:43 +00:00
The default value is `POST`, but you can set it to `REDIRECT` as well.
2016-06-02 16:07:45 +00:00
postBindingUrl::
2016-06-02 20:50:43 +00:00
This is the URL for the IDP's logout service when using the POST binding. This setting is _REQUIRED_ if using the `POST` binding.
2016-06-02 16:07:45 +00:00
redirectBindingUrl::
2016-06-02 20:50:43 +00:00
This is the URL for the IDP's logout service when using the REDIRECT binding. This setting is _REQUIRED_ if using the REDIRECT binding.
2016-06-02 16:07:45 +00:00