2
0

ChangeLog 6.4 KB

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