You may be better off using Remote Objects. In some of my components I have multiple remote object requests being made at the same time (Flash is intelligent enough to bundle all of these requests into one call if the requests come fast enough).
You can use one file to handle all of the requests as each call can be made to different methods. In my case I use PHP on the server along with WebORB and it has been rock solid. --- In [email protected], "isa_loyer" <isa_loyer@...> wrote: > > Dear Flexer, > > I created an Air application. > On loading my component, I'd to make simultaneous request to my database to > load some data to my component. > > My component is a form with several comobobox and and text field. > > But to do that I have two major problem. > - Sometimes, my form (my component) is loaded but there no information in my > text field, perhaps request is not finished? but how to verify that and how > to solve. > - Other question, as requests with http service is for different table, one > to load sudent, other to load note, other to load teaching , is it possible > to do this request in the same php file and to get all thos informations with > the same E4X file. > > Thanks for help >

