Israel Lot
Israel Lot

Reputation: 653

Is there a way to intercept the response of an ajax http request made by a flash object via javascript?

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

Answers (3)

ciphor
ciphor

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

waseem
waseem

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

Tchoupi
Tchoupi

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

Related Questions