ChangeLog 11 KB

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