Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to log request inputstream with HttpModule, then reset InputStream position

I am trying to log the contents of an http request, using an IHttpModule like so:

public class LoggingModule : IHttpModule {     public void Init(HttpApplication context)     {         context.BeginRequest += ContextBeginRequest;     }      private void ContextBeginRequest(object sender, EventArgs e)     {         var request = ((HttpApplication)sender).Request;         string content;          using (var reader = new StreamReader(request.InputStream))         {             content = reader.ReadToEnd();         }          LogRequest(content)     } } 

The problem is that after reading the input stream to the end, the InputStream seems to have either disappeared or more likely, the cursor is at the end of the stream.

I have tried request.InputStream.Position = 0; and request.InputStream.Seek(0, SeekOrigin.Begin); but neither work.

like image 391
cbp Avatar asked Nov 05 '09 07:11

cbp


1 Answers

I've worked out the problem: I think that calling dispose on the StreamReader must be killing the InputStream too.

Instead of using the StreamReader I did the following:

        var bytes = new byte[request.InputStream.Length];         request.InputStream.Read(bytes, 0, bytes.Length);         request.InputStream.Position = 0;         string content = Encoding.ASCII.GetString(bytes); 

So the complete code:

public class LoggingModule : IHttpModule {     public void Init(HttpApplication context)     {         context.BeginRequest += ContextBeginRequest;     }      private void ContextBeginRequest(object sender, EventArgs e)     {         var request = ((HttpApplication)sender).Request;          var bytes = new byte[request.InputStream.Length];         request.InputStream.Read(bytes, 0, bytes.Length);         request.InputStream.Position = 0;         string content = Encoding.ASCII.GetString(bytes);          LogRequest(content)     } } 
like image 71
cbp Avatar answered Sep 17 '22 14:09

cbp