ASP.NET HTTP Modules are classes which implement the System.Web.IHttpModule interface.
0
votes
0answers
24 views
AuthenticateRequest not fire sometimes
When I press the F5 key several times , sometimes AuthenticateRequest not fired
void context_AuthenticateRequest(object sender, EventArgs e)
{
if (HttpContext.Current.User != null
...
0
votes
1answer
36 views
Apache module, determine name of config file passed into function
No, I am NOT asking where to find httpd.conf
I have been given code for a module that I need to tinker with and since I can't find any good documentation on the subject I am asking you.
const ...
0
votes
0answers
11 views
NUnit ASP.NET Forms add content to Page
In a HttpModule want to add Html in different places of a WebForms Page requested.
public override void OnPreRequestHandlerExecute(HttpContextBase context)
{
var page = ...
0
votes
0answers
16 views
Disable httpForbiddenHandler on Azure
My Problem is pretty simple, for a rewriting to the blob on a REST service, I want to allow .config an other special files at the end of the url.
I cannot change the format of the REST Service URL, ...
0
votes
1answer
25 views
“Could not load type” error trying to install HTTPModule on IIS6 - Web.config error
Two hours of searching Google and Stackoverflow and I've gotten nowhere. This is not related to code-behind, which is why I've had no luck so far.
Here's my problem: I have a legacy website running ...
0
votes
1answer
47 views
ASP.NET MVC3 Custom HttpModule gives error 404
Four our current .aspx website we have a custom HttpModule which does the Authorization (which user can see what). I've rebuilt our old .aspx website to MVC. And because our clients won't all en masse ...
0
votes
1answer
55 views
In http module's BeginRequest event, how to find that current request is of MVC ?
In http module's BeginRequest event, how to find that current request is of MVC and not of traditoinal ASP.net ?
0
votes
0answers
3 views
Login failure not caught by my HTTPModule OnError event
I wrote an HTTPModule that catches unhandled errors. This was compiled into a DLL and placed in the GAC. Everything works, except that I tried one possible error. I changed the password for the login ...
-1
votes
0answers
42 views
IIS 7.5 Virtual Directory unable to browse home page [closed]
I have deployed a web application named hfm in IIS 7.5
When do the browse of its home page it throws the below error message:
hfm (my virtual directory--> RightClick --> Manage --> Browse)
Internal ...
0
votes
0answers
46 views
aspx page is rendered as plain text after RewritePath
My ASP.NET application using HTTP Moule same as here. But whenever I try to rewrite path in my Application_PostAcquireRequestState, I am viewing Default.aspx as plain text.
Does anybody know why it ...
0
votes
0answers
19 views
IIS 7.X: Modify http-request environment varibles before they are processed
This question is rather specific to Microsoft's IIS:
We are trying to modify environment variables of http-requests that are passed from the IIS to the application that is targeted by such an request. ...
0
votes
2answers
64 views
Using redirect from an HttpModule in an MVC web site, the “right” way
In the old days:
We used Response.Redirect, which sets the 302 response header and raises a ThreadAbortException to prevent anything else from happening after the redirect.
Now, with MVC:
We ...
0
votes
0answers
42 views
How to modify IIS request's http verb
I am trying to rewrite a request that is coming in to my IIS server and part of the request rewrite, I need to be able to modify HTTP verb so that MVC framework properly routes the request (due to ...
2
votes
2answers
217 views
HttpModule only on specific MVC route
I have a custom IHttpModule that I would like to only work on a specific route.
For example : http://example.com/HandleAzureTask
I want this module to only be invoked/handled on the /HandleAzureTask ...
0
votes
0answers
49 views
Impersonating User role in cross-domain
In my current application, my testing team is working on a different domain and the production server is on a different domain, where windows authentication is enabled in IIS. The testing team user A ...
1
vote
0answers
108 views
HttpModule not called in .NET 4.5
Just spent a lot of time sifting through contradictory advice on this problem, and thought I'd post my solution.
My environment is .NET 4.5, Visual Studio 2012, working on an MVC 4 application. I ...
0
votes
0answers
28 views
IIS7 - HTTP handlers, modules -Php
I have an ASP.NET site that uses its own set of HTTP handlers and modules.
So, in IIS6, all I had to do was this in my web.config:
<httpModules>
<clear />
</httpModules>
it ...
0
votes
0answers
42 views
How can I execute a virtual path inside a HTTP module?
I'm trying to execute a virtual path inside a HTTP module (I want to capture the result).
But I get an error:
Error executing child request for /home/something/.
Code:
public void ...
0
votes
0answers
14 views
Maximize parameter length passing through HTTPModule
I'm consuming a webservice from JS using JSONP call. In order to allow jsonp on my server I created an httpModule (C#) to handle it and it works fine. But when passing a parameter that its length ...
0
votes
0answers
63 views
Sharepoint portal: How to authorize user on page by email?
I have a response from a service with the user's email. I have only the email. How to authorize user on a sharepoint portal page using this email without entering login/password?
I try to use custom ...
0
votes
0answers
23 views
httpmodule modify request.inputstream
ASP.NET MVC
I want to Decompress Request.inputstream at Httpmodule
Can I pass the decompressed stream to httphandler ?
0
votes
1answer
78 views
ASP.NET HttpModule Request handling
I would like to handle static file web requests through an HttpModule to show the documents in my CMS according to some policies. I can filter out a request, but I don't know how to directly process ...
0
votes
0answers
31 views
Read response from custom Security-Webservice and authenticate a user on page via email(from response)
there is 1 standard page ( http://testsite.com/getaccess/default.aspx) in sharepoint portal(2007). This page has been protected with custom Security-Webservice.
It works so: request this page -> ...
3
votes
1answer
88 views
Correct use of a ConcurrentQueue within a HttpModule?
I am attempting to add a speed boost to a HttpModule that processes images using asynchronous programming.
Whilst it certainly appears that I am getting a performance improvement I'd like to check ...
2
votes
1answer
79 views
NLog Extended AspNetBufferingWrapper not working
I have the following target in my web.config using the AspNetBufferingWrapper wrapper of NLog Extended
<wrapper-target type="ASPNetBufferingWrapper" name="aspNetBuffer">
<wrapper-target ...
0
votes
1answer
42 views
Attempt Windows Authorization but fall back on Custom Login
I am working with a module that worked in previous versions of IIS.
http://www.velocityreviews.com/forums/t94333-re-how-do-i-create-a-httpmodule-to-authenticate-in-aspnet.html
It no longer works ...
1
vote
0answers
168 views
ASP.NET: Redirects loop with custom SEO redirect HttpModule
I wrote my httpModule attached on BeginRequest to handle SEO url transforms and 301 redirects. Most of the things could be done with Url Rewrite, but I wanted a more flexible option and also Url ...
0
votes
0answers
107 views
SessionAuthenticationModule duplicate sessions
I have an ASP.NET 4.0 website that utilizes both forms authentication and single sign on against an ADFS 2.0 server. I wrote a custom HttpModule that extends the WSFederationAuthenticationModule. ...
0
votes
1answer
36 views
INIT method does not fire Application_Error event when exception occurs
we have written some code in httpmodule INIT method, which will execute only once. The code connects to third party web service and sometimes there could be a chance of getting error (like web ...
2
votes
1answer
234 views
Encrypt and decrypt FormsAuthenticationTicket to authenticate users
I'm trying to create my own authentication mechanism which relies on FormsAuthentication. I'm basically using OAuth to allow users to authenticate in an Authorization Server, and once they are ...
0
votes
0answers
114 views
Data sharing in ASP.NET WebAPI application
i would like tos share some data between HttpApplication's on my ASP.NET WebAPI (No MVC!) project. My app is IIS hosted, so i have created custom HttpModule where i try to get my data from the ...
0
votes
1answer
47 views
ASP.Net bypassing ReleaseStateRequest event - how?
Asked this on forums.asp.net but got no takers, so I thought I'd try here.
We've got an HttpModule that registers for BeginRequest, ReleaseRequestState, and EndRequest. The main purpose of the ...
0
votes
1answer
87 views
Easiest way to modify web.config to enable/disable HttpModule from code
I am developing an application which will give a website administrator the ability to enable/disable a HttpModule without having to actually open and edit the web.config file. I have found it is quite ...
1
vote
0answers
168 views
Missing object from HttpContext session in custom IHttpModule
I am writing custom IHttpModule. I need to manage HttpContext session object. To enable that I have added custom IHttpHandler that is inherited from IRequiresSessionState. Then I can access session ...
2
votes
1answer
145 views
Redirecting calls to different web applications
I have the following scenario to implement:
User requests /HR/Employee/Get on the main website (localhost:80)
HR is the name of an application hosted in IIS on a different port (say localhost:8081), ...
1
vote
0answers
82 views
HttpModule gzip Compression and Error in Default URL of the site
I use HTTP Module to compress Requests, this is my implementation:
void context_Begin(object sender, EventArgs e)
{
HttpApplication app = (HttpApplication)sender;
string encoding = ...
-1
votes
2answers
134 views
Get Active Directory user from client request, server side?
I have a custom HTTP Module running on IIS 7.5, and the requests will be coming from different machines in the same Active Directory environment. Is it possible for me to get the current user (their ...
0
votes
0answers
26 views
Is it possible to log the output of an IIS response after each step through the module pipeline?
I am currently debugging an issue where one of our IIS application pools is serving one CSS file truncated at 65,535 bytes when it is run through both the IIS static file compression module and our ...
0
votes
0answers
10 views
Routing wildcards to different apps in iis
I have an app that currently handles all domains pointed to the server. The app actually handles the routing to get the right content for the site. We are managing domains in the app vs iis so its ...
0
votes
1answer
90 views
IHttpModule RewritePath with StatusCode 404
I have a URL that looks like: /employees?employeeId=3992, which displays the employee with the ID 3992. That works fine and the HTTP Status Code is 200 OK.
However when someone writes an invalid ID ...
0
votes
1answer
30 views
How can I use 51Degreees data in a command line program to parse a UserAgent field?
I'm parsing some IIS Event Logs and need to analyze the UserAgent field. I think that 51Degrees has the data I need, but this is implemented as a HTTP module.
How do I interact with 51Degrees ...
3
votes
2answers
70 views
Can I be sure that HttpModules are executed in the order in which they are listed in the HttpApplication.Modules collection?
I want to write an IHttpModule that has to be executed strictly after FormsAuthenticationModule, otherwise it will be useless.
There's HttpContext.Current.ApplicationInstance.Modules property that ...
0
votes
1answer
38 views
If I write a handler with to handle path *, will it have the same functionality as a httpmodule?
<handlers>
<add name="TextHandler" path="*" verb="*" type="TextHandler" resourceType="Unspecified" />
</handlers>
I know that httphandlers are for handling file extensions, ...
0
votes
1answer
163 views
Limiting HttpModule to only process certain requests
We use directory browsing on a specific section of our website, but our users don't really like the default ASP.NET
directory browsing. To be honest, we don't particularly care for it either.
I ...
0
votes
0answers
155 views
System.Web.Routing vs HttpModule Url Rewriting Performance
Our development team is currently working on a new implementation for an ASP.NET website and would like some feedback about the performance differences between .NET's new System.Web.Routing with ...
1
vote
0answers
326 views
ASP.NET Web API StreamContent vs IIS Static File handler
I'm putting together a document-management service using ASP.NET Web API, and performance is of some concern.
Based on this article by Nathanael Jones, author of the IIS / ASP.NET ImageResizer ...
1
vote
1answer
123 views
ImageResizer.net with Cache Plugin causing duplicate output cache
I have a strange issue, whereby when I enable output caching in Orchard CMS and have ImageResizer.net cache plugin enabled, I get duplicated page content (full DOM). Just for reference, I am ...
2
votes
0answers
168 views
ASP.NET HttpContext.RemapHandler to remap to ASP Classic
We are upgrading an ASP Classic website (actually, a virtual directory under a larger website) to ASP.NET 3.5. There will be some legacy directories that remain ASP Classic. Other than that, every ...
0
votes
0answers
202 views
Error: A SessionAuthenticationModule must be added to the ASP.NET Module Pipeline
I am trying to write a custom HttpModule that implements the WSFederationAuthenticationModule. When I add the custom module to my web.config I get the following error:
ID1060: A ...
0
votes
0answers
86 views
Trying to manipulate non standard asp.net files (CSS, JS) through HTTP Module (IIS 6.0)
I have been trying for 2 days to manipulate non standard asp.net files (CSS and JS files) through a HTTP Module.
I have done that on IIS 7.5 without so much of problems, but when I'm trying to do ...

