ChangeLog 3.7 KB

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