ChangeLog 7.2 KB

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