Nestor
Nestor

Reputation: 13990

How does the IIS 7 / ASP.Net pipeline work?

From an HTTP request all the way to my files (like .asmx)... what are modules, handlers, app pools... etc... I don't want to ready a chapter about it. Just a summary paragraph.

Upvotes: 17

Views: 7522

Answers (1)

Gavin Miller
Gavin Miller

Reputation: 43815

Here's an image describing the IIS 6 & ASP.NET pipeline from Learn IIS.NET:

IIS 6 pipeline

Here's an image describing the IIS 7 & ASP.NET pipeline from Learn IIS.NET:

IIS 7 pipeline

And finally here's an image for the MVC pipeline that Red-Gate put together:

RedGate ASP.NET MVC request handling pipeline poster

The pdf can be downloaded from RedGate

Upvotes: 23

Related Questions