views:

136

answers:

2

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!

A: 

I would recommend Charles Proxy ( http://www.charlesproxy.com/download/ ). I use it daily as a main tool for monitoring Flex traffic (it even supports AMF). There's a free version with some annoyances (I think it only runs 30 min. each time you run it, and displays a popup from time to time).

Robert Bak
+1  A: 

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

http://stackoverflow.com/questions/1883668/in-flex-is-there-a-way-to-determine-how-long-an-httpservice-send-call-takes-ro/1884207#1884207

invertedSpear
Thanks, that was what I ended up doing myself as well.
John Isaacks