Running 2 Mendix applications at the same time?

0
Hi everyone, Sometimes i have to work with 2 applications and run them simultaneously. But when i run one of the applications, i cannot run the other one because Mendix doesn’t allow to run more than one application at the same time at the same browser. Is there a way to solve this problem? Or is there a way to select which browser i want to use when i run the programs each time? (for example i want to run first application on Google chrome but the second one on Microsoft edge)
asked
1 answers
3

I came across this problem and answer, try this one https://community.mendix.com/link/questions/104915

This is the exact answer in the forum:
 

- In Project > Settings > Configuration > Server > Root URL: http://{appname}:{portnumber}  (make up different appname and port number per project)

- In your hosts file in C:\Windows\System32\drivers\etc add the different appnames with local ip address like so:

127.0.0.1   appname_1
127.0.0.1   appname_2
127.0.0.1   appname_3

Now you can run all the different apps and view them within the same brower (in tabs) without having issues with the sessions.

Props to Sjors Schultz

answered