user243655
user243655

Reputation: 8595

How to capture local HTTP traffic

I am developing web server where client makes HTTP request to server s1 and server s1 makes HTTP request to server s2 and server s3. Now could you let me know how can I capture HTTP requests/response traffic from client to s1 and s1 to s2 and s3? all servers are running on my local machine.

Upvotes: 1

Views: 4680

Answers (2)

jfox
jfox

Reputation: 66

I usually use Wireshark. Its an all purpose packet capture program with a set of useful filters for looking through what was sent/received.

Upvotes: 1

change_is_necessity
change_is_necessity

Reputation: 707

you may install Web Debugging Proxy which logs all HTTP(S) like the fiddler software. it records everything you need. [Fiddler link] http://www.fiddler2.com/fiddler2/

Upvotes: 0

Related Questions