ChangeLog 10.0 KB

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