On 20 août, 10:34, Nil <[email protected]> wrote: > Hi, > > I am new to GWT. I would like to know : > 1. Does GWT support Servlet 3.0 ? If yes, then are there any code > changes needed from the developer ?
Neither GWT-RPC (including deRPC) or the upcoming RequestFactory support Servlet 3.0; they're both based on the Servlet 2.5 API (and calling synchronous/blocking methods). You should be able to write your own RemoteServiceServlet (and/or extend/adapt it) to use the Servlet 3.0 API and pass the AsyncContext around. Everything else is independent from the server environment, so you're free to use whatever fits you (PHP, RoR, Java servlet, JAX-RS, etc.) Note that the DevMode embeds a Jetty 6 (soon to be upgraded to Jetty 7) which only supports the Servlet 2.5 API, so you'd have to use your own server to debug/test your code (see http://code.google.com/webtoolkit/doc/latest/FAQ_DebuggingAndCompiling.html#How_do_I_use_my_own_server_in_hosted_mode_instead_of_GWT's ) -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
