Tagged Questions
The ihttpmodule tag has no wiki summary.
25
votes
10answers
8k views
Logging raw HTTP request/response in ASP.NET MVC & IIS7
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 ...
5
votes
4answers
178 views
Requests for static files are hitting the managed code in ASP.NET MVC3
Creating custom IHttpModules, I have realized that the requests for static files (e.g.: .css and .js files) are hitting the managed modules. Probably pictures have the same problem. Shouldn't IIS ...
4
votes
3answers
283 views
What is better: caching through HttpContext.Current.Cache or just a static?
Last night I wrote up my first IHttpModule to do some request processing. I'm using a regular expression to inspect the raw url. The IHttpModule will be called on every request, so it seems reasonable ...
3
votes
1answer
142 views
How can I generate a 404 response from an IHttpModule configured in the global web.config?
I'm trying to generate a 404 response for certain requests on all sites on a server based on the HttpRequest.UserAgent.
I've configured an IHttpModule in the server's global web.config containing the ...
3
votes
2answers
257 views
Accessing the Form collection in an IHttpModule causes event Handler not to get called on Default page
Ok, this is a weird one. I've created a simple sample site to demonstrate the issue. In it, I have a Default.aspx Page that has a button on it:
<asp:Content ID="BodyContent" runat="server" ...
3
votes
3answers
307 views
Is HttpModule shared among working threads?
Do I have to lock access to instance members?
Example:
public class HttpModule : IHttpModule
{
//...
Dictionary<int, int> foo;
void UseFoo(int a, int b)
{
foo[a] = b;
...
2
votes
0answers
243 views
C# HTTPModule Could not load type CGI Request
Trying to use a HTTPModule I wrote in complied C# class project to log request values and extend a third party CGI shopping cart. My module works fine with asp,asp.net,jpg and html request, but soon ...
2
votes
1answer
450 views
Frame Redirect in C#
I would like to execute a frame redirect in C# from my managed module for the IIS 7.
When I call context.Response.Redirect(@"http://www.myRedirect.org");the correct page is shown but also the address ...
2
votes
1answer
203 views
Detect mapped virtual directories from an ihttpmodule in a c# .net application
I have a .net website which contains an IHttpModule I wrote to do certain tasks (authorisation etc). But within the website there are a number of virtual directories that are mapped to third party ...
2
votes
2answers
733 views
Disabling HttpModule on certain location
I know that this has already been asked here but the answer (using a handler instead) doesn't solve the issue, as I'm using a third party component that doesn't implement IHttpHandler.
So, again, is ...
2
votes
2answers
423 views
Static files and authentication in ASP.net
Say I have a virtual folder /topFolder/ in IIS7, and in that folder there can be any file that can be displayed in a browser (xml, html, swf, doc etc - typically "unmanaged" resources from the IIS ...
2
votes
3answers
3k views
Using IHttpModule Over Global.asax
I've been given the thrilling task of re-writing our exception handling system. Whilst I will state that handling exceptions from an application-wide point of view isn't something we want, typically ...
1
vote
2answers
52 views
ASP.NET MVC extract controller, action and value from URL
I m writing an httpModule to intercept the request that is coming to ASP.NET MVC application. Is there an easy way to figure out what part of the URL constitutes area, controller, action and the ...
1
vote
1answer
243 views
NTLM Authentication. Can't get it to work in an IHttpModule. AcceptSecurityContext always fails
Here's the setup. On an ASP.Net site, we want to have NTLM authentication on specific pages. The way this will work is there will be a module that will only respond to those pages, and then do the ...
1
vote
1answer
114 views
Why there is no way to unbind an HttpApplication event handler out of IHttpMudle initizlization scope
Let's say we want to execute some action only once or a couple of times after web application has started and during a web request.
public class WebApp : HttpApplication
{
public override void ...
1
vote
1answer
314 views
Inject js from IhttpModule
i trying to inject js to page (to tags) by using ihttpmodule.
but js isn't injected.
what i did:
the page:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" ...
1
vote
2answers
115 views
HTTP Module causing problem with Google Cache
I have a live site ( I can't provide the URL ).
It is on sharepoint 2007. The pages were having a URL, later that was modified.
I wrote a http module and used response.redirect() to navigate user to ...
1
vote
0answers
121 views
How do I get a IHttpHandler to do authentication properly?
I have some IHttpHandler implementations where they may optionally have authentication applied to them.
I originally rolled my own Basic authentication but would now like to use IIS's capabilities so ...
1
vote
1answer
81 views
Okay to implement a .NET event on an IHttpModule?
I've declared an event on an HTTP Module so it will poll subscribers for a true/false value to determine if it should go ahead with its task of tweaking the HTTP Response. If only one subscriber ...
1
vote
2answers
149 views
Can you programatically define ASP.NET configuration?
Is it possible to define a large portion, if not the entire, web.config of an ASP.NET application in code? If so, how? Would you use an IHttpModule? In the same vein, can you resolve an IHttpHandler ...
1
vote
2answers
984 views
export data from WCF Service to excel
I need to provide an export to excel feature for a large amount of data returned from a WCF web service.
The code to load the datalist is as below:
List<resultSet> r = ...
1
vote
1answer
133 views
IHttpModule not being applied to virtual directory
I have a network folder that is mapped to my iis app as a virtual directory and I'm trying to do some authentication for files that are located there with an ihttpmodule. I've verified that the ...
1
vote
1answer
565 views
json ihttpmodule compression
I wrote an IHttpModule that compress my respone using gzip (I return a lot of data) in order to reduce response size.
It is working great as long as the web service doesn't throws an exception.
In ...
1
vote
1answer
289 views
Can I get read access to the HTTP output stream in ASP.NET?
I would like to read all content that's been written to the output stream. I'm attempting to do this using an HTTP module, and it seems like the obvious timing would be when handling the ...
1
vote
2answers
305 views
StatusCode in IHttpModule is always 200?
I have an custom IHttpModule that handels all available events and logs the HttpContext.Current.Response.StatusCode to a file.
My web.config does not contain any other module in <httpModules> ...
1
vote
3answers
1k views
How2: what event to hook in HttpModule for putting js links into head element
I want to have HttpModule to inject javascripts, css links into HEAD element from some simple config data. I am not sure which event I should hook?
Curently I use
- context.PreRequestHandlerExecute ...
0
votes
1answer
24 views
Stopping Non-Users from Accessing Static Resources
I'm working on restricting access of static PDF files to only logged-in users. I only want to use a server-side redirect from the resource when a request comes that doesn't have the proper ...
0
votes
1answer
137 views
Url Rewriting in C# .net
how can i rewrite a url so that it shows a path like subdomain.example.com/blog in the address bar but displays a page such as www.example.com/blog/?tag=/subdomain.
here is the process of events I ...
0
votes
1answer
126 views
IHttpModule Response.Filter Write with No Close HTML
I wrote a custom IHttpModule but it is causing issues when there is no closing tag in the source. I have ran across a few pages in the CMS I am running this for where the .aspx page is used more ...
0
votes
1answer
144 views
Within PreRequestHandlerExecute, determine name of class in .asmx file
Ultimately, i'm trying to obtain a reference to the webmethod that will handle a request, BEFORE it handles the request, in order to check its custom attributes.
Currently, I have it working by ...
0
votes
0answers
154 views
Is ReleaseRequestState called multiple times for each Request received by IIS?
I am writing an HttpModule in VS2010/ASP.NET 4.0 for use with IIS 7. The module is going to enforce query string security by encrypting query strings.
I would like this module to be completely ...
0
votes
0answers
187 views
How to have the same error when logging with an invalid credential or when not authorized?
I'm developing a WCF service authenticated with membership. I used the MSDN article "How to: Use Username Authentication with Transport Security in WCF Calling from Windows Forms".
In particular, for ...
0
votes
1answer
152 views
ASP.NET MVC + IHttpModule = Not Found
Ah to solving this problem, my mind is completely busy. When i register my httpmodule, I get not-found error, otherwise everything works like a charm.
Here is my httpmodule
public class ...
0
votes
1answer
154 views
How to get login text boxes values in HTTP Module in asp.net 2.0?
I am making a Http Module for authentication in my web application in asp.net 2.0. When the AuthticateRequest event is fired then I get the userid and password values from current request. But Every ...
0
votes
1answer
291 views
Getting reference to server controls when handler is MvcHandler
I am working working on an httpmodule to hide certain content on my website if certain criteria are not met. My handler setup is pretty simple. Here are the relevant parts to my question:
Public ...
0
votes
1answer
196 views
Utilizing a WCF channel from an IIS ASP.net IHttpModule
I have an ASP.net project which involves using a custom IHttpModule. This module will sit in the pipeline and when certain criteria match up, it should invoke a method on a WCF service hosted in a ...
0
votes
1answer
166 views
How can I get the server address in an IIS 7 module OnAuthenticateRequest hook?
Can an IIS 7 module retrieve the server in an OnAuthenticateRequest hook or an OnPostAuthenticateRequest hook?
By "server" I mean the server that the IIS authenticated against (even if it's ...
0
votes
1answer
352 views
Does BeginRequest fire everytime? Which HttpApplication events fire when? Is it different for Ajax?
I am a little confused about the HttpApplication events.
I have a SessionService* that is initialized from an HttpModule. The HttpModule subscribes to HttpApplication.BeginRequest.
In the module ...
0
votes
2answers
250 views
“Request is not available in this context” in a IHttpModule
I'm getting that exception when I try to access the HttpContext.Current.Request object.
I've seen the responses in l1, l2 and l3 ... so... my question then is :
For what in the world are ...
0
votes
1answer
187 views
HttpWorkerRequest.GetBytesRead() always returns 0
Anyone know why HttpWorkerRequest.GetBytesRead() always returns 0, even during and after a file upload? Would like to use this method to build a progress bar.
0
votes
1answer
403 views
Access session in IHttpModule and being able to do a response.redirect
Following the solution found at http://stackoverflow.com/questions/276355/can-i-access-session-state-from-an-httpmodule, I am able to access the session state from an IHttpModule. I'm using it to ...
0
votes
1answer
129 views
How to manipulate a header and then continue with it in C#?
I want to replace an old ISAPI filter that ran on IIS6. This filter checks if the request is of a special kind, then manipulates the header and continues with the request. Two headers are added in the ...
0
votes
1answer
345 views
Are HttpModules utilized when a .Net web service is called through the javascript proxy (AJAX)?
I am making our large set of web services available to AJAX calls. I have added the [System.Web.Script.Services.ScriptService] to each service. We have a registered HttpModule that initializes some ...
0
votes
1answer
77 views
IHTTPModule perfomance hit?
I'm implementing an IHttpModule as described in this question. Since we're examining every request, I'm worried there may be a performance hit. Has anyone run into performance issues implementing ...
0
votes
2answers
1k views
JS,Images and CSS getting intercepted by HTTPModule
I have a simple HTTPModule which does some custom session state management.
public void Init(HttpApplication context)
{
context.AcquireRequestState += new ...
0
votes
2answers
1k views
HTTPModule and Sharepoint Site
I am running into an issue with using a HTTPModule with a sharepoint deployed site. Here is what I have:
my asp.net pages inside the /layouts/[ProjectName]/ folder. The aspx file uses a sharepoint ...
0
votes
1answer
374 views
ASP.NET Webforms IHttpModule Singleton
I have a class that implements IHttpModule in a separate assembly from a website. The module implementation intercepts requests and rewrites urls for the website.
The mappings are stored in a ...
0
votes
3answers
701 views
My UrlRewrite IHttpModule remove my second QueryString
I have a custom url rewriter function that works fine. But when i are going to use a second querystring on my url, that remove the second querystring.
my friendly url: /gallery/view-ablum/?q=1
i the ...
0
votes
1answer
496 views
How to get data from an IHttpModule to the ASP.NET MVC RequestContext?
I've got a custom IHttpModule that does authentication (to Facebook, Myspace, etc). It raises an event that can be handled in the HttpApplication instance with details about the user. It's a lot like ...
0
votes
1answer
319 views
Error handling implemented by IHttpModule doesn't work in IIS6, works in IIS5.1
I implement common error handling by using IHttpModule. Locally on my machine with WinXP it works like a charm. Once I upload solution on our test server, which is W2003 it doesn't work. Once an ...