We use WebSphere 7.x (It supports Java ee 5). We want to use gwt 2.4.0 and it’s feature – gwt RPC.
GWT RPC mechanism causes to use servlet in server side (which works only by extending RemoteServiceServlet – gwt class). Does GWT (specifically RemoteServiceServlet) will work with Java ee 5?
We use WebSphere 7.x (It supports Java ee 5). We want to use gwt
Share
GWT compiles down to the html/css/javascript and it is possible make RPC calls to any platform (java, php, python, etc.).
RemoteServiceServletworks on server side. As long as you deploy your war to the container that supportsservlet-apiit will work fine.