Automatically call httpservice.send
Posted
by Matt Robinson
on Stack Overflow
See other posts from Stack Overflow
or by Matt Robinson
Published on 2010-03-29T16:49:07Z
Indexed on
2010/03/29
16:53 UTC
Read the original article
Hit count: 493
I have an application that displays the data from 3 xml files (auto generated from SQL table) using httpservices to get them. The first xml file is small and contains around 30 items, the second and thrid contain around 200-300 items each. The first dataset loads quickly and is invoked on creationComplete. The second and third are called from click events and take quite a few seconds to load. A user of the application will take at least 2-3 minutes reading the data from the first dataset so is there a way I can have the httpservice.send for the second and third xml files called automatically, straight after the first file has finished loading to be able to show the first dataset immediateley and get rid of the waiting times between dataset views. An answer doesnt need to be specific, just a point in the right direction would be great.
All answers greatly appreciated
Matt
© Stack Overflow or respective owner