ChangeLog 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. 2005-05-18 Lluis Sanchez Gual <[email protected]>
  2. * HttpServerChannel.cs: Catch exceptions thrown in the server thread.
  3. In StopListening, wait for the server thread to stop before returning.
  4. 2005-01-25 Lluis Sanchez Gual <[email protected]>
  5. * HttpServer.cs: Use a single stream for in an out stream, since they
  6. where the same. Set IPAddress and ConnectionId transport headers.
  7. 2005-01-14 Lluis Sanchez Gual <[email protected]>
  8. * HttpServerChannel.cs: Use the new RemotingThreadPool to manage threads.
  9. Fixed some warnings.
  10. * HttpServer.cs: Minor fix.
  11. 2004-12-17 Lluis Sanchez Gual <[email protected]>
  12. * HttpHelper.cs: Removed unused method. Optimized CopyStream method.
  13. * HttpServerChannel.cs: SendResponse does not return a bool any
  14. more, it throws an exception when it fails.
  15. * HttpServer.cs: Improved handling of errors.
  16. 2004-10-22 Lluis Sanchez Gual <[email protected]>
  17. * HttpClientChannel.cs: In CreateMessageSink, process the remote channel
  18. data if the provided url does not have the expected format. This fixes
  19. a regression from the fix for bug #66768 and fixes #68669.
  20. 2004-09-27 Lluis Sanchez Gual <[email protected]>
  21. * HttpClientChannel.cs: Throw an http exception if the response is a 500,
  22. don't try to deserialize the exception.
  23. 2004-05-26 Lluis Sanchez Gual <[email protected]>
  24. * HttpServerChannel.cs: Default port is 0.
  25. 2004-05-25 Lluis Sanchez Gual <[email protected]>
  26. * HttpServerChannel.cs: Take unused port if the provided prot is 0.
  27. 2004-05-13 Lluis Sanchez Gual <[email protected]>
  28. * HttpChannel.cs, HttpClientChannel.cs: Added missing IDictionary
  29. properties.
  30. * HttpRemotingHandler.cs: Added missing constructor.
  31. * HttpRemotingHandlerFactory.cs: Made ConfigureHttpChannel private.
  32. * HttpServerChannel.cs: Fixed IDictionary properties.
  33. 2004-04-30 Lluis Sanchez Gual <[email protected]>
  34. * HttpServer.cs: Removed dead code.
  35. 2004-02-27 Lluis Sanchez Gual <[email protected]>
  36. * HttpClientChannel.cs: Set the RequestUri transport header before sending
  37. the request.
  38. 2004-02-04 Lluis Sanchez Gual <[email protected]>
  39. * HttpRemotingHandlerFactory.cs: Loading of remoting configuration moved
  40. to System.Web.Configuraiton.
  41. 2003-12-12 Lluis Sanchez Gual <[email protected]>
  42. * HttpServer.cs: Removed debug code.
  43. 2003-12-10 Lluis Sanchez Gual <[email protected]>
  44. * HttpServer.cs: Allow the use of GET method (SdlServerSink supports it).
  45. Added some text constans for transport keys.
  46. * HttpServerChannel.cs: Add SdlChannelSinkProvider to the default
  47. sink provider chain. Removed unused ErrorMessage class.
  48. 2003-11-16 Lluis Sanchez Gual <[email protected]>
  49. * HttpHelper.cs: Removed usnused method GetMachineIp.
  50. * HttpServerChannel.cs: Added support for priority, bindTo, useIpAddress and
  51. machineName properties.
  52. 2003-11-13 Lluis Sanchez Gual <[email protected]>
  53. * HttpChannel.cs: Create empty property dictionary in the default
  54. constructor.
  55. 2003-11-13 Lluis Sanchez Gual <[email protected]>
  56. * HttpChannel.cs: Moved initialization code in SetupChannel to the
  57. respective client and server channels. Added implementatoin of the
  58. interface IChannelReceiverHook.
  59. * HttpRemotingHandler.cs: Implemented.
  60. * HttpRemotingHandlerFactory.cs: Implemented.
  61. * HttpServer.cs: In general, use Stream instances instead of Socket. It is
  62. more reusable in this way. Also improved formatting.
  63. * HttpServerChannel.cs: Implemented support for IChannelReceiverHook.
  64. Added new method DispatchRequest in HttpServerTransportSink that can
  65. be reused by HttpRemotingHandler.
  66. 2003-11-12 Lluis Sanchez Gual <[email protected]>
  67. * HttpServerChannel.cs: Removed StartListening call from constructor. It
  68. is called by the remoting framework.
  69. * HttpClientChannel.cs, HttpHelper.cs: Fixed some formatting.
  70. 2003-09-17 Lluis Sanchez Gual <[email protected]>
  71. * HttpHelper.cs: Fixed bug #48468. Patch by Jean-Marc Andre.
  72. * HttpClientChannel.cs HttpServer.cs HttpServerChannel.cs: Fixed some warnings.
  73. 2003-08-22 Lluis Sanchez Gual <[email protected]>
  74. * HttpClientChannel.cs: Changed text for user-agent header (removed references
  75. to MS.NET).
  76. Removed try/catch from AsyncProcessRequest. If there is an exception it must
  77. flow to the caller.
  78. in AsyncRequestHandler, improved management of exceptions. HttpWebRequest
  79. throws an exception if the result code is 400, 500. Is is not a communication
  80. error, but an application or server error. The content of the body must be
  81. deserialized like in normal responses.
  82. In CreateWebRequest, if the stream being sent is a MemoryStream, use a more
  83. efficient way of writing the content.
  84. In SendAndRecieve, same as in AsyncRequestHandler. Also moved some code to a
  85. new method named ReceiveResponse, so it can be reused from AsyncRequestHandler.
  86. * HttpHelper.cs: Removed some debugging code that is not needed.
  87. * HttpServer.cs: Improved formatting of some code.
  88. In CheckRequest method, send a 100-continue response if the request has
  89. the header: expect:100-continue.
  90. Method SendResponse: the remoting formatter may include the result code and
  91. reason phrase to use in the transport headers. Used them if provided.
  92. * HttpServerChannel.cs: Use ThreadPool to create the thread that will answer
  93. a request.
  94. 2003-08-18 Lluis Sanchez Gual <[email protected]>
  95. * HttpClientChannel.cs, HttpServerChannel.cs: Fixed bug #47703
  96. 2003-06-21 Lluis Sanchez Gual <[email protected]>
  97. * HttpChannel.cs, HttpClientChannel.cs, HttpHelper.cs, HttpServer.cs,
  98. HttpServerChannel.cs, HttpThread.cs: added new implementation of the HttpChannel
  99. by Ahmad Tantawy, Ahmad Kadry and Hussein Mehanna.
  100. * unix.args: added HttpHelper.cs,HttpServer.cs,HttpThread.cs.