Dual screen support: Is it possible for a user to be logged in twice at the same time?

3
A client would like to be able to use two monitors while using the application. Both monitors will contain a browser window. The client will log in in both browser instances and wishes to use the second monitor for researching data while editing a form on the first monitor. Is it possible to be logged in twice with one user in two separate browser instances? Will this result in two Mendix sessions for one user, and are there any problems to be expected? Will this be seen as one concurrent named user? Thanks in advance for any insights or experience.
asked
1 answers
3

If the client uses the same browser, two windows, you will share the session (same cookie: same session). Different browsers (ie Firefox & Chrome) will result in different sessions, but is only possible if explicitly enabled. (The default is to only allow one session per user).

answered