R – Flex: time how long HTTPService takes to load

actionscript-3apache-flexdebugginghttpservice

I am loading some XML with HTTPService in Flex. It is taking longer than I would like to load. So I want to do some trouble shooting, but in order to tell what is making a difference I need to be able to time the requests and how long they are taking.

What is the best way to time an http service to see how long it took from HTTPService.send() to HTTPService.result

Thanks!

Best Answer

This is a duplicate, go here to see my previous answer to the question:

In Flex, is there a way to determine how long an HTTPService.send() call takes round-trip?

Related Topic