Is there any way I can hook Fiddler up to capture requests and responses made using .NET HttpWebRequest and HttpWebResponse?
|
1
|
|
|
|
|
|
Check this blog post I think thats what you want. |
||
|
|
|
|
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:
|
||
|
|
|
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. |
||||||||
|
|
|
Maybe I don't understand your question, but Fiddler is a web debugger (proxy). If your requests were send through the proxy, it captures it. Please describe, what you (really) want to do. |
||
|
|
