Re: New Features and Updates for dncomponents!

2024-05-17 Thread Jeff Hill
Nicely Done! Excited to try this out. On Friday, May 17, 2024 at 2:49:39 AM UTC-6 nikola wrote: > Here are the latest updates to the dncomponents project. Check it out on > GitHub: dncomponents > > > *New Reactivity Features* > > This release

Re: The GWT application hangs on the loading screen

2024-01-17 Thread Jeff Hill
} >>>> >>>> private void setNoCache(HttpServletResponse httpResponse) { >>>> Date now = new Date(); >>>> httpResponse.setDateHeader("Date", now.getTime()); >>>> httpResponse.setDateHeader("Expires", now.getTime() - 8640L); >

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: Is there some description anywhere how to set up a decently usable GWT 2.10 development environment?

2022-12-15 Thread Jeff Hill
Hi, FWIW - have also been working with GWT since the start - it took a little while to get used to developing without the browser plugins (old GWT), but honestly, the "NEW" way of running GWT is much better in every way. Stick with it and ask questions. The community is amazing. We have a

Re: The file war\WEB-INF\lib\gwt-servlet.jar has a different size than GWT SDK library gwt-servlet.jar; perhaps it is a different version? gwt-servlet.jar

2022-11-16 Thread Jeff Hill
I used to see that when I was using a newer GWT version than what was checked into WEB-INF/lib jars... Try taking the gwt-servlet.jar from your GWT library and replacing the gwt-servlet.jar in your web app lib folder. (Eclipse used to have an autofix option that would do that for you). Jeff