I am using an HTTPService
in my Flex application. I want to load several xml files, each about 1mb in size. Sometimes I need to stop loading previous xml file and start loading a new one. If I use HTTPService.cancel();
or HTTPService.disconnect()
, it increase the time to get the answer from the server.
Is there a quick way to stop the previous loading in HTTPService
and start new one?