I'm developing a GWT web App . Righ now I have one default EntryPoint: AppWeb.
The page works perfectly if I run it in the web browser:
http://localhost/AppWeb.
If I open a new tab, and write the same URL, the App works just fine as two instances.
Now, I just want that a simple button in my app open a new windows of the same app and same entry point, just like a new instance. But is not working. I'm using this:
Window.open("AppWeb?guiId=xxx", "_blank", "");
The problem is that the new tab is openen, but is not calling the onModuleLoad of the AppWeb entry point.