The httpapplication tag has no wiki summary.
0
votes
0answers
34 views
Do HttpApplication instances share the same static classes or do they load separate assemblies?
Imagine the scenario IIS starts up a few instances of my HttpApplication due to many simultaneous incoming requests.
I have a static class that is designed to do a long-running job from ...
2
votes
1answer
135 views
HttpContext.Current.ApplicationInstance.Application vs HttpContext.Current.Application
If I want to store some Objects to share across pages and session which one should I use?
HttpContext.Current.ApplicationInstance.Application or HttpContext.Current.Application.
I was using ...
13
votes
2answers
151 views
Is `_[…]` a valid identifier?
I've just installed the .NET 4.5 reference source from Microsoft as I'm trying to debug an issue I'm seeing and I stumbled across the following in HttpApplication.cs.
// execution step -- call ...
0
votes
0answers
114 views
getting username on authentication request c#.net
let us consider i am having a code which gets inherited by IHttpModule
public void Init(System.Web.HttpApplication app)
{
app.AuthenticateRequest += new ...
2
votes
1answer
105 views
Application_Error fired on different thread
Recently we started seeing a problem where the Application_Error event handler (for HttpApplication.Error) is being invoked on a different thread from where the request was handled.
Things we have ...
0
votes
0answers
93 views
WCF Client Firing EndRequest Event Twice on the Server
See if you can follow this one. I have a wcf service with a client calling another wcf service.
client = new SectionSvcClient();
client.Open();
client.CallA();
client.CallB();
client.Close();
Now ...
0
votes
2answers
466 views
ASP.NET MVC3 HttpApplication doesn't fire events like BeginRequest, EndRequest, PostAcquireRequestState
ASP.NET MVC3 HttpApplication doesn't fire events like BeginRequest, EndRequest, PostAcquireRequestState etc. So it works fine but it doesn't fire events! I have tried to reinstall asp.net via ...
-2
votes
1answer
180 views
How Global.asax Works? [closed]
in global.asax , how these events
Application_Start
Application_End
Session_Start
Session_End
Application_BeginRequest
Application_AuthenticateRequest
Application_Error
hooked ...
3
votes
1answer
205 views
Delphi HTTP App raising error when loading files into streams
I've been working on an HTTP Web Server Application (via TIdHTTPWebBrokerBridge) and have a little issue when it comes to loading files into streams (TFileStream) to be sent back to the client. It ...
0
votes
0answers
169 views
Delphi IDE freezes when adding any type of Data Module to a Web Application
I've been having a very peculiar issue working with building an HTTP Application (aka Web Server App via a TWebModule). Now a Web Application already consists of a special type of Data Module for ...
2
votes
1answer
229 views
Do asynchronous HttpApplication events wait until they return?
To what extent are HttpApplication async events (eg those registered using AddOnEndRequestAsync and friends) asynchronous? Does IIS wait for all asynchronous events fired for a particular event to ...
1
vote
1answer
2k views
'session state is not available in this context' when multiple files in request
The code sample at http://support.microsoft.com/kb/2527105 is exactly what I need to share sessions between two subdomains. Only problem is it doesn't work in a real life situation. It works fine ...
0
votes
2answers
390 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 ...
5
votes
1answer
2k 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 ...
0
votes
0answers
215 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 ...
1
vote
1answer
281 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
734 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, ...
2
votes
2answers
401 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
213 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 ...
1
vote
2answers
280 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
2k 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
624 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 ...
12
votes
5answers
776 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 ...
0
votes
0answers
249 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
112 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 ...
2
votes
1answer
304 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 ...
1
vote
1answer
186 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 ...
3
votes
2answers
398 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 ...
5
votes
3answers
1k 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 ...
2
votes
2answers
583 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 ...
3
votes
2answers
937 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 ...
0
votes
1answer
630 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 ...
1
vote
2answers
2k 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 ...
0
votes
3answers
1k 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 ...
5
votes
3answers
3k 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
1answer
3k 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 ...
1
vote
7answers
617 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 ...
7
votes
2answers
1k 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 ...
0
votes
2answers
4k 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 ...
18
votes
2answers
17k views
AuthenticateRequest event
Q 1. To my understanding FormsAuthenticationModule is subscribed to AuthenticateRequest event, and thus only after this event is fired, is FormsAuthenticationModule called. But the following quotes ...
2
votes
3answers
1k 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
2answers
540 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 ...
1
vote
1answer
1k views
asp.net MVC, how to work with HTTPApplication class
How do I go about gathering site statistics in MVC? (users online.. etc?)
8
votes
2answers
6k 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:
...
21
votes
2answers
10k 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, ...
