Reputation: 653
I want want to intercept the response for an ajax request made inside a flash object via javascript. Is it possible?
Upvotes: 0
Views: 881
Reputation: 8288
Firebug is a good choice to trace HTTP requests and responses, including Ajax. If you prefer raw packets, wireshark is another choice, but requires more knowledge about network protocols.
Upvotes: 0
Reputation: 89
In Mozilla Firefox, install addons "Firebug" and "Flash firebug".
After installation, open firebug and click on "Net" tab, select "All".
You will see the requests as well as their responses for all the requests made to the server.
Upvotes: 1
Reputation: 14681
If you mean for debugging, yes you can. Firefox extension Firebug Firebug website will show you the connection.
For windows, Fiddler (Fiddler Website) will do it too.
Upvotes: 1