How to find out why compiled GWT app doesn't initialize but works in hosted mode ?
In production it doesn't even show initial view. No exceptions (there are none in JavaScript I guess), no errors. Just empty webpage.
I'm using Chrome.
| show 1 more comment |
|
In the absence of errors in the console and no visible activity on the page it usually means that the page is not set-up correctly so:
Post more code/information if you would like a further discussion. |
|||
|
|
The strange part about this issue is that it does work, but with any other browser, including IE!? And not Chrome?! What I did was to follow step by step the GWT tutorial to create an app (StockWatcher) In development mode it worked flawlessly in Chrome, but after I compiled the project, the result was no longer working inside Chrome, though the rest of the browsers worked! So, try to see if the production version works inside other browsers. |
|||
|
|
<script type="text/javascript" language="javascript" src="module_name/module_name.nocache.js"></script>module_name has to be the same like in your*.gwt.xml– ajozwik Mar 22 '12 at 8:56