2003-11-13 Jackson Harper * SessionInProcHandler.cs: Use AppDomain.SetData so data is available across all threads. Set the path of session id cookies. Patch by Mohammad DAMT. Fixes bug #50922. 2003-11-06 Jackson Harper * ISessionHandler.cs: Pass the SessionStateModule to handlers when updating. * SessionSqlServerHandler.cs: * SessionInProcHandler.cs: Accept SessionStateModule when updating. Use new SessionId.Create method for creating session ids. * SessionStateModule.cs: Add a random number generator that will be used for creating session ids. Pass this to handlers when updating. * SessionId.cs: New class for creating session ids. 2003-11-03 Jackson Harper * HttpSessionState.cs (CopyTo): Copy values not keys. Patch by Yaron Shkop. 2003-11-03 Jackson Harper * HttpSessionState.cs: Make the SessionDictionary accessable * ISessionHandler.cs: Add method to update the session state data in the handler. Pass the session config to handlers when initializing. * SessionConfig.cs: Add StateNetworkTimeout * SessionInProcHandler.cs: Updates because interface has changed, all functionality is the same. * SessionStateModule.cs: Get new config items, allow SQLServer session manager type. Update session handlers when the session state has been released. * SessionStateSectionHandler.cs: Add StateNetworkTimeout * SessionSQLServerHandler.cs: New class allows sessions to be stored in a database. 2003-10-28 Jackson Harper * HttpSessionState.cs: Do not allow timeout to be set to less then one. 2003-10-28 Jackson Harper * SessionInProcHandler.cs: Compute timeouts correctly. DateTime.Milliseconds is the just the milliseconds part of the time, it is not the entire time as milliseconds. 2003-10-13 Ben Maurer * SessionStateModule.cs: prevent Context.State from being null if the module is inited in another HttpApplication. Fixes #49569. 2003-07-30 Andreas Nahr * IStateRuntime.cs: New interface class * StateRuntime.cs: New class - stubbed out 2003-07-17 Andreas Nahr * SessionInProcHandler.cs: Made these internal to fix signature and building CLS-compliant 2003-07-08 Gonzalo Paniagua Javier * SessionDictionary.cs: locking. * SessionInProcHandler.cs: use the new method instead of the setter. 2003-07-01 Gonzalo Paniagua Javier * ISessionHandler.cs: * SessionInProcHandler.cs: * SessionStateModule.cs: UpdateContext returns a bool indicating if we started a new session. Only call session start event if that is true. 2003-05-13 Gonzalo Paniagua Javier * SessionStateModule.cs: fire application start and session start/end events. 2003-03-31 Stefan Görling * HttpSessionState.cs: * ISessionHandler.cs: * SessionInProcHandler.cs: * SessionStateModule.cs: initial implementation of InProc session. 2003-03-13 Gonzalo Paniagua Javier * HttpSessionState.cs: implemented CodePage. * SessionStateModule.cs: initial stuff to make it work. 2003-03-04 Gonzalo Paniagua Javier * HttpSessionState.cs: reworked to use SessionDictionary. * SessionDictionary.cs: implemented serialization/deserialization. 2003-03-03 Gonzalo Paniagua Javier * SessionConfig.cs: * SessionStateSectionHandler.cs: new files to read configuration. 2002-10-08 Gonzalo Paniagua Javier * SessionStateModule.cs: don't throw exception. Just for testing the configuration stuff until we implement this. 2002-08-18 Gonzalo Paniagua Javier * HttpSessionState.cs: IsAbandoned is internal. * SessionDictionary.cs: scope fixes. * SessionStateModule.cs: added events. 2002-06-30 Gonzalo Paniagua Javier * System.Web.SessionState/HttpSessionState.cs: Fixes based on class status page: - Add attributes (DefaultEvent, ParseChildren). - Fix declarations. - Explicitly implement some interfaces (IPostBackDataHandler and IPostBackEventHandler). - Implemented some missing methods. 2002-06-23 Gonzalo Paniagua Javier * HttpSessionState.cs: implemented more methods/properties. * SessionDictionary.cs: New file. 2002-06-04 Gonzalo Paniagua Javier * System.Web.SessionState/HttpSessionState.cs: * System.Web.SessionState/SessionStateModule.cs: new files with some implementation and the rest stubbed. 2002-06-03 Gonzalo Paniagua Javier * IReadOnlySessionState.cs: * IRequiresSessionState.cs: * SessionStateMode.cs: new files.