Skip to content

Commit b7adac5

Browse files
committed
removing 6.1.1
1 parent 4b67ecf commit b7adac5

1 file changed

Lines changed: 0 additions & 14 deletions

File tree

  • content/en/docs/marketplace/platform-supported-content/modules/SAML

content/en/docs/marketplace/platform-supported-content/modules/SAML/_index.md

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -518,20 +518,6 @@ Page URLs and Microflow URLs are supported with SAML for Mendix version 10.6 and
518518
1. In the **Runtime** tab of the **App Settings**, configure the page **URL prefix** to **link** instead of the default **P** to maintain compatibility with existing URLs.
519519
2. Ensure to remove the Deep Link module from your app to start the app successfully. For more information, see the [Migrating to Page and Microflow URLs](/appstore/modules/deep-link/#migrate-page-micro) section of the *Deep Link*.
520520

521-
#### Steps for SAML Versions Below v3.6.15 and v4.0.0
522-
523-
1. To implement the SSO redirection, add the following lines of code to your login page (for example, `login.html`):
524-
* Extract the return URL: `var returnURL = window.location.hash.substring(1) + window.location.search;`
525-
* For automatic redirection: use `window.onload` to automatically redirect users to the SSO login page.
526-
`window.location.href = 'sso/login' + (returnURL ? '?cont=link' + encodeURIComponent(returnURL) : '');` or,
527-
* For manual redirection: add an onclick event to the button that manually triggers the SSO login.
528-
`this.href = 'sso/login' + (returnURL ? '?cont=link' + encodeURIComponent(returnURL) : '');`
529-
2. To allow the end users to navigate to the desired page, URL can be formed as follows:
530-
* If a single IdP is configured, the URL will be the base URL of your application followed by `SSO/login?cont={page/Microflowurl}`.
531-
For example, `http://localhost:8080/SSO/login?cont=link/pagepath`.
532-
* If Multiple IdPs are configured, you can specify which IdP should be used by adding the alias (MyIdPAlias) `SSO/login?_idp_id={MyIdPAlias}&cont={page/Microflowurl}`.
533-
For example, `http://localhost:8080/SSO/login?_idp_id=Okta&cont=link/pagepath`.
534-
535521
#### Steps for SAML Versions above v3.6.17 and v4.0.1
536522

537523
1. To use the Page URL functionality, replace the content of *login.html* with the content of *login-with-mendixsso-automatically.html* (located in the **resources** > **mendixsso** > **templates** folder) without changing the file name.

0 commit comments

Comments
 (0)