Deeplink issue with SAML SSO

0
Hello, I have two applications using SAML for SSO deployed on cloud  https://MxApp1-test.mendixcloud.com/sso/ https://MxApp2-test.mendixcloud.com/sso/ I have configured deeplink in the first application (https://MxApp1-test.mendixcloud.com/link/Object/YourValue)  and set the 'DeepLink.Loginlocation' constant to  "https://MxApp1-test.mendixcloud.com/sso/login?f=true&cont=" When I try to access the App1 deep link from App2, user is getting logged into App1 but not being navigated to the requested deep link. If I clear the 'DeepLink.Loginlocation' constant, user is aken to mendix login page and upon entering the credentials, the user is taken to the requested deep link. Can somebody help me in getting this work with SSO? I have tried changing the 'DeepLink.Loginlocation' constant to the below values and it did not work "https://MxApp1-test.mendixcloud.com/sso/logincont=" "https://MxApp1-test.mendixcloud.com/sso?cont=" "https://MxApp1-test.mendixcloud.com/sso?f=true&cont="     Thanks in advance.      
asked
3 answers
3

Try this without the url in front of it: 

/SSO/login?f=true&cont=

cheers! 👋

answered
0

Thank you! Even after updating the 'DeepLink.Loginlocation' constant to '/SSO/login?f=true&cont=' the user is landing on the home page instead of the one requested in deep link.

Below is some information on how the deep link transformed into different URLs before landing on home page:

1. https://MxApp1-test.mendixcloud.com/link/Object/1234

2. https://MxApp1-test.mendixcloud.com/SSO/login?f=true&cont=link/Object/1234

3. https://testsso.CompanyDomain.com/saml/idp/res?id=/APM/mdxportal-test_SAML_Resource

4. https://MxApp1-test.mendixcloud.com/index.html

 

 

answered
0

Sounds like your deeplink configuration is missing something. Have you changed your navigation so that the Home page uses a microflow instead of displaying a page?

answered