ChangeLog 7.5 KB

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