Is there any way I can hook Fiddler up to capture requests and responses made using .NET HttpWebRequest and HttpWebResponse?
feedback
|
|
Check this blog post I think thats what you want. | |||
|
feedback
|
|
The Fiddler FAQ gives the answer to this. You essentially route your HTTP traffic through Fiddler (i.e. Use Fiddler as a proxy). Here's some links that will help: Which in turn links to here: You can achieve this via some configuration settings in the web.config file (for an ASP.NET application) like so:
See here for complete details on the Alternatively, you can use a WebProxy object in your code using something like:
See here for complete details on the WebProxy class. Also note the important "caveat" that is mentioned in the Fiddler FAQ:
| |||
|
feedback
|
|
If you can't, Wireshark is a similar tool that works at the network hardware level, so it can capture network traffic from any application. Wireshark is a bit more complex than Fiddler, and more general, but it's a great tool to have in your toolbox, and worth investigating a bit of time into. | |||||||||||||
feedback
|