dmose
dmose

Reputation: 393

Fiddler/Firebug for Adobe AIR?

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

Answers (4)

Chris R
Chris R

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

Peter Dolukhanov
Peter Dolukhanov

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

Alfred Myers
Alfred Myers

Reputation: 6453

Try Fiddler: http://www.fiddler2.com/fiddler2/

Upvotes: 8

RichieHindle
RichieHindle

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

Related Questions