Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

This application is out of date, please click the refresh button on your browser. ( Expecting version 4 from server, got 5. )

Tags:

gwt

Please some body help me to solve this error "This application is out of date, please click the refresh button on your browser. ( Expecting version 4 from server, got 5. )" . I am using gwt 1.5.0 .

like image 351
JAB Avatar asked Jan 18 '11 05:01

JAB


2 Answers

Check if the gwt-servlet.jar is uptodate. The gwt-user.jar and gwt-servlet.jar must have the same version.

like image 121
Karl-Heinz Brender Avatar answered Oct 23 '22 00:10

Karl-Heinz Brender


Looks like you are getting IncompatibleRemoteServiceException exception. It says, that version of RPC server interface differs from interface, which RPC client is trying to use. Typically that happens, when you are actively developing client part and server part, and for some reason you forget to restart server or refresh your GWT application in browser after some RPC interface changes.

You can get more information in GWT docs (here and here) and in exception description.

like image 3
Kel Avatar answered Oct 23 '22 02:10

Kel