ChangeLog 6.8 KB

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