ChangeLog 12 KB

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