Automatic Login into Mendix from SAP

0
We have a SAP portal for users. From that portal users want to connect to a Mendix app. We had a solution in Mendix 8.6, but I need to upgrade to Mendix 10.18. The old app used a RedirectPage with <<form action="/signin/" name="signin" method="post" style="display:none;"> <input type="text" name="uuid" value="${uuid}" /></form>> as Displaystring in a FormatString. This does not work anymore in Mendix 10.18, it now shows the login screen. We used a custom java source to Signin into Mendix. That custom java source still returns a UUID, but the redirect does not work anymore. How can I fix this problem?  
asked
2 answers
0

Hello Jan van de Glind,

 

In mendix 10 deeplink module has been deprecated ,need to understand after upgrading from version 8 to version 10,are you still using old deeplink module?

In version 10 we need to handle it in other way MF url /page url.

then we need to make the final url as below to land on specific page.

https://abc-accp.mx.lowcode.cloud/SSO/login?cont=p/AccessRequest/

image.png

answered
0

Ik solved my problem. Because I know the user and password, I show a dark screen with a Microflow Timer and call the nanoflow ACT_Login. This will open a user session.

answered