vote up 0 vote down star

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.

flag

2 Answers

vote up 4 vote down check

You can use Fiddler to debug HTTPS traffic.

link|flag
looks interesting – Andrew Bullock Nov 24 '08 at 17:06
Fiddler solved my problem - thanks a lot! – Alfred B. Thordarson Nov 24 '08 at 17:43
vote up 0 vote down

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.

link|flag

Your Answer

Get an OpenID
or

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