HttpModule Init method is called several times - why?

Posted by MartinF on Stack Overflow See other posts from Stack Overflow or by MartinF
Published on 2009-07-17T00:06:54Z Indexed on 2010/03/16 8:26 UTC
Read the original article Hit count: 455

Filed under:
|
|
|

I was creating a http module and while debugging I noticed something which at first (at least) seemed like weird behaviour.

When i set a breakpoint in the init method of the httpmodule i can see that the http module init method is being called several times even though i have only started up the website for debugging and made one single request (sometimes it is hit only 1 time, other times as many as 10 times).

I know that I should expect several instances of the HttpApplication to be running and for each the http modules will be created, but when i request a single page it should be handled by a single http application object and therefore only fire the events associated once, but still it fires the events several times for each request which makes no sense - other than it must have been added several times within that httpApplication - which means it is the same httpmodule init method which is being called every time and not a new http application being created each time it hits my break point (see my code example at the bottom etc.).

What could be going wrong here ? is it because i am debugging and set a breakpoint in the http module?

It have noticed that it seems that if i startup the website for debugging and quickly step over the breakpoint in the httpmodule it will only hit the init method once and the same goes for the eventhandler. If I instead let it hang at the breakpoint for a few seconds the init method is being called several times (seems like it depends on how long time i wait before stepping over the breakpoint). Maybe this could be some build in feature to make sure that the httpmodule is initialised and the http application can serve requests , but it also seems like something that could have catastrophic consequences.

This could seem logical, as it might be trying to finish the request and since i have set the break point it thinks something have gone wrong and try to call the init method again ? soo it can handle the request ?

But is this what is happening and is everything fine (i am just guessing), or is it a real problem ?

What i am specially concerned about is that if something makes it hang on the "production/live" server for a few seconds a lot of event handlers are added through the init and therefore each request to the page suddenly fires the eventhandler several times.

This behaviour could quickly bring any site down.

I have looked at the "original" .net code used for the httpmodules for formsauthentication and the rolemanagermodule etc but my code isnt any different that those modules uses.

My code looks like this.

    public void Init(HttpApplication app)
	{
		if (CommunityAuthenticationIntegration.IsEnabled)
		{
			FormsAuthenticationModule formsAuthModule = (FormsAuthenticationModule) app.Modules["FormsAuthentication"];			

			formsAuthModule.Authenticate += new FormsAuthenticationEventHandler(this.OnAuthenticate);
		}
	}

here is an example how it is done in the RoleManagerModule from the .NET framework

    public void Init(HttpApplication app)
	{
		if (Roles.Enabled)
		{
			app.PostAuthenticateRequest += new EventHandler(this.OnEnter);
			app.EndRequest += new EventHandler(this.OnLeave);
		}
	}

Do anyone know what is going on?

(i just hope someone out there can tell me why this is happening and assure me that everything is perfectly fine) :)


UPDATE:

I have tried to narrow down the problem and so far i have found that the Init method being called is always on a new object of my http module (contary to what i thought before).

I seems that for the first request (when starting up the site) all of the HttpApplication objects being created and its modules are all trying to serve the first request and therefore all hit the eventhandler that is being added. I cant really figure out why this is happening.

If i request another page all the HttpApplication's created (and their moduless) will again try to serve the request causing it to hit the eventhandler multiple times.

But it also seems that if i then jump back to the first page (or another one) only one HttpApplication will start to take care of the request and everything is as expected - as long as i dont let it hang at a break point.

If i let it hang at a breakpoint it begins to create new HttpApplication's objects and starts adding HttpApplications (more than 1) to serve/handle the request (which is already in process of being served by the HttpApplication which is currently stopped at the breakpoint).

I guess or hope that it might be some intelligent "behind the scenes" way of helping to distribute and handle load and / or errors. But I have no clue. I hope some out there can assure me that it is perfectly fine and how it is supposed to be?

© Stack Overflow or respective owner

Related posts about c#

Related posts about .NET