Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is request-processing pipeline?

What is request-processing pipeline with reference to IIS ?

like image 829
Ranvir Avatar asked Oct 07 '10 08:10

Ranvir


2 Answers

The request processing pipeline in IIS is the mechanism by which requests are processed beginning with a Request and ending with a Response.

Pictures speak louder than words, you should review the IIS7 architecture diagrams on this page:

Introduction to IIS 7 Architecture - HTTP Request Processing in IIS 7

enter image description here

enter image description here

like image 64
Kev Avatar answered Sep 23 '22 03:09

Kev


IIS contains several components that perform important functions for the application and Web server roles in Windows Server® 2008 (IIS 7.0) and Windows Server 2008 R2 (IIS 7.5). Each component has responsibilities, such as listening for requests made to the server, managing processes, and reading configuration files. These components include protocol listeners, such as HTTP.sys, and services, such as World Wide Web Publishing Service (WWW service) and Windows Process Activation Service (WAS).

like image 33
samer Avatar answered Sep 22 '22 03:09

samer