Navigation to external application

Hi,

at the moment I have two small applications (war’s).
I would like to have a third application managing the login and if login is successfull, either go to application 1 or application 2.
It seems like UI.getCurrent().navigate(“App1”) is not working, as the Route for App1 does not exist in the Login application.
Also UI.getCurrent().navigate(“http://mySite/App1”) is not working.

How can I achieve navigation to external URL’s without using Javascript?
Thank you

Have you tried UI.getCurrent().getPage().setLocation("url"); or UI.getCurrent().getPage().open("url","_self"); ?

Olli Tietäväinen:
Have you tried UI.getCurrent().getPage().setLocation("url"); or UI.getCurrent().getPage().open("url","_self"); ?

Oh man, really so simple? :slight_smile:
Many thanks Olli.