Re: The GWT application hangs on the loading screen

2024-01-19 Thread Antonio Capone
Hi Jeff, all, your advice was very helpful to me, thanks a lot. I put an alert message at the first line of your onModuleLoad method. I put 3 more alert message in the entrypoint classes defined within the 3 gwt.xml files. I did this work first locally, where the project goes up without

Re: The GWT application hangs on the loading screen

2024-01-17 Thread Jeff Hill
There might be an error in the actual code of the app (exception or other). I suggest you try some primitive debugging with a Window.alert message as the first line of your onModuleLoad method. ie... @Override public void onModuleLoad() { Window.alert("App is starting"); On Wednesday,

Re: The GWT application hangs on the loading screen

2024-01-17 Thread Antonio Capone
Hi Frank, thanks for the support. No errors appear in the application logs of the application nor in the Develop Tool. The nocache.js file is successfully loaded. What else could it be? Regrds Il giorno lunedì 15 gennaio 2024 alle 15:15:56 UTC+1 Frank Hossfeld ha scritto: > Did you check in

Re: The GWT application hangs on the loading screen

2024-01-15 Thread 'Frank Hossfeld' via GWT Users
Did you check in the Developer Tools ->. Network if the nochache.js gets loaded? Antonio Capone schrieb am Montag, 15. Januar 2024 um 09:53:58 UTC+1: > Hello everyone and thanks for the advice you are giving me. > The nocache.js file is regularly generated and loaded. I don't think I > have a

Re: The GWT application hangs on the loading screen

2024-01-15 Thread Antonio Capone
Hello everyone and thanks for the advice you are giving me. The nocache.js file is regularly generated and loaded. I don't think I have a problem with the URI because I can also see the home page grid but nothing more. No errors appear in the developer tool. Note that I upgraded from GWT 2.1 to

Re: The GWT application hangs on the loading screen

2024-01-13 Thread Craig Mitchell
I use a servlet filter to tell the browser not to cache the nocache files: public class ServletFilter implements Filter { private static final String NO_CACHE = ".nocache.js"; @Override public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws

Re: The GWT application hangs on the loading screen

2024-01-12 Thread Jeff Hill
There may have been some Chrome updates in the last few months; occasionally, I must hard refresh to get the latest code from nocache.js. (That did not happen in years past) Anyway, I always check in Developer Tools in Chrome to make sure there are no errors in the "Console" and all the

Re: The GWT application hangs on the loading screen

2024-01-11 Thread 'Frank Hossfeld' via GWT Users
Check if the nochache.js gets loaded at a applicaiton staert or if it got a 404. In this case something with the URI is not ok. Antonio Capone schrieb am Donnerstag, 11. Januar 2024 um 10:56:55 UTC+1: > Hi all. I deployed an app using GWT on Cloud. It's deployed and working, > but when you log

The GWT application hangs on the loading screen

2024-01-11 Thread Antonio Capone
Hi all. I deployed an app using GWT on Cloud. It's deployed and working, but when you log in, the browser window just says "Loading" and seems to hang indefinitely. Works fine locally in Eclipse. Has this ever happened to you? Is there anyone who can help me understand why this happens? Many