ChangeLog 18 KB

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