ateiob
ateiob

Reputation: 9106

Tool to Trace an HTML Post Submission?

Is there a way (or tool) that helps seeing (or logging) exactly what is being sent in an HTML <FORM METHOD=POST> in response to clicking a <INPUT TYPE="submit"> button?

Upvotes: 5

Views: 11954

Answers (5)

aziz punjani
aziz punjani

Reputation: 25796

Yes you could use a variety of tools such as Firebug or Developer tools in Chrome\Safari, you can see what is being sent to the server the response headers and body. You would have to "preserver log upon navigation" in Chrome or "persist" in Firebug to see the response.

In chrome it's under the Network tab, in Firebug it's under Net. P.s there are other tools for different browsers, i just use these two the most.

Upvotes: 1

George
George

Reputation: 1465

http://www.wireshark.org/ Works well. It tracks all network traffic and can process most (all?) protocols. You should see this as an HTTP request.

Upvotes: 3

cschooley
cschooley

Reputation: 586

The Google Chrome Web Tools will allow you to see what was sent in an HTTP request, the post vars, etc.

http://code.google.com/chrome/devtools/

or if you are a Firefox kind or person:

http://getfirebug.com/

Upvotes: 1

pricco
pricco

Reputation: 2783

You can try http://www.fiddler2.com/fiddler2/

Upvotes: 1

Related Questions