ChangeLog 9.6 KB

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