ChangeLog 5.9 KB

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