Can GWT 2.4.0 run with Java EE5?

180 views Asked by At

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?

1

There are 1 answers

0
Mairbek Khadikov On BEST ANSWER

GWT compiles down to the html/css/javascript and it is possible make RPC calls to any platform (java, php, python, etc.).

RemoteServiceServlet works on server side. As long as you deploy your war to the container that supports servlet-api it will work fine.