Hi Everybody,
I've been stuck on that for a few days now. I'm trying to develop a Request filter (to do things like changing forms data on the fly).
I already have a http module and the response filter works perfectly.
From the BeginRequest Event I'm registering the filter doing
HttpContext context = ((HttpApplication)sender).Context;
Debug.WriteLine(string.Format("ContentType: {0} URL: {1}",
HttpContext.Current.Response.ContentType,
HttpContext.Current.Request.Url.AbsolutePath));
context.Request.Filter = new ProcessQueryRequestStream(context.Request.Filter);
In other if I do Request.Filter in the watch I can see my object but no methods from my filter stream are called for some reason.
I have no exceptions or error message it just seems that my filter stream is not being called. It's most likely I'm registering my filter too late but according ...
Go to the complete details ...