Sie sind auf Seite 1von 4

WEB BASED INFORMATION

ASP maintains session state by providing the client with a unique key assigned to the user when the session begins.
This key is stored in an HTTP cookie that the client sends to the server on each request. The server can then read the
key from the cookie and re-inflate the server session state.

Problems with ASP Session State

ASP developers know session state as a great feature, but one that is somewhat limited. These limitations include:

• Process dependent. ASP session state exists in the process that hosts ASP; thus the actions that affect the
process also affect session state. When the process is recycled or fails, session state is lost.
• Server farm limitations. As users move from server to server in a Web server farm, their session state
does not follow them. ASP session state is machine specific. Each ASP server provides its own session
state, and unless the user returns to the same server, the session state is inaccessible. While network IP level
routing solutions can solve such problems, by ensuring that client IPs are routed to the originating server,
some ISPs choose to use a proxy load-balancing solution for their clients. Most infamous of these is AOL.
Solutions such as AOL's prevent network level routing of requests to servers because the IP addresses for
the requestor cannot be guaranteed to be unique.
• Cookie dependent. Clients that don't accept HTTP cookies can't take advantage of session state. Some
clients believe that cookies compromise security and/or privacy and thus disable them, which disables
session state on the server.

These are several of the problem sets that were taken into consideration in the design of ASP.NET session state.

ASP.NET Session State

ASP.NET session state solves all of the above problems associated with classic ASP session state:

• Process independent. ASP.NET session state is able to run in a separate process from the ASP.NET host
process. If session state is in a separate process, the ASP.NET process can come and go while the session
state process remains available. Of course, you can still use session state in process similar to classic ASP,
too.
• Support for server farm configurations. By moving to an out-of-process model, ASP.NET also solves
the server farm problem. The new out-of-process model allows all servers in the farm to share a session
state process. You can implement this by changing the ASP.NET configuration to point to a common
server.
• Cookie independent. Although solutions to the problem of cookieless state management do exist for
classic ASP, they're not trivial to implement. ASP.NET, on the other hand, reduces the complexities of
cookieless session state to a simple configuration setting.

Let's look at each of these features in more detail, including how the settings are configured.

Using ASP.NET Session State

Session state settings in ASP.NET are configured through the ASP.NET XML configuration file config.web. We'll
look at config.web in more detail in a later column, but for this discussion of session state let's look at it briefly.

Config.web

There are two types of configuration files: a machine configuration file and an application configuration file, both
named config.web. The two are identical, except that the machine configuration file applies settings to all
applications but the application configuration files are either restrictive or expansive on an application-by-
application basis.

In Beta 1, the machine config.web file is in the WinNT\Microsoft.NET\Framework\v1.0.2204 directory, while the
optional application configuration files exist in the application's directory. Application config.web files are optional
in the sense that if an application config.web file doesn't exist, the machine config.web settings are used instead.
ASP.NET session state settings can be made in the machine config.web file and overridden in a particular
application's config.web file.

Note: Changes made to config.web are applied immediately, unlike classic ASP, where the server has to be stopped
and started for settings to take affect.

The settings above are used to configure ASP.NET session state. Let's look at each in more detail and cover the
various uses afterward.

• Mode. The mode setting supports three options: inproc, sqlserver, and stateserver. As stated earlier,
ASP.NET supports two modes: in process and out of process. There are also two options for out-of-process
state management: memory based (stateserver), and SQL Server based (sqlserver). We'll discuss
implementing these options shortly.
• Cookieless. The cookieless option for ASP.NET is configured with this simple Boolean setting.
• Timeout. This option controls the length of time a session is considered valid. The session timeout is a
sliding value; on each request the timeout period is set to the current time plus the timeout value
• Sqlconnectionstring. The sqlconnectionstring identifies the database connection string that names the
database used for mode sqlserver.
• Server. In the out-of-process mode stateserver, it names the server that is running the required Windows
NT service: ASPState.
• Port. The port setting, which accompanies the server setting, identifies the port number that corresponds to
the server setting for mode stateserver.
• This simple page wires up two server-side events for the Add and View buttons, and simply sets the
session state to the value in the text box.
• There are four general configuration settings we can look at in more detail: in-process mode, out-of-process
mode, SQL Server mode, and Cookieless.
In-process Mode
• In-process mode simply means using ASP.NET session state in a similar manner to classic ASP session
state. That is, session state is managed in process and if the process is re-cycled, state is lost. Given the new
settings that ASP.NET provides, you might wonder why you would ever use this mode. The reasoning is
quite simple: performance. The performance of session state, e.g. the time it takes to read from and write to
the session state dictionary, will be much faster when the memory read to and from is in process, as cross-
process calls add overhead when data is marshaled back and forth or possibly read from SQL Server.
• In-process mode is the default setting for ASP.NET. When this setting is used, the only other session
config.web settings used are cookieless and timeout.
• If we call SessionState.aspx, set a session state value, and stop and start the ASP.NET process (iisreset),
the value set before the process was cycled will be lost.
Out-of-process Mode
• Included with the .NET SDK is a Windows® NT service: ASPState. This Windows service is what
ASP.NET uses for out-of-process session state management. To use this state manager, you first need to
start the service. To start the service, open a command prompt and type:
• We changed only from inproc mode to stateserver mode. This setting tells ASP.NET to look for the ASP
state service on the server specified in the server and port settings—in this case, the local server.
• We can now call SessionState.aspx, set a session state value, stop and start the IIS process (iisreset), and
continue to have access to the values for our current state.
SQL Server Mode
• The SQL Server mode option is similar to that of the Windows NT Service, except that the information
persists to SQL Server rather than being stored in memory.
• To use SQL Server as our session state store, we first must create the necessary tables and stored
procedures that ASP.NET will look for on the identified SQL Server. The .NET SDK provides us with a
SQL script (state.sql) to do just that.

state.sql
• The state.sql file contains the SQL commands used to create the ASPState database. This script creates two
tables and several stored procedures. ASP.NET uses both the tables and the procedures to store data in SQL
Server. I would recommend reading through state.sql to learn more about what it is doing.
• The state.sql file can be found in [system drive]\winnt\Microsoft.NET\Framework\[version]\

Applying the state.sql script


• To apply the state.sql script, use the command line tool SQL Server provides: osql.exe. Using an sa
equivalent SQL user, the syntax below is used:
• Again, similar to the Windows NT service state manager, we can now call SessionState.aspx, set a session
state value, stop and start the IIS process (iisreset), and continue to have access to the values for our current
state. In fact, we could cluster the SQL Servers such that if one SQL Server happened to be unavailable,
another server that was replicating its data could take its place. This provides a level of reliability that was
not available in ASP.
• Cookieless State
• The last new feature that we can configure for ASP.NET session state is cookieless session state.
Essentially this feature allows sites whose clients choose not to use cookies to take advantage of ASP.NET
session state.
• This is done by modifying the URL with an ID that uniquely identifies the session:
• Copy
• http://localhost/(lit3py55t21z5v55vlm25s55)/Application/SessionState.aspx

• ASP.NET will modify relative links found within the page and embed this ID. Thus, as long as the user
follows the path of links the site provides, session state can be maintained. However, if the end user re-
writes the URL, the session state instance will most likely be lost.
• The IIS 4.0 Resource Kit provided a similar feature. It was implemented as an ISAPI filter that could
modify the incoming and outgoing byte stream to write and read the necessary information. The difference
between this and the ASP.NET feature is the effort required to use the feature. In ASP.NET, it's simply a
matter of flipping a Boolean value in the config.web file:

Performance and Reliability Considerations

It's worth mentioning, briefly, some of the performance and reliability issues you should consider when using
ASP.NET session state modes.

• In process. In process will perform best because the session state memory is kept within the ASP.NET
process. For Web applications hosted on a single server, applications in which the user is guaranteed to be
re-directed to the correct server, or when session state data is not critical (in the sense that it can be re-
constructed or re-populated), this is the mode to choose.
• Out of process. This mode is best used when performance is important but you can't guarantee which
server a user will request an application from. With out-of-process mode, you get the performance of
reading from memory and the reliability of a separate process that manages the state for all servers.
• SQL Server. This mode is best used when the reliability of the data is fundamental to the stability of the
application, as the database can be clustered for failure scenarios. The performance isn't as fast as out of
process, but the tradeoff is the higher level of reliability.
Factorability

What we didn't get to cover in this article, and something we'll look at in future articles, is the factorability of
ASP.NET. Essentially, this is the ability to extend or replace ASP.NET features, such as session state. If a third
party provides an extended session state manager that stores session data in a Lightweight Directory Access Protocol
(LDAP) directory, such as a Netscape LDAP directory, the default ASP.NET session state implementation can be
replaced.

Summary

As you can see, ASP.NET session state is quite different from ASP session state. The new capability of session state
that is not bound to the ASP.NET process means that developers can begin to use session state in server farm
environments without worrying about whether the client is coming through a proxy server. Additionally, with the
cookieless state functionality, it is even easier to use session state and guarantee that all clients can take advantage of
the session state feature.

In the next article we'll look at the new tracing feature in ASP.NET.

Das könnte Ihnen auch gefallen