EXT-GWT Question:

Download Job Interview Questions and Answers PDF

Explain how are we going to get the response from server side?

EXT GWT Interview Question
EXT GWT Interview Question

Answer:

For this purpose only GWT has one Asynchronous interface which has one parameter called AsyncCallBack, using this callback object it will call the client side code once the server completed the execution.
So basically all the calls to server side method will have two call back methods
onSuccess()
onFailure()

If the server side method executed properly then onSuccess() method will be called otherwise onFailure() method will be called, so based on this we can proceed with our functionality.

Download EXT GWT Interview Questions And Answers PDF

Previous QuestionNext Question
Tell me how to work with Server side communication?Do you know how to use RequestBuilder?