Cookies and Session Variables used

The following cookies and session variables are used in the Web application:

Cookies


Session Variables

In addition the store uses several Session variables. The Web Store requires Sessions to be enabled and we highly recommend that you use either the ASP.NET State Server or Sql Storage to ensure that a restarted server or application can persist sessions properly. By default the store ships with InProc sessions so it runs out of the box, but it's highly recommended to use SessionServer:

<configuration> <system.web> <sessionState mode="StateServer" stateConnectionString="tcpip=127.0.0.1:42424" cookieless="false" timeout="60" /> </system.web> </configuration>

The Web Store doesn't make extensive use of Session variables. Most of the operational data is tracked in database files. The values stored in the session are mainly ID values and a few cumulative opeational values that are frequently needed. The following is the complete list of Session keys used:



 Last Updated: 3/5/2007 | Send topic feedback