Re: Servlets 3.0 and GWT

2009-09-10 Thread Ittai
Wow, simple and elegant. Thank you very much! This indeed looks like what I was looking for On Sep 10, 3:38 am, Sri sripathikrish...@gmail.com wrote: You can use the RequestBuilder class in GWT to make connections to your server. Below is the sample code that you can use (from

Servlets 3.0 and GWT

2009-09-09 Thread Ittai
Hi All, I'm stepping into the world of AJAX and due to a need I have in strong built-in Server Push technologies I'm giving the Servlets 3.0 (under Java EE 6 preview) a try. I'm posting here because my client side will (hopefully) be based on GWT and after going over the StockWatcher tutorial and

Re: Servlets 3.0 and GWT

2009-09-09 Thread Sri
You can use the RequestBuilder class in GWT to make connections to your server. Below is the sample code that you can use (from com.google.gwt.examples.http.client.GetExample ) public static void doGet(String url) { RequestBuilder builder = new RequestBuilder(RequestBuilder.GET, url);