Tagged Questions
The httpapplication tag has no wiki summary.
13
votes
1answer
7k views
AuthenticateRequest event
Q1 - To my understanding FormsAuthenticationModule is subscribed to AuthenticateReuqest event, and thus only after this event is fired, is FormsAuthenticationModule called. But the following quotes ...
9
votes
2answers
4k views
HTTPModule Event Execution Order?
Does anyone know of a site or page, or know the order of execution for the events of the HTTPApplication class for HTTPModule event execution?
I found the MSDN Documentation for all of the events, ...
6
votes
2answers
4k views
Where do I catch and handle maxAllowedContentLength exceeded in IIS7?
I have an aspx page where I’m allowing a user to upload a file and I want to cap the max file upload size to be 10MB. IIS7, .NET 3.5. I have the following configured in my web.config file:
...
5
votes
1answer
205 views
Which ASP.NET life cycle events fire after HttpApplication.Error?
I want to know which parts of the ASP.NET request life cycle happen after an error is handled via the HttpApplication.Error event. Specifically, which of the events listed at ...
3
votes
2answers
179 views
Quote from MSDN about System.Web.HttpApplication
Quote from http://msdn.microsoft.com/en-us/library/4wt3wttw.aspx:
One instance of the HttpApplication
class is used to process many requests
in its lifetime. However, it can
process only one ...
3
votes
3answers
483 views
Application_Start versus OnInit versus constructor
I've gone rounds with this ever since I started programming classic ASP 12 (or so) years ago and I've never found a great solution because the architecture of ASP and ASP.NET has always been a swamp ...
3
votes
2answers
604 views
How to show a custom 404 page in ASP.NET-MVC?
When any URL is 404 on my site, i want to show a custom 404 page that is rendered with ASP.NET-MVC. Hoewever i do not want to use the wildcard route approach because that would disable standard ...
3
votes
2answers
501 views
Why is HttpApplication constructor called several times
Can somebody explain why the constructor of a custom class derived from HttpApplication is called several times upon application startup?
My code structure is the following:
- My Global class in ...
2
votes
1answer
126 views
Application_Start ASP.NET
If get this from the Microsoft official documentation:
The Application_Start and Application_End methods are special methods that do not represent HttpApplication events. ASP.NET calls them once ...
2
votes
1answer
194 views
ASP.NET Intermittent lag before Application_BeginRequest()
I'm using ASP.NET MVC 2. When in Debug mode, there is a very consistent 5-10 second delay on every other request to the server before HttpApplication_BeginRequest() is hit in Global.asax
It happens ...
2
votes
3answers
2k views
Unit testing an HttpApplication
I have a class derived from HttpApplication that adds some extra features. I'm to the point where I need to unit test these features, which means I have to be able to create a new instance of the ...
2
votes
3answers
954 views
Why don't PreSendRequestHeaders and PreSendRequestContent run consistently?
When working with HTTP modules, has anyone noticed that the final two events in the pipeline -- PreSendRequestHeaders and PreSendRequestContent -- don't always run?
I've verified that code bound to ...
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
2answers
165 views
Restrict access to .Net web site by Active Directory computer group
We're looking into doing machine-based authentication, allow any user on particular machines to access our .Net site. The list of machines will change but are all on an internal network. Their IP ...
1
vote
1answer
99 views
Best HttpApplication event for altering the response source
I intend to build a HttpModule in order to scan a response's source and make small adjustments, mainly altering urls (hrefs, actions, srcs, etc).
I see the HttpApplication has a plethora of events ...
1
vote
2answers
268 views
How to create a barebones HttpApplication for ASP.Net (without Webforms or MVC)
Ok I am wanting to learn more about how ASP.Net works under the hood. I mean beneath MVC or Webforms and other such frameworks.
Basically I want to know how those frameworks are wired onto ASP.Net so ...
1
vote
2answers
1k views
C# ASP.NET HttpModules: HttpApplication Events
I have an HttpApplication (Global.asax) in my web application, I use this to catch and log unhandled Exceptions and to setup WebFormURLRouting. This all works, however I want to move this code into my ...
1
vote
7answers
507 views
ASP.Net Session State
I was wondering whether it would be possible to change the sqlConnectionString used for SessionState in ASP.net based upon the domain an application is running on?
A scenario; We have 20 sites ...
1
vote
1answer
818 views
asp.net MVC, how to work with HTTPApplication class
How do I go about gathering site statistics in MVC? (users online.. etc?)
0
votes
2answers
64 views
HttpApplication and the current page
As we all know the HttpApplication object holds objects regarding the requested page (HttpRequest) and the page where we are supposed to be redirected (HttpResponse); I need to get the url of the page ...
0
votes
0answers
77 views
Running my HttpApplication in my own AppDomain
I'm looking for a way to run my HttpApplication in an AppDomain I created myself programmatically.
as the AppManagerAppDomainFactory is a sealed class, I wondered if there was a way to implement my ...
0
votes
2answers
289 views
Can multiple users share an HttpApplication instance?
I've used the table at the top of this article as a reference. I have three questions:
1 - Can multiple users (from different physical locations) ever share an HttpApplication instance? If so, ...
0
votes
3answers
136 views
How are Threads created and managed by the HttpApplication?
How are Threads created and managed by the HttpApplication in ASP.NET?
What determines if an HttpContext opens a new thread or uses an existing thread? How can this be controlled?
I will be happy ...
0
votes
3answers
106 views
Possible to use HttpApplication state in a .NET console app?
I need to quickly write a test console app for testing purposes.
This app is basically the console version of an ASP.NET app.
The original ASP.NET app makes use of the global Application object for ...
0
votes
0answers
666 views
ASP.NET 4.0 server error - “object reference not set to an instance of an object” on 32bit Virtual Machine
We are receiving an error that has been difficult to find a cause for. The error message being displayed is "Object reference not set to an instance of an object." I understand what it is saying, ...
0
votes
1answer
350 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
0answers
138 views
retrieving http post information from a request C# HttpApplication question
Simple one here
As I make a post request I wish to receive the header information of that post request
Say this is the information posted as in the request header
...
0
votes
1answer
57 views
Reading a Post request from a user HttpApplication
I've been messing about with
HttpApplication app = (HttpApplication)source;
Is there some way of the server identifying if the request is get or post.
Basically i want to create an if statement and ...
0
votes
1answer
453 views
Application_BeginRequest for static *.JS files in ASP.NET in IIS6?
I'm trying to do something seemingly simple: ensure that Application_BeginRequest is called for every static *.JS URL sent to my IIS6 website, whether or not the underlying file exists.
What's a ...
0
votes
3answers
832 views
Global.asax issue
I am developing an HttpModule and using Global.asax. I have developed a class which derives from HttpApplication, but Application_Start method of my class never executes (I create a file at the ...
0
votes
1answer
2k views
How to test HttpApplication Object with HttpApplicationState
I am trying to test a 'plugin' for an ASPNET HttpApplication that is loaded on Application_Start.
The code is something like this:
private HttpApplication application;
public void ...
0
votes
2answers
3k views
global asax application_start application begin_request methods?
I have a problem. While migrating from classic pipeline mode to integrated pipeline mode at IIS 7.0 we encounter the problem :
Server Error in '/' Application.
Request is not available in this ...
0
votes
2answers
346 views
Getting ApplicationState in asp.net without HttpContext
I got a webapp that stores a config object in ApplicationState.
This object contains the connection string to the database among other things.
Sometimes i start a async thread to do a few longer ...