ChangeLog 9.3 KB

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