ChangeLog 10 KB

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