ChangeLog 7.7 KB

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