How the Simple Web page execution Happens?

on Tuesday, July 28, 2009

Many of us know that IIS is a web server and we use it in our .Net application since we need a web server to run a web application. But I wonder as many of us don't know the internal architecture of IIS. This article is written for beginners to know the architecture of IIS.

How the Simple Web page execution Happens?

As All of us know A Request comes from Client (Browser) and sends to Server (We call it as Web server) in turn Server Process the Request and sends response Back to the Client in according to the client Request

But internally in the Web server there is quite interesting process that happens. To get aware of that process we should first of all know about the architecture of the IIS

It mainly consists of 3 Parts/Files

1. Inetinfo.exec

2. ISAPI Filter (Container for Internet Server Application Interface dlls) ,

3. Worker Process (aspnet_wp.exe)

When ever a Request comes from the Client:

Inetinfo.exe is the ASP.Net Request Handler that handles the requests from the client .If it’s for static resources like HTML files or image files inetinfo.exe process the request and sent to client If the request is with extension aspx/asp inetinfo.exe processes the request to API filter. ISAPI filter will have several runtime modules called as ISAPI extensions. To process the request ISAPI filter takes the help of these runtime modules .The runtime module loaded for asp page is asp.dll. And for asp.net page it’s ASPNET_ISAPI.dll. From here the request is processed o the Worker Process. Worker Process will have several Application Domains
Application Domain

The purpose of the Application Domain is in order to isolate one application from another. When ever we create a new application, application Domains are created automatically by the CLRHost. Worker process will create a block of memory related to particular application. Application domains provide a more secure and versatile unit of processing that the common language runtime can use to provide isolation between applications. Application domains are normally created by runtime hosts. Runtime host is responsible for bootstrapping the common language runtime before an application is run.

Worker process sends the request to HTTPPIPE line.(HTTP Pipeline is nonetheless collection of .net framework classes). HTTP Pipeline compiles the request into a library and -makes a call to HTTP runtime and Runtime creates an instance of page class

public class File : System.Web.UI.Page
{
}

ASP.Net web page is a class derived from Page class ,this page class resides in system.web.dll

After creating instance pf Page class HTTP Runtime immediately invokes Process Request Method of Page class

Page Req = new Page();

Req.ProcessRequest();


Process Request Method Does Following things

1.Intialize the Memory

2.Load the View State

3.Page Execution and Post back Events

4.Rendering HTML Content

5.Releasing the memory

Process Request Method executes set of events for page class .These are calles as Page life cycle events.
Page Life Cycle Events

Page_Init
The server controls are loaded and initialized from the Web form’s view state. This is the first step in a Web form’s life cycle.

Page_Load
The server controls are loaded in the Page object. View state information is available at this point, so this is where you put code to change control settings or display text on the page.

Page_PreRender
The application is about to render the Page object.

Page_Unload
The page is unloaded from memory.

Page_Disposed
The Page object is released from memory. This is the last event in the life of a Page object.

Page_Error
An unhandled exception occurs.

Page_AbortTransaction
A transaction is aborted.

Page_CommitTransaction
A transaction is accepted.

Page_DataBinding
A server control on the page binds to a data source.

Process Request Method finally renders HTML Page
Dependencies:

When the request comes to ASP.net worker Process, it will be forwarded to HTTP Application factory. This Application Factory will maintain address of the Application Domains which are currently executing under worker process. If the required virtual directory application domain is unavailable it will create a new Application Domain. If the application domain is already existent, the request will be forwarded to Corresponding AppDomain.

Application Domain maintains Page handler factory class. This will contain all libraries addresses corresponding to webpage. If the requested webpage library is available the instance of the page class is created, if the library is unavailable the request will be forwarded to http pipeline

DietChart

on Sunday, July 19, 2009


Breakfast:
1) Sprouted beans/grams/pulses(200 grams)
2) 2 pieces of brown bread without butter & without jam
3) Very slightly warm water with lemon and honey
On weekends u can eat Burger(without cheese)
Lunch:
1) Salad (200 grams) made from raw cabbage, carrot, tomato, and other vegetables
2) 4 pieces of brown bread (made from whole wheat) without butter & without jam
3) Boiled pulses.
4) Green vegetables cooked with less oil rich in fiber
Or
5) Roasted fat free chicken/fish or boiled egg white

Take 2 glass of water just before and after lunch

Evening Diet:
A glass of pure fruit juice(without sugar)
Or
An apple
Dinner:
6) Salad (200 grams) made from raw cabbage,carrot,tomato,and other vegetables
7) 2 pieces of brown bread (made from whole wheat) without butter & without jam
8) Boiled pulses.
9) Green vegetables cooked with less oil rich in fiber
Take 2 glass of water just before and after dinner
Drink 3-5 liters of water a day.
What not to eat:
1) Beer/Alcohol
2) Bottled Soft Drinks (coke)
3) Sweets
4) Cheese
5) Fried potatoes and chips
6) Beef or red meat
7) Milk with fat
8) Banana
9) Cakes and biscuits
10) Egg yolk

Take breakfast at around 8 am
Lunch at around 1 pm
Evening diet at 5-6 pm
Dinner at around 9 pm( 1 hrs before sleeping)

In every hour take minimum 2 glass of water.



For me...LOVE is

on Friday, July 17, 2009



(Some words from bottom of my heart ……for my dream love)


--------------------------------------------------


Dear..I wish I Could tell u how much I Love U..I Love u very very much..
When I close my eyes I see u...when I open my eyes,
I long to see u…... Even when you r not near me…
my eyes search only for U my dear….U can Call it Love ,Madness or Just my heartbeats...its all same for me..
A lots of people have loved before...but my love stands apart from all of them...because they don’t have you..I love u dear..
I can never forget u..I don’t want to forget u..
U r mine and I will love u forever...I will Love you till I die...and even after that....!

Winners

on Wednesday, July 15, 2009

Winners recognize their weakness but focus on their strengths,
Losers recognize their strengths but focus on their weakness.