ChangeLog 14 KB

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