I have an GWT application hosted on googles app engine. It was running fine until I renamed the RPC method "test()" and now I get the following error:
javax.servlet.ServletContext log: greetServlet: An IncompatibleRemoteServiceException was thrown while processing this call.
com.google.gwt.user.client.rpc.IncompatibleRemoteServiceException: This application is out of date,
please click the refresh button on your browser. ( Could not locate requested method 'test(java.lang.String, long)' in interface 'de.test.client.GreetingService' )
For some reason reason it is still looking for the old signature of the method. I already compiled and cleaned my project several times and redeployed it, I cleared the browser cache and tried different browsers. In Dev-Mode it works fine as well.
Is there some additional cache build into app engine or something? Does someone ever experience similar issues?