ChangeLog 5.4 KB

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