ChangeLog 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  1. 2008-06-14 Sebastien Pouliot <[email protected]>
  2. * HttpRemotingHandler.cs: Remove double assignment to bodyBuffer.
  3. [Found using Gendarme]
  4. 2008-02-12 Roei Erez ([email protected])
  5. * HttpServerChannel.cs: Always initialize channel uri.
  6. 2007-10-30 Robert Jordan <[email protected]>
  7. * HttpHelper.cs: Support for the "https" scheme. Make scheme parser
  8. case invariant. Fixes bug #81701.
  9. * HttpServerChannel.cs (GetChannelUri): Take channel data into account.
  10. * HttpServerChannel.cs (SetupChannel): Initialize channel data
  11. with "null", because at this stage we don't necessary have a valid
  12. channel URI.
  13. 2007-08-23 Robert Jordan <[email protected]>
  14. * HttpRemotingHandlerFactory.cs: configure Remoting because
  15. System.Web doesn't anymore. Fixes #81831.
  16. 2006-12-18 Lluis Sanchez Gual <[email protected]>
  17. * HttpServerChannel.cs: The remoting infrastructure does not call
  18. StartListening() anymore, so it has to be called by the channel.
  19. 2006-03-05 Andrew Skiba <[email protected]>
  20. * HttpClientChannel.cs, HttpServerChannel.cs: exceptions propagating
  21. incompatible with dotnet. Patch by [email protected]
  22. 2005-11-06 Svetlana Zholkovsky <[email protected]>
  23. * Add HttpHandlerFactory.jvm.cs
  24. * HttpHandlerFactory.cs: Create and register HttpChannel in case it
  25. was not registered before.
  26. * HttpHandler.cs: Send response headers.
  27. * HttpServerChannel.cs:
  28. - Change default port to -1.
  29. - Don't start a listener if the port == -1
  30. - Send response to the client also in case of DispatchRequest fails
  31. 2005-10-10 Lluis Sanchez Gual <[email protected]>
  32. * HttpServer.cs: Removed all non-sense regular expressions for
  33. parsing files. Makes the channel faster and fixes bug #75886.
  34. 2005-07-06 Lluis Sanchez Gual <[email protected]>
  35. * HttpServer.cs: Close the connection after processing the request.
  36. Based on a patch by Brion Vibber. Fixes bug #75467.
  37. 2005-05-18 Lluis Sanchez Gual <[email protected]>
  38. * HttpServerChannel.cs: Catch exceptions thrown in the server thread.
  39. In StopListening, wait for the server thread to stop before returning.
  40. 2005-01-25 Lluis Sanchez Gual <[email protected]>
  41. * HttpServer.cs: Use a single stream for in an out stream, since they
  42. where the same. Set IPAddress and ConnectionId transport headers.
  43. 2005-01-14 Lluis Sanchez Gual <[email protected]>
  44. * HttpServerChannel.cs: Use the new RemotingThreadPool to manage threads.
  45. Fixed some warnings.
  46. * HttpServer.cs: Minor fix.
  47. 2004-12-17 Lluis Sanchez Gual <[email protected]>
  48. * HttpHelper.cs: Removed unused method. Optimized CopyStream method.
  49. * HttpServerChannel.cs: SendResponse does not return a bool any
  50. more, it throws an exception when it fails.
  51. * HttpServer.cs: Improved handling of errors.
  52. 2004-10-22 Lluis Sanchez Gual <[email protected]>
  53. * HttpClientChannel.cs: In CreateMessageSink, process the remote channel
  54. data if the provided url does not have the expected format. This fixes
  55. a regression from the fix for bug #66768 and fixes #68669.
  56. 2004-09-27 Lluis Sanchez Gual <[email protected]>
  57. * HttpClientChannel.cs: Throw an http exception if the response is a 500,
  58. don't try to deserialize the exception.
  59. 2004-05-26 Lluis Sanchez Gual <[email protected]>
  60. * HttpServerChannel.cs: Default port is 0.
  61. 2004-05-25 Lluis Sanchez Gual <[email protected]>
  62. * HttpServerChannel.cs: Take unused port if the provided prot is 0.
  63. 2004-05-13 Lluis Sanchez Gual <[email protected]>
  64. * HttpChannel.cs, HttpClientChannel.cs: Added missing IDictionary
  65. properties.
  66. * HttpRemotingHandler.cs: Added missing constructor.
  67. * HttpRemotingHandlerFactory.cs: Made ConfigureHttpChannel private.
  68. * HttpServerChannel.cs: Fixed IDictionary properties.
  69. 2004-04-30 Lluis Sanchez Gual <[email protected]>
  70. * HttpServer.cs: Removed dead code.
  71. 2004-02-27 Lluis Sanchez Gual <[email protected]>
  72. * HttpClientChannel.cs: Set the RequestUri transport header before sending
  73. the request.
  74. 2004-02-04 Lluis Sanchez Gual <[email protected]>
  75. * HttpRemotingHandlerFactory.cs: Loading of remoting configuration moved
  76. to System.Web.Configuraiton.
  77. 2003-12-12 Lluis Sanchez Gual <[email protected]>
  78. * HttpServer.cs: Removed debug code.
  79. 2003-12-10 Lluis Sanchez Gual <[email protected]>
  80. * HttpServer.cs: Allow the use of GET method (SdlServerSink supports it).
  81. Added some text constans for transport keys.
  82. * HttpServerChannel.cs: Add SdlChannelSinkProvider to the default
  83. sink provider chain. Removed unused ErrorMessage class.
  84. 2003-11-16 Lluis Sanchez Gual <[email protected]>
  85. * HttpHelper.cs: Removed usnused method GetMachineIp.
  86. * HttpServerChannel.cs: Added support for priority, bindTo, useIpAddress and
  87. machineName properties.
  88. 2003-11-13 Lluis Sanchez Gual <[email protected]>
  89. * HttpChannel.cs: Create empty property dictionary in the default
  90. constructor.
  91. 2003-11-13 Lluis Sanchez Gual <[email protected]>
  92. * HttpChannel.cs: Moved initialization code in SetupChannel to the
  93. respective client and server channels. Added implementatoin of the
  94. interface IChannelReceiverHook.
  95. * HttpRemotingHandler.cs: Implemented.
  96. * HttpRemotingHandlerFactory.cs: Implemented.
  97. * HttpServer.cs: In general, use Stream instances instead of Socket. It is
  98. more reusable in this way. Also improved formatting.
  99. * HttpServerChannel.cs: Implemented support for IChannelReceiverHook.
  100. Added new method DispatchRequest in HttpServerTransportSink that can
  101. be reused by HttpRemotingHandler.
  102. 2003-11-12 Lluis Sanchez Gual <[email protected]>
  103. * HttpServerChannel.cs: Removed StartListening call from constructor. It
  104. is called by the remoting framework.
  105. * HttpClientChannel.cs, HttpHelper.cs: Fixed some formatting.
  106. 2003-09-17 Lluis Sanchez Gual <[email protected]>
  107. * HttpHelper.cs: Fixed bug #48468. Patch by Jean-Marc Andre.
  108. * HttpClientChannel.cs HttpServer.cs HttpServerChannel.cs: Fixed some warnings.
  109. 2003-08-22 Lluis Sanchez Gual <[email protected]>
  110. * HttpClientChannel.cs: Changed text for user-agent header (removed references
  111. to MS.NET).
  112. Removed try/catch from AsyncProcessRequest. If there is an exception it must
  113. flow to the caller.
  114. in AsyncRequestHandler, improved management of exceptions. HttpWebRequest
  115. throws an exception if the result code is 400, 500. Is is not a communication
  116. error, but an application or server error. The content of the body must be
  117. deserialized like in normal responses.
  118. In CreateWebRequest, if the stream being sent is a MemoryStream, use a more
  119. efficient way of writing the content.
  120. In SendAndRecieve, same as in AsyncRequestHandler. Also moved some code to a
  121. new method named ReceiveResponse, so it can be reused from AsyncRequestHandler.
  122. * HttpHelper.cs: Removed some debugging code that is not needed.
  123. * HttpServer.cs: Improved formatting of some code.
  124. In CheckRequest method, send a 100-continue response if the request has
  125. the header: expect:100-continue.
  126. Method SendResponse: the remoting formatter may include the result code and
  127. reason phrase to use in the transport headers. Used them if provided.
  128. * HttpServerChannel.cs: Use ThreadPool to create the thread that will answer
  129. a request.
  130. 2003-08-18 Lluis Sanchez Gual <[email protected]>
  131. * HttpClientChannel.cs, HttpServerChannel.cs: Fixed bug #47703
  132. 2003-06-21 Lluis Sanchez Gual <[email protected]>
  133. * HttpChannel.cs, HttpClientChannel.cs, HttpHelper.cs, HttpServer.cs,
  134. HttpServerChannel.cs, HttpThread.cs: added new implementation of the HttpChannel
  135. by Ahmad Tantawy, Ahmad Kadry and Hussein Mehanna.
  136. * unix.args: added HttpHelper.cs,HttpServer.cs,HttpThread.cs.