2
0

ChangeLog 12 KB

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