2
0

ChangeLog 12 KB

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