I'm trying to isolate a bug that exists either in Python's httplib2 HTTP client or an API. (First guess is the API.) While using httplib2 to POST data to a RESTful API, I'm getting a 401 response status (no authorization) and saving data to the API.

I'd like to examine the HTTP request and response to the client, the very strings put onto and received from the network. The httplib2 code seems too involved to easily capture the values from within it, and might possibly miss the bug.

It seems quicker to look at the network communications with the client. Is there some tool I can use to monitor the client's communications with the local network socket?

link|improve this question

71% accept rate
Wireshark – JBernardo Dec 19 '11 at 21:35
Does changing httplib2.debuglevel not produce anything useful? – David Alber Dec 19 '11 at 21:37
Haven't looked at that. – chernevik Dec 19 '11 at 21:42
how can your client be at fault if the server is both returning a 401 status and saving the data POSTed to it? – matt b Dec 19 '11 at 22:21
There is the possibility that the client is somehow borking the status code. I don't think that's likely, but I'd like to know how to exclude it. – chernevik Dec 20 '11 at 1:20
show 1 more comment
feedback

2 Answers

up vote 3 down vote accepted

I use http://www.charlesproxy.com for all my network debugging.

link|improve this answer
Took a little while to figure out usage, but this did what I was looking for. Noobs like myself: Capturing traffic with curl / python requires enabling SSL Proxying within Charles for your target host (possibly different ways for different clients), and routing your curl / python requests through the localhost proxy provided by Charles. Which now seems defaulted to port 8888, rather than the 8080 mentioned in documentation. – chernevik Jan 2 at 22:28
feedback

http://www.wireshark.org/ enables you to monitor local sockets too. I was able to monitor local loopback even on windows using trick whit adding route.

http://wiki.wireshark.org/CaptureSetup/Loopback check Other Alternatives

Or you can just write raw socket server that listen on client side on one port and send data to server on other port and vice versa and prints out all data. It should not take more than dozen of lines of code

link|improve this answer
great tool, but couldn't find a path for seeing a client /server dialogue over SSL – chernevik Jan 2 at 22:41
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.