Allowing users on external portal access to a Mendix application

2
Hi, I am looking at different options to allow users on an external web portal access to a Mendix application. They need to be able to click a product on the front end web portal and it take them to a Mendix application. The users will be authenticated on the external portal and we want to prevent anyone that hasn't logged on through that portal access to the application. I have had the following ideas on how to do it and I am looking for other ideas: Use Single Sign On to login into the Mendix application. Use a Post message/Request handler with a unique code that changes on both servers. Has anyone had experience with anything similar and know of any best practises? Regards
asked
2 answers
0

Simon

sorry for a somewhat late reaction, and you will probably have resolved this by now (if so, it would be great if you would elleborate in this thread!)

For one of my clients I create a portal(app) using Mendix, which holds all landing screens and MF for various parts of the app that a user can land on based on Role.

Access to that portal is restricted to the admins, and all of the landing pages are imbedded in our "main" website using Deeplink. Some of those pages do require a user to produce (extra) credentials, but I guess it might also be possible to check session-data on an already established session.

answered
0

I think he means something different here because he is talking about switching between two different websites where one is Mendix and the other can be anything.

I tried this with cookie settings etc but this was not succesfull. We now do it either with Kerberos if there is an LDAP we can use or otherwise do it through webservices where one time usage tokens are passed which can be used in the Post message (ie build a string with the token that already has been set with use of the secure webservice). You can use deeplink indeed for the return switch from the external website to the Mendix website.

Regards,

Ronald

answered