Tagged Questions
4
votes
3answers
281 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
254 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
306 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
2answers
726 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
1answer
241 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
313 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
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
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
125 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
143 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
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
194 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
165 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
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
400 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
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
997 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
1answer
373 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 ...