ChangeLog 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265
  1. 2004-06-11 Gonzalo Paniagua Javier <[email protected]>
  2. * SessionSQLServerHandler.cs:
  3. * SessionStateServerHandler.cs:
  4. * ISessionHandler.cs: added new parameter to Init.
  5. * SessionInProcHandler.cs: use the HttpRuntime cache to store the
  6. sessions and handle expiration.
  7. * SessionStateModule.cs: added OnSessionRemoved internal method that is
  8. called whenever a session expires or is removed.
  9. 2004-05-05 Gonzalo Paniagua Javier <[email protected]>
  10. * HttpSessionState.cs: added Clone (), which makes and exact copy but
  11. with a cloned SessionDictionary. When EnableSessionState is set to
  12. ReadOnly, we can modify the collection, but changes are not propagated.
  13. * ISessionHandler.cs: changed signature of UpdateContext().
  14. * SessionDictionary.cs: added Clone.
  15. * SessionInProcHandler.cs:
  16. * SessionSQLServerHandler.cs:
  17. * SessionStateServerHandler.cs: don't create a new session if the
  18. handler do not require it. UpdateContext() now returns an
  19. HttpSessionState to the module.
  20. * SessionStateModule.cs: removed IsReadOnly as it is now passed as a
  21. parameter to the session handler. If the session is read-only, clone
  22. it so that it can be changed but changes are not kept.
  23. In short, we don't create session objects when not required and we
  24. honor the ReadOnly sessions.
  25. 2004-02-09 Gonzalo Paniagua Javier <[email protected]>
  26. * SessionInProcHandler.cs:
  27. * SessionSQLServerHandler.cs:
  28. * SessionStateServerHandler.cs: when creating the
  29. HttpSessionStateObjets, use the session objects that we know about
  30. in HttpApplicationFactory.
  31. 2004-01-23 Gonzalo Paniagua Javier <[email protected]>
  32. * HttpSessionState.cs:
  33. * SessionInProcHandler.cs: IsNewSession doesn't have a public setter.
  34. * SessionStateModule.cs: doesn't implement IRequiresSessionState.
  35. * StateServerItem.cs: not public.
  36. 2004-01-05 Alon Gazit <[email protected]>
  37. * SessionDictionary.cs: can't set item's value to null if the item is
  38. new.
  39. 2003-12-25 Jackson Harper <[email protected]>
  40. * SessionStateModule.cs: Handle SessionStateMode.Off properly in
  41. Init. Only set session cookies if a new session is created. This
  42. fixes bug #52501.
  43. 2003-12-18 Gonzalo Paniagua Javier <[email protected]>
  44. * IStateRuntime.cs:
  45. * SessionStateModule.cs: class status based fixes.
  46. 2003-12-05 Jackson Harper <[email protected]>
  47. * SessionStateModule.cs: Add readonly property for readonly
  48. sessions. This fixes bug #51647.
  49. * SessionInProcHandler.cs:
  50. * SessionSQLServerHandler.cs:
  51. * SessionStateServerHandler.cs: Cleanup params for
  52. HttpSessionState ctor. Make sure to always set is new, cookieless,
  53. and readonly properly.
  54. 2003-12-03 Jackson Harper <[email protected]>
  55. * SessionStateModule.cs: If using cookieless sessions add an
  56. onbegin request handler that parsers out session ids and rewrites
  57. the path. Also redirect to a url with an embedded session id if we
  58. are creating a new cookieless session.
  59. * SesionInProcHandler.cs:
  60. * SessionSQLServerHandler.cs:
  61. * SessionStateServerHandler.cs: Use SessionId::Lookup to lookup session
  62. ids, don't set the session id cookie anymore. That is handled by
  63. the SessionStateModule.
  64. * SessionId.cs: Add method for looking up session ids, add some constants.
  65. 2003-11-26 Jackson Harper <[email protected]>
  66. * SessionSQLServerHandler.cs: Fix typo in param name.
  67. 2003-11-25 Jackson Harper <[email protected]>
  68. * RemoteStateServer.cs: Update the session dictionary data and the
  69. static objects data.
  70. * SessionDictionary.cs: Remove type serialization methods, these
  71. have been moved to a utility class. Add convenience methods for
  72. converting to/from byte arrays.
  73. * SessionSQLServerHandler.cs:
  74. * SessionStateServerHandler.cs: Save/Restore static objects. Use new
  75. to/from byte array methods.
  76. * StateServerItem.cs: Hold static objects data.
  77. 2003-11-24 Jackson Harper <[email protected]>
  78. * SessionStateServerHandler.cs: Parse connection string. Need to
  79. look into what MS allows/doesn't allow better.
  80. 2003-11-24 Jackson Harper <[email protected]>
  81. * RemoteStateServer.cs: The state server object that will reside
  82. on the server and store session data and ids.
  83. * StateServerItem.cs: Container for session data.
  84. * SessionStateServerHandler.cs: Handler that communicates with the
  85. StateServer so sessions can be stored out of process.
  86. * SessionStateModule.cs: Allow state server mode.
  87. 2003-11-13 Jackson Harper <[email protected]>
  88. * SessionInProcHandler.cs: Use AppDomain.SetData so data is
  89. available across all threads. Set the path of session id
  90. cookies. Patch by Mohammad DAMT. Fixes bug #50922.
  91. 2003-11-06 Jackson Harper <[email protected]>
  92. * ISessionHandler.cs: Pass the SessionStateModule to handlers when
  93. updating.
  94. * SessionSqlServerHandler.cs:
  95. * SessionInProcHandler.cs: Accept SessionStateModule when
  96. updating. Use new SessionId.Create method for creating session
  97. ids.
  98. * SessionStateModule.cs: Add a random number generator that will
  99. be used for creating session ids. Pass this to handlers when
  100. updating.
  101. * SessionId.cs: New class for creating session ids.
  102. 2003-11-03 Jackson Harper <[email protected]>
  103. * HttpSessionState.cs (CopyTo): Copy values not keys. Patch by Yaron Shkop.
  104. 2003-11-03 Jackson Harper <[email protected]>
  105. * HttpSessionState.cs: Make the SessionDictionary accessable
  106. * ISessionHandler.cs: Add method to update the session state
  107. data in the handler. Pass the session config to handlers when
  108. initializing.
  109. * SessionConfig.cs: Add StateNetworkTimeout
  110. * SessionInProcHandler.cs: Updates because interface has
  111. changed, all functionality is the same.
  112. * SessionStateModule.cs: Get new config items, allow SQLServer
  113. session manager type. Update session handlers when the session
  114. state has been released.
  115. * SessionStateSectionHandler.cs: Add StateNetworkTimeout
  116. * SessionSQLServerHandler.cs: New class allows sessions to be
  117. stored in a database.
  118. 2003-10-28 Jackson Harper <[email protected]>
  119. * HttpSessionState.cs: Do not allow timeout to be set to less then
  120. one.
  121. 2003-10-28 Jackson Harper <[email protected]>
  122. * SessionInProcHandler.cs: Compute timeouts
  123. correctly. DateTime.Milliseconds is the just the milliseconds part
  124. of the time, it is not the entire time as milliseconds.
  125. 2003-10-13 Ben Maurer <[email protected]>
  126. * SessionStateModule.cs: prevent Context.State from being null if
  127. the module is inited in another HttpApplication. Fixes #49569.
  128. 2003-07-30 Andreas Nahr <[email protected]>
  129. * IStateRuntime.cs: New interface class
  130. * StateRuntime.cs: New class - stubbed out
  131. 2003-07-17 Andreas Nahr <[email protected]>
  132. * SessionInProcHandler.cs: Made these internal to fix signature and building CLS-compliant
  133. 2003-07-08 Gonzalo Paniagua Javier <[email protected]>
  134. * SessionDictionary.cs: locking.
  135. * SessionInProcHandler.cs: use the new method instead of the setter.
  136. 2003-07-01 Gonzalo Paniagua Javier <[email protected]>
  137. * ISessionHandler.cs:
  138. * SessionInProcHandler.cs:
  139. * SessionStateModule.cs: UpdateContext returns a bool indicating if we
  140. started a new session. Only call session start event if that is true.
  141. 2003-05-13 Gonzalo Paniagua Javier <[email protected]>
  142. * SessionStateModule.cs: fire application start and session start/end
  143. events.
  144. 2003-03-31 Stefan Görling <[email protected]>
  145. * HttpSessionState.cs:
  146. * ISessionHandler.cs:
  147. * SessionInProcHandler.cs:
  148. * SessionStateModule.cs: initial implementation of InProc session.
  149. 2003-03-13 Gonzalo Paniagua Javier <[email protected]>
  150. * HttpSessionState.cs: implemented CodePage.
  151. * SessionStateModule.cs: initial stuff to make it work.
  152. 2003-03-04 Gonzalo Paniagua Javier <[email protected]>
  153. * HttpSessionState.cs: reworked to use SessionDictionary.
  154. * SessionDictionary.cs: implemented serialization/deserialization.
  155. 2003-03-03 Gonzalo Paniagua Javier <[email protected]>
  156. * SessionConfig.cs:
  157. * SessionStateSectionHandler.cs: new files to read <sessionState>
  158. configuration.
  159. 2002-10-08 Gonzalo Paniagua Javier <[email protected]>
  160. * SessionStateModule.cs: don't throw exception. Just for testing the
  161. configuration stuff until we implement this.
  162. 2002-08-18 Gonzalo Paniagua Javier <[email protected]>
  163. * HttpSessionState.cs: IsAbandoned is internal.
  164. * SessionDictionary.cs: scope fixes.
  165. * SessionStateModule.cs: added events.
  166. 2002-06-30 Gonzalo Paniagua Javier <[email protected]>
  167. * System.Web.SessionState/HttpSessionState.cs:
  168. Fixes based on class status page:
  169. - Add attributes (DefaultEvent, ParseChildren).
  170. - Fix declarations.
  171. - Explicitly implement some interfaces (IPostBackDataHandler
  172. and IPostBackEventHandler).
  173. - Implemented some missing methods.
  174. 2002-06-23 Gonzalo Paniagua Javier <[email protected]>
  175. * HttpSessionState.cs: implemented more methods/properties.
  176. * SessionDictionary.cs: New file.
  177. 2002-06-04 Gonzalo Paniagua Javier <[email protected]>
  178. * System.Web.SessionState/HttpSessionState.cs:
  179. * System.Web.SessionState/SessionStateModule.cs: new files with some
  180. implementation and the rest stubbed.
  181. 2002-06-03 Gonzalo Paniagua Javier <[email protected]>
  182. * IReadOnlySessionState.cs:
  183. * IRequiresSessionState.cs:
  184. * SessionStateMode.cs: new files.