Important Notice - Forums is archived
To simplify things and help our users to be more productive, we have archived the current forum and focus our efforts on helping developers on Stack Overflow. You can post new questions on Stack Overflow or join our Discord channel.

Vaadin lets you build secure, UX-first PWAs entirely in Java.
Free ebook & tutorial.
Embedded browser and WHMCS
Hello!
I need to embedd a window from whmcs system to vaadin application. I have managed to do so with following code:
ExternalResource test = null;
test = new ExternalResource("http://test.server.com/~whmcs/dologin.php?email=" + pEmail + "×tamp=" + times + "&hash=" + shas + "&goto=" + pGoto);
browser = new Embedded("", test);
browser.setType(Embedded.TYPE_BROWSER);
mainWindow.addComponent(browser);
Basically it uses WHMCS autoAuth service ( http://docs.whmcs.com/AutoAuth ) to make the login and directs into page needed.
However this does not work on internet explorer, It works fine with Firefox and chrome
Does anyone have a clue why so?