ChangeLog 9.1 KB

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