view post buffer of HttpWebRequest

  • Thread starter Thread starter Randy
  • Start date Start date
R

Randy

Is it possible to view the stream that is being POSTed to URI when using
HttpWebRequest class? If so, how? I'm posting MIME encoded key/value data
to a website. I want to verify that the stream looks something like this...



--------7cf2a327f01ae

Content-Disposition: form-data; name="login"



username

--------7cf2a327f01ae

Content-Disposition: form-data; name="pass"



password







Thanks,



-Randy
 
check out a tool called "proxyTrace", it is free, and would allow you to see
the whole HTTP flow - search google for it
 
Back
Top