2
0

ChangeLog 14 KB

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