Hi Iqbal, Thank you for your reply I shall read over your blog
So I assume using RequestBuilder will avoid any SOP issues? On Feb 15, 1:57 pm, Iqbal Yusuf Dipu <[email protected]> wrote: > A) To communicate with RESTful resources you could use > com.google.gwt.http.client.RequestBuilder > > i.e. > > String url = "/rest/myresources"; > > RequestBuilder builder = new > RequestBuilder(RequestBuilder.GET, URL > .encode(url)); > builder.setCallback(showAllPlayerCallbackHandler); > try { > Request request = builder.send(); > } catch (RequestException e) { > GWT.log("RequestException ", e); > } > > B) I used com.google.gwt.xml.client.* packages to parse XML response. > > I've written up a post showing GWT to JAX-RS Jersey rest server > herehttp://iqbalyusuf.wordpress.com/gwt-uibinder-with-jax-rs-jersey/ > > Thanks. > > Iqbal -- 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.
