Reputation: 1319
response = service.getInfo(request);
How can I display an image while my response object is being populated? Service is a web service located on another server that I have no control over.
Any help is greatly appreciated.
Upvotes: 0
Views: 617
Reputation: 8788
The bottom line is that you will need some asynchronous process going on. And that implies AJAX. The library or methodology you use is up to you.
Upvotes: 1