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?

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.