From 76fb6a4f9cf796fa71042c938061f95cc8ad796e Mon Sep 17 00:00:00 2001 From: Petr Bodnar Date: Sat, 30 Nov 2019 09:21:06 +0100 Subject: [PATCH] README.md - Only list used properties for Single Log Out (#398) * README.md - Only list used properties for Single Log Out Properties `casServerUrlPrefix` and `frontLogoutParameterName` are not really read by the SLO filter. Mainly the 1st one has no usage in this filter by design. * README.md - Only list used properties for Single Log Out Also removing unused `casServerUrlPrefix` from the code examples. --- README.md | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/README.md b/README.md index 24537ce..1e9dba1 100644 --- a/README.md +++ b/README.md @@ -794,7 +794,7 @@ type="java.lang.String" value="https://www.apereo.org/cas"/> ### Configuring Single Sign Out The Single Sign Out support in CAS consists of configuring one `SingleSignOutFilter` and one `ContextListener`. Please note that if you have configured the CAS Client for Java as Web filters, this filter must come before the other filters as described. -The `SingleSignOutFilter` can affect character encoding. This becomes most obvious when used in conjunction with applications such as Atlassian Confluence. Its recommended you explicitly configure either the [VT Character Encoding Filter](http://code.google.com/p/vt-middleware/wiki/vtservletfilters#CharacterEncodingFilter) or the [Spring Character Encoding Filter](http://docs.spring.io/spring/docs/current/javadoc-api/org/springframework/web/filter/CharacterEncodingFilter.html) with explicit encodings. +The `SingleSignOutFilter` can affect character encoding. This becomes most obvious when used in conjunction with applications such as Atlassian Confluence. It's recommended you explicitly configure either the [VT Character Encoding Filter](http://code.google.com/p/vt-middleware/wiki/vtservletfilters#CharacterEncodingFilter) or the [Spring Character Encoding Filter](http://docs.spring.io/spring/docs/current/javadoc-api/org/springframework/web/filter/CharacterEncodingFilter.html) with explicit encodings. #### Configuration @@ -802,12 +802,10 @@ The `SingleSignOutFilter` can affect character encoding. This becomes most obvio |----------|-------|----------- | `artifactParameterName` | The ticket artifact parameter name. Defaults to `ticket`| No | `logoutParameterName` | Defaults to `logoutRequest` | No -| `frontLogoutParameterName` | Defaults to `SAMLRequest` | No | `relayStateParameterName` | Defaults to `RelayState` | No | `eagerlyCreateSessions` | Defaults to `true` | No | `artifactParameterOverPost` | Defaults to `false` | No | `logoutCallbackPath` | The path which is expected to receive logout callback requests from the CAS server. This is necessary if your app needs access to the raw input stream when handling form posts. If not configured, the default behavior will check every form post for a logout parameter. | No -| `casServerUrlPrefix` | URL to root of CAS Web application context. | Yes #### CAS Protocol @@ -816,10 +814,6 @@ The `SingleSignOutFilter` can affect character encoding. This becomes most obvio CAS Single Sign Out Filter org.jasig.cas.client.session.SingleSignOutFilter - - casServerUrlPrefix - https://cas.example.com/cas - ... @@ -843,10 +837,6 @@ The `SingleSignOutFilter` can affect character encoding. This becomes most obvio artifactParameterName SAMLart - - casServerUrlPrefix - https://cas.example.com/cas - ...