2
0

ChangeLog 9.2 KB

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