2
0

ChangeLog 12 KB

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