Say I have three HTTPServices I will use, and each has 5 different sets of request parameters and the reuslts need to go to a corresponding 5 places. The .send is under programatic control.
Should I: * create 15 <mx:HTTPService> tags (one for each query) in mxml * create three <mx:HTTPService> tags (one for each url) in mxml and programatically set the request parameters and the result callback function * create one <mx:HTTPService> tag and set everything programatically * instantiate the HTTPService objects programatically * create a component that provides a pool * something else I am concerned with speed, and the possibility of collision (starting to programatically change an instance's properties before it's data has come back from the prior call. TIA, Tracy

