Re: Handling response - Invoking web services asynchronously

2011-06-06 Thread Daniel Kulp
On Friday, June 03, 2011 10:06:39 AM David L wrote: > Hi all, > > What is the best practice for handling async call response? > Below is what I do normally, > > new AsyncHandler() { > @Override > public void handleResponse(Response res) { > try { > MyResponse v = res.g

Handling response - Invoking web services asynchronously

2011-06-03 Thread David L
Hi all, What is the best practice for handling async call response? Below is what I do normally, new AsyncHandler() { @Override public void handleResponse(Response res) { try { MyResponse v = res.get(); // process v ... }catch (Exception e) {