Reputation: 393
How does one inspect the HTTP traffic in Adobe Air? Obviously because it's running outside of a browser you can't use firebug ...
I've tried this: ServiceCapture
but it doesn't work either... (nothing shows up in the log). I also don't really want to pay for a program.
Any ideas?
Upvotes: 3
Views: 2924
Reputation: 2895
I believe both HTTPScoop (for mac) and HTTP Analyzer (Windows) will let you watch HTTP traffic from non-browser programs (I can see requests made by the Google Notifier, for example).
Upvotes: 2
Reputation: 106
Charles (http://www.charlesproxy.com/) works very well with AIR and has built-in AMF decoding, allowing the inspection of AMF requests/responses.
Upvotes: 6
Reputation: 281405
Wireshark will do that - it works at the network level, so it will work with any web technology.
The most important thing to know about is the right-click "Follow TCP/IP stream" command, which will show you your app's HTTP conversation.
Upvotes: 4