Search code examples
c#.nethttpwebrequestrfcwindows

See HttpWebRequest as string before GetResponse without using fiddler


How can i see HttpWebRequest object as string before calling GetResponse method? I want to see raw format of request something like this as in fiddler:

Content-Type: multipart/form-data; boundary=---------------------------2600251021003 
Content-Length: 338 
-----------------------------2600251021003 Content-Disposition: form-data; name="UPLOAD_FILEName"; filename="Searchlight062210 w price.csv" Content-Type: application/vnd.ms-excel 
,,,,, 
-----------------------------2600251021003 
Content-Disposition: form-data; name="submit" 
submit 
-----------------------------2600251021003-- 

I tried following code, but not worked because stream is not readable.

 string GetRequestString(HttpWebRequest req)
        {
            Stream stream2 = req.GetRequestStream(); 
            StreamReader reader2 = new StreamReader(stream2);
            return reader2.ReadToEnd();  

        }

Solution

  • If it is for logging purposes you could activate tracing by putting this in your app/web.config:

      <system.diagnostics>
        <sources>
          <source name="System.Net.Sockets" tracemode="protocolonly">
            <listeners>
              <add name="System.Net.Sockets" type="System.Diagnostics.TextWriterTraceListener" initializeData="network.log" />
            </listeners>
          </source>
        </sources>
    
        <switches>
          <add name="System.Net.Sockets" value="Verbose"/>
        </switches>
    
        <trace autoflush="true" />
      </system.diagnostics>
    

    Run your code and look at the generated log file.