I have an application on my iPhone which sends out Http requests; is it possible to look into the HTTP stream using some tool??

I use standalone version of (IEInspector's) HttpAnalyzer tool on my windows PC to monitor HTTP traffic from all processes including the apps on Android phone (thanks to android debug bridge interface). Is there a similar tool for OS X that I can use for iPhone apps? Is this even allowed?

Thanks in advance.

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

I use Charles for HTTP monitoring. It can hook into the standard OS X proxy settings (as used by Safari) so it should work fine with the iPhone emulator in the SDK.

link|improve this answer
Tutorial on configuring CharlesProxy for iPhone: blog.mediarain.com/2009/08/iphone-http-connection-debugging – Samuh May 14 '10 at 7:22
feedback

To directly monitor the traffic you can use tools like Wireshark or tcpdump.

If you want to send 'fake' requests to a server or have a simple listening server running to receive requests from the iPhone you can use netcat and cURL. I've explained that case in a tutorial if that is sufficient for what you need. If not I recommend Wireshark, which has a GUI and is quite simple to understand.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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