IncompatibleRemoteServiceException:此应用程序已过期,请单击浏览器上的刷新按钮

时间:2012-03-01 16:35:29

标签: java gwt gwt-rpc gwt2

我的GWT项目工作正常,但今天,经过一些改变并添加新的一个 异步调用未执行。唯一的例外是“此申请已经发布 日期,请点击浏览器上的刷新按钮。“所有其他 执行异步调用。

 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. ( Blocked attempt to access interface 'com.client.FInterface', which is not implemented by 'com.server.FServiceImpl'; this is either misconfiguration or a hack attempt )
at com.google.gwt.user.server.rpc.RPC.decodeRequest(RPC.java:252)
at com.google.gwt.user.server.rpc.RemoteServiceServlet.processCall(RemoteServiceServlet.java:206)
at com.google.gwt.user.server.rpc.RemoteServiceServlet.processPost(RemoteServiceServlet.java:248)

客户:

     public void onClick(ClickEvent event) {

                            fService.getRepositories(repocallback);

        }
    });

界面

   @RemoteServiceRelativePath("init")
  public interface FInterface extends RemoteService{    

    FCollection getRepositories();
 }

AsyncInterface

  public interface FInterfaceAsync {
void getRepositories(AsyncCallback<FCollection> repositoryCallback);
}

服务

   public class FService implements FInterfaceAsync {
FInterfaceAsync service =(FInterfaceAsync)GWT.create(FInterface.class);
ServiceDefTarget endpoint = (ServiceDefTarget) service;

    public FService(){
    endpoint.setServiceEntryPoint(GWT.getModuleBaseURL() + "init");
     }
        }

服务器

 public class FServiceImpl extends RemoteServiceServlet implements  FInterface {

       public FilnetFolderCollection getRepositories() {
       } 

 }

XML:

   <servlet>
   <servlet-name>FServlet</servlet-name>
  <servlet-class>com.server.FServiceImpl</servlet-class>
  </servlet>

  <servlet-mapping>
  <servlet-name>FServlet</servlet-name>
  <url-pattern>/FServiceImpl</url-pattern>
  </servlet-mapping>

有人帮我解决了这个问题。

3 个答案:

答案 0 :(得分:7)

如果浏览器中运行的Javascript代码与服务器上部署的Javascript版本不同,则会引发此错误。在这种情况下,浏览器中的JavaScript代码通过Async调用服务器上的方法,并且该方法的参数或参数类型的数量在服务器上已更改,此方法不存在,因为GWT服务器端无法找到具有该方法的方法参数或类型的数量,因为服务器上的方法更新。如果浏览器仍然具有缓存的GWT Javascript,并且当您启动浏览器时它不会从服务器加载新的JavaScript文件,而是从缓存中获取本地文件,则会发生这种情况。通过强制浏览器使用Ctrl-F5刷新浏览器中的本地缓存版本将会消失,因为将检索服务器中的新版本并且应该修复此问题。在生产中,如果未将webserver或java服务器的缓存设置设置为使nocache文件无效,则可能导致此问题。另请参阅http://code.google.com/webtoolkit/doc/latest/DevGuideCompilingAndDebugging.html#perfect_caching

答案 1 :(得分:1)

可以通过以下方式解决错误:

  1. 清除浏览器缓存
  2. 清除网络服务器缓存
  3. 清除类文件并重建项目。您可以通过运行&#34; clean&#34;来重建您的项目。和#34;安装&#34; maven的阶段或&#34;构建 - &gt;重建项目&#34; IntellijIdea菜单和&#34;项目 - &gt;清洁&#34; Eclipse中的菜单。

答案 2 :(得分:0)

在代码中进行服务器端更改后,您需要重新启动项目或重新加载Web服务器..它将解决问题