vote up 6 vote down star
1

I'm writing a web service (using ASP.NET MVC) and for support purposes we'd like to be able to log the requests and response in as close as possible to the raw, on-the-wire format (i.e including HTTP method, path, all headers, and the body) into a database.

What I'm not sure of is how to get hold of this data in the least 'mangled' way. I can re-constitute what I believe the request looks like by inspecting all the properties of the HttpRequest object and building a string from them (and similarly for the response) but I'd really like to get hold of the actual request/response data that's sent on the wire.

I'm happy to use any interception mechanism such as filters, modules, etc. and the solution can be specific to IIS7. However, I'd prefer to keep it in managed code only.

Any recommendations?

Edit: I note that HttpRequest has a SaveAs method which can save the request to disk but this reconstructs the request from the internal state using a load of internal helper methods that cannot be accessed publicly (quite why this doesn't allow saving to a user-provided stream I don't know). So it's starting to look like I'll have to do my best to reconstruct the request/response text from the objects... groan.

Edit 2: Please note that I said the whole request including method, path, headers etc. The current responses only look at the body streams which does not include this information.

Edit 3: Does nobody read questions around here? Five answers so far and yet not one even hints at a way to get the whole raw on-the-wire request. Yes, I know I can capture the output streams and the headers and the URL and all that stuff from the request object. I already said that in the question, see:

I can re-constitute what I believe the request looks like by inspecting all the properties of the HttpRequest object and building a string from them (and similarly for the response) but I'd really like to get hold of the actual request/response data that's sent on the wire.

If you know the complete raw data (including headers, url, http method, etc.) simply cannot be retrieved then that would be useful to know. Similarly if you know how to get it all in the raw format (yes, I still mean including headers, url, http method, etc.) without having to reconstruct it, which is what I asked, then that would be very useful. But telling me that I can reconstruct it from the HttpRequest/HttpResponse objects is not useful. I know that. I already said it.


Please note: Before anybody starts saying this is a bad idea, or will limit scalability, etc., we'll also be implementing throttling, sequential delivery, and anti-replay mechanisms in a distributed environment, so database logging is required anyway. I'm not looking for a discussion of whether this is a good idea, I'm looking for how it can be done.

flag

73% accept rate
Is this a SOAP web service? – Kev Jun 24 at 13:47
@Kev - No, it's a RESTful service implemented using ASP.NET MVC – Greg Beech Jun 24 at 13:48
ah...ok...was going to suggest a SoapExtension class. – Kev Jun 24 at 14:16
Interesting project... if you do end up doing it yourself please come and post your solution :) – womp Jun 25 at 17:33

8 Answers

vote up 1 vote down

use a IHttpModule:

    namespace Intercepts
{
    class Interceptor : IHttpModule
    {
    	private readonly InterceptorEngine engine = new InterceptorEngine();

    	#region IHttpModule Members

    	void IHttpModule.Dispose()
    	{
    	}

    	void IHttpModule.Init(HttpApplication application)
    	{
    		application.EndRequest += new EventHandler(engine.Application_EndRequest);
    	}
    	#endregion
    }
}

    class InterceptorEngine
    {		
    	internal void Application_EndRequest(object sender, EventArgs e)
    	{
    		HttpApplication application = (HttpApplication)sender;

    		HttpResponse response = application.Context.Response;
    		ProcessResponse(response.OutputStream);
    	}

    	private void ProcessResponse(Stream stream)
    	{
    		Log("Hello");
    		StreamReader sr = new StreamReader(stream);
    		string content = sr.ReadToEnd();
    		Log(content);
    	}

    	private void Log(string line)
    	{
    		Debugger.Log(0, null, String.Format("{0}\n", line));
    	}
    }
link|flag
vote up 0 vote down

HttpRequest and HttpResponse pre MVC used to have a GetInputStream() and GetOutputStream() that could be used for that purpose. Haven't look into those part in MVC so Im not sure they are availavle but might be an idea :)

link|flag
vote up 0 vote down

I know it's not managed code, but I'm going to suggest an ISAPI filter. It's been a couple of years since I've had the "pleasure" of maintaining my own ISAPI but from what I recall you can get access to all this stuff, both before and after ASP.Net has done it's thing.

http://msdn.microsoft.com/en-us/library/ms524610.aspx

If a HTTPModule isn't good enough for what you need, then I just don't think there is any managed way of doing this in the required amount of detail. It's gonna be a pain to do though.

link|flag
vote up 0 vote down

I agree with the others, use an IHttpModule. Take a look at the answer to this question, which does almost the same thing that you are asking. It logs the request and response, but without headers.

How to trace ScriptService WebService requests?

link|flag
vote up 0 vote down

To FigmentEngine: response.OutputStream has CanRead property as False (framework 3.5), so it can not be readed.

link|flag
vote up 0 vote down

Agree with FigmentEngine, IHttpModule appears to be the way to go

look into httpworkerrequest readentitybody and GetPreloadedEntityBody

to get the httpworkerrequest you need to do this:

(HttpWorkerRequest)inApp.Context.GetType().GetProperty("WorkerRequest", bindingFlags).GetValue(inApp.Context, null);

where inApp is the httpapplication object...

link|flag
I've already said that answer isn't suitable because it doesn't capture most of the information I asked for. How is this answer in any way helpful? – Greg Beech Jun 30 at 17:55
vote up 0 vote down

I am seeing the same problem as Alex mentioned above using the HttpModule to read the response stream. It says "Stream was not readable". Do I need to add any logic to allow me to read the response.OutputStream without having this problem?

Thanks,

-Raju

link|flag
vote up 0 vote down

Well, I'm working on a project and did, maybe not too deep, a log using the request params:

Take a look:

public class LogAttribute : ActionFilterAttribute
{
    private void Log(string stageName, RouteData routeData, HttpContextBase httpContext)
    {
        //Use the request and route data objects to grab your data
        string userIP = httpContext.Request.UserHostAddress;
        string userName = httpContext.User.Identity.Name;
        string reqType = httpContext.Request.RequestType;
        string reqData = GetRequestData(httpContext);
        string controller = routeData["controller"];
        string action = routeData["action"];

        //TODO:Save data somewhere
    }

    //Aux method to grab request data
    private string GetRequestData(HttpContextBase context)
    {
        StringBuilder sb = new StringBuilder();

        for (int i = 0; i < context.Request.QueryString.Count; i++)
        {
            sb.AppendFormat("Key={0}, Value={1}<br/>", context.Request.QueryString.Keys[i], context.Request.QueryString[i]);
        }

        for (int i = 0; i < context.Request.Form.Count; i++)
        {
            sb.AppendFormat("Key={0}, Value={1}<br/>", context.Request.Form.Keys[i], context.Request.Form[i]);
        }

        return sb.ToString();
    }

You can decorate your controllers class for log it entirely:

[Log]
public class TermoController : Controller {...}

or log just some individual action methods

[Log]
public ActionResult LoggedAction(){...}
link|flag

Your Answer

Get an OpenID
or

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