2
0

ChangeLog 4.5 KB

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