2
0

ChangeLog 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. 2003-11-13 Jackson Harper <[email protected]>
  2. * SessionInProcHandler.cs: Use AppDomain.SetData so data is
  3. available across all threads. Set the path of session id
  4. cookies. Patch by Mohammad DAMT. Fixes bug #50922.
  5. 2003-11-06 Jackson Harper <[email protected]>
  6. * ISessionHandler.cs: Pass the SessionStateModule to handlers when
  7. updating.
  8. * SessionSqlServerHandler.cs:
  9. * SessionInProcHandler.cs: Accept SessionStateModule when
  10. updating. Use new SessionId.Create method for creating session
  11. ids.
  12. * SessionStateModule.cs: Add a random number generator that will
  13. be used for creating session ids. Pass this to handlers when
  14. updating.
  15. * SessionId.cs: New class for creating session ids.
  16. 2003-11-03 Jackson Harper <[email protected]>
  17. * HttpSessionState.cs (CopyTo): Copy values not keys. Patch by Yaron Shkop.
  18. 2003-11-03 Jackson Harper <[email protected]>
  19. * HttpSessionState.cs: Make the SessionDictionary accessable
  20. * ISessionHandler.cs: Add method to update the session state
  21. data in the handler. Pass the session config to handlers when
  22. initializing.
  23. * SessionConfig.cs: Add StateNetworkTimeout
  24. * SessionInProcHandler.cs: Updates because interface has
  25. changed, all functionality is the same.
  26. * SessionStateModule.cs: Get new config items, allow SQLServer
  27. session manager type. Update session handlers when the session
  28. state has been released.
  29. * SessionStateSectionHandler.cs: Add StateNetworkTimeout
  30. * SessionSQLServerHandler.cs: New class allows sessions to be
  31. stored in a database.
  32. 2003-10-28 Jackson Harper <[email protected]>
  33. * HttpSessionState.cs: Do not allow timeout to be set to less then
  34. one.
  35. 2003-10-28 Jackson Harper <[email protected]>
  36. * SessionInProcHandler.cs: Compute timeouts
  37. correctly. DateTime.Milliseconds is the just the milliseconds part
  38. of the time, it is not the entire time as milliseconds.
  39. 2003-10-13 Ben Maurer <[email protected]>
  40. * SessionStateModule.cs: prevent Context.State from being null if
  41. the module is inited in another HttpApplication. Fixes #49569.
  42. 2003-07-30 Andreas Nahr <[email protected]>
  43. * IStateRuntime.cs: New interface class
  44. * StateRuntime.cs: New class - stubbed out
  45. 2003-07-17 Andreas Nahr <[email protected]>
  46. * SessionInProcHandler.cs: Made these internal to fix signature and building CLS-compliant
  47. 2003-07-08 Gonzalo Paniagua Javier <[email protected]>
  48. * SessionDictionary.cs: locking.
  49. * SessionInProcHandler.cs: use the new method instead of the setter.
  50. 2003-07-01 Gonzalo Paniagua Javier <[email protected]>
  51. * ISessionHandler.cs:
  52. * SessionInProcHandler.cs:
  53. * SessionStateModule.cs: UpdateContext returns a bool indicating if we
  54. started a new session. Only call session start event if that is true.
  55. 2003-05-13 Gonzalo Paniagua Javier <[email protected]>
  56. * SessionStateModule.cs: fire application start and session start/end
  57. events.
  58. 2003-03-31 Stefan Görling <[email protected]>
  59. * HttpSessionState.cs:
  60. * ISessionHandler.cs:
  61. * SessionInProcHandler.cs:
  62. * SessionStateModule.cs: initial implementation of InProc session.
  63. 2003-03-13 Gonzalo Paniagua Javier <[email protected]>
  64. * HttpSessionState.cs: implemented CodePage.
  65. * SessionStateModule.cs: initial stuff to make it work.
  66. 2003-03-04 Gonzalo Paniagua Javier <[email protected]>
  67. * HttpSessionState.cs: reworked to use SessionDictionary.
  68. * SessionDictionary.cs: implemented serialization/deserialization.
  69. 2003-03-03 Gonzalo Paniagua Javier <[email protected]>
  70. * SessionConfig.cs:
  71. * SessionStateSectionHandler.cs: new files to read <sessionState>
  72. configuration.
  73. 2002-10-08 Gonzalo Paniagua Javier <[email protected]>
  74. * SessionStateModule.cs: don't throw exception. Just for testing the
  75. configuration stuff until we implement this.
  76. 2002-08-18 Gonzalo Paniagua Javier <[email protected]>
  77. * HttpSessionState.cs: IsAbandoned is internal.
  78. * SessionDictionary.cs: scope fixes.
  79. * SessionStateModule.cs: added events.
  80. 2002-06-30 Gonzalo Paniagua Javier <[email protected]>
  81. * System.Web.SessionState/HttpSessionState.cs:
  82. Fixes based on class status page:
  83. - Add attributes (DefaultEvent, ParseChildren).
  84. - Fix declarations.
  85. - Explicitly implement some interfaces (IPostBackDataHandler
  86. and IPostBackEventHandler).
  87. - Implemented some missing methods.
  88. 2002-06-23 Gonzalo Paniagua Javier <[email protected]>
  89. * HttpSessionState.cs: implemented more methods/properties.
  90. * SessionDictionary.cs: New file.
  91. 2002-06-04 Gonzalo Paniagua Javier <[email protected]>
  92. * System.Web.SessionState/HttpSessionState.cs:
  93. * System.Web.SessionState/SessionStateModule.cs: new files with some
  94. implementation and the rest stubbed.
  95. 2002-06-03 Gonzalo Paniagua Javier <[email protected]>
  96. * IReadOnlySessionState.cs:
  97. * IRequiresSessionState.cs:
  98. * SessionStateMode.cs: new files.