How to print out the HttpWebRequest in C#? - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T06:10:32Zhttp://stackoverflow.com/feeds/question/314776http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/314776/how-to-print-out-the-httpwebrequest-in-c0How to print out the HttpWebRequest in C#?Alfred B. Thordarson2008-11-24T16:59:17Z2008-11-24T17:09:37Z
<p>I'm having a problem with a POST I'm doing using the HttpWebRequest object from C#. In order to analyze the problem I would like to know exactly what is being sent over the wire. The problem is that I'm also using HTTPS so I can't sniff the wire. I need some way of printing out to the Console all the relevant information of the HttpWebRequest object or something like that. Thank you for your help.</p>
http://stackoverflow.com/questions/314776/how-to-print-out-the-httpwebrequest-in-c/314788#3147884Answer by Michael Kniskern for How to print out the HttpWebRequest in C#?Michael Kniskern2008-11-24T17:05:22Z2008-11-24T17:05:22Z<p>You can use <a href="http://www.fiddler2.com/fiddler2/" rel="nofollow">Fiddler</a> to debug HTTPS traffic.</p>
http://stackoverflow.com/questions/314776/how-to-print-out-the-httpwebrequest-in-c/314796#3147960Answer by JB King for How to print out the HttpWebRequest in C#?JB King2008-11-24T17:09:37Z2008-11-24T17:09:37Z<p>Could you set a breakpoint in the code and look at the Request object in the debugger and look through the ServerVariables collections to see what it has? Alternatively, you could do a Response.Write looping over each element in the Request.ServerVariables and see the name/value pairs that are stored in a web page if you want that.</p>