ChangeLog 9.7 KB

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