ChangeLog 10 KB

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