[.net programming language only]

Configuring your .NET application to use the ASP.NET session state store provider

[Version 8.6.0.2 and later]To configure the ASP.NET session state store provider, you must update the web.config file for the ASP.NET application to include the ASP.NET session state store provider and its configuration.

Before you begin

Procedure

  1. Update the web.config file of your ASP.NET application with settings for the ASP.NET session state store provider. You must update or add the text in bold in the following example to the web.config file.
    <system.web>
    	…
    	<sessionState
    		mode="Custom"
    		customProvider="WxsSessionStateStoreProvider">
    		<providers>
    				<add
    			 		name="WxsSessionStateStoreProvider"
    					type="IBM.WebSphere.Caching.SessionStateStore.WxsSessionStateStore, 
    						IBM.WebSphere.Caching, Version=8.6.0.2000, Culture=neutral, 
    						PublicKeyToken=b439a24ee43b0816"
    					wxsPropertyFile="\optional\path\to\NET-client.properties"
    					wxsHostAndPort="optionalHostAndPort"
    					wxsGridName="session"
    					wxsMapName="ASPNET.SessionState"
             />           
            </providers>
    		</sessionState>
    	…
    </system.web>
    wxsPropertyFile (optional)
    Specifies the fully qualified properties file that the provider uses when it connects to the data grid with the Connect API. If this attribute is not specified or is an empty string, the provider looks for the Client.Net.properties file in the current runtime directory of the web application process. If the provider does not find the file in the runtime directory, it looks for the Client.Net.properties file in the net_client_home\config directory.
    wxsHostAndPort (optional)
    Specifies a comma-separated list of catalog server host and port pairs to which the session state store provider connects when it accesses the data grid. The format follows:
    <host name or host ip address>:<tcp port>[,<host name or host ip address>:<tcp port>]
    If no value is specified, localhost:2809 is used.
    wxsGridName (optional)
    Specifies the name of the data grid to which the ASP.NET session store provider connects. If you created a data grid for ASP.NET session states, specify the data grid name that you created. If you do not specify a value, the provider connects to the session data grid.
    wxsMapName (optional)
    Specifies the map to which the provider connects. If you do not specify a value, the provider connects to the ASPNET.SessionState map.
  2. Restart the target web application.
    The web application must restart so that the provider can be loaded by IIS. In most cases, after the web.config file is modified and current HTTP request processing is complete, the restart occurs automatically.

Results

ASP.NET session state from your ASP.NET application is stored in the data grid.