ChangeLog 7.1 KB

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