Skip to content

Commit 5720593

Browse files
Merge pull request #5832 from NutharaNR/disable-double-encoding
2 parents a4e3990 + e35b12d commit 5720593

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

en/includes/guides/authentication/saml/saml-artifact-binding.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ The [SAML 2.0 Binding specification](https://docs.oasis-open.org/security/saml/v
8686
8787
The default time limit is set for 4 minutes. To change it, set a custom time (in minutes) for the following configuration in the `<IS_HOME>/repository/conf/deployment.toml` file.
8888
89-
```
89+
```toml
9090
[saml.artifact]
9191
validity= 4
9292
```
@@ -95,7 +95,7 @@ validity= 4
9595
9696
Your application can resolve artifacts issued by {{product_name}} by sending a back-channel SOAP request to the following endpoint.
9797
98-
```
98+
```bash
9999
https://<IS_HOST>:<IS_PORT>/samlartresolve
100100
```
101101
@@ -209,6 +209,17 @@ SAML2 POST Binding sends the SAML response via browser POST, creating a cross-or
209209
210210
If your are using a different URL, add that as an allowed origin.
211211
212+
{% if is_version == "7.1.0" or is_version == "7.2.0" %}
213+
!!! info
214+
215+
By default, {{product_name}} double-encodes the SAML artifact value. {% if is_version == "7.1.0" %}From update level **7.1.0.43** onwards,{% elif is_version == "7.2.0" %}From update level **7.2.0.8** onwards, {% endif %}this behavior can be disabled to enforce specification-compliant SAML artifact handling by adding the following configuration to the `deployment.toml` file:
216+
217+
```toml
218+
[saml.artifact]
219+
disable_double_encoding = true
220+
```
221+
{% endif %}
222+
212223
2. Restart {{product_name}}.
213224
214225
### Integrate application with {{product_name}}

0 commit comments

Comments
 (0)