first_page the funky knowledge base
personal notes from way, _way_ back and maybe today

MCAD/MCSD Notes: Chapter 2, Lesson 3; Where Does Processing Occur?

Lesson 3: Where Does Processing Occur?

The purpose of this lesson is to examine IIS, its definition of a Web application, to define the "application domain" and to distinguish IIS 6.0. This lesson ends with configuring Session duration.

The worker process then loads the compiled assembly into a process space called "the application domain," which maintains process isolation for each Web application. (This is not the case for DLLHost.exe of ASP). IIS 6.0 uses w3wp.exe instead of aspnet_wp.exe. The process instances created by w3wp.exe can exist within multiple application pools.

The lesson then goes on to describe the importance of Session states. The second reason, "They determine when the application ends...," sounds strange to me. My first thought is, Ok does that mean that session-less web applications never end?

The <sessionState> element, its timeout attribute, is used to determine when the Web application ends.

mod date: 2004-12-22T07:12:45.000Z