I have a GWT application where users save the unlimited side of a browser based application. Each time we update the application - if users click on restart in their browsers, then everything will be fine. However, it usually happens that they continue to use the already open version of the application, that is, the version serviced before the update, and then experience unclear errors related to RPC, since Javascript on the client side no longer synchronizes with what is on the server.
Does GWT have any mechanism you can enable or include in your code to handle this. I do not need any smart handling of the situation, for example. trying to restart the application and restore the current state of the user, a simple dialog box explaining that the client and server are no longer synchronized and that the web application needs to be restarted would be enough.
source
share