在GAE上部署Web应用程序时出现RPC失败消息

时间:2014-03-21 20:18:15

标签: java android google-app-engine http gwt

我的GWT网络应用程序中有以下服务器类。

 public class WTMServiceImpl extends RemoteServiceServlet implements WTMService {}

我定义了路径:

@RemoteServiceRelativePath("wtmService")

有效。然后我添加了一个http服务器类:

public class WTMhttpServiceImpl extends HttpServlet implements WTMhttpService {}

和路径:

@RemoteServiceRelativePath("wtmhttpService")
public interface WTMhttpService 
{
void doGet(HttpServletRequest request,HttpServletResponse response);
}

在部署应用程序时,我收到RPC Failure错误消息(500 POST Internal Server Error)。为什么我会遇到RPC故障? 如何让两台服务器同时工作?

0 个答案:

没有答案