Data retrieval is very fast. The speed difference should be negligible. Regarding performance, focus on optimizing the rendering, which is the bottleneck.
Tracy ________________________________ From: [email protected] [mailto:[EMAIL PROTECTED] On Behalf Of gers32 Sent: Wednesday, November 28, 2007 2:47 AM To: [email protected] Subject: [flexcoders] Re: HttpService not called the first time Hi Tracy, That's a good idea. Now, I'm wondering what the trade off is between one HttpService per Component (bigger SWF file size, but parallel requests thus faster data access on multi-processor boxes?) and one single HttpService for the whole application (smaller SWF file, but sequential thus slower data retrieval?). I'd appreciate an example using AsyncToken, if you have one. Thanks, Chris. --- In [email protected] <mailto:flexcoders%40yahoogroups.com> , "Tracy Spratt" <[EMAIL PROTECTED]> wrote: > > Note that you really need only a single instance of HTTPService. You > can set the url, method, etc and build the request object using AS, and > can handle the result conditionally using AsyncToken. > > > > Post if you need examples. > > > > Tracy

