我的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故障? 如何让两台服务器同时工作?