ChangeLog 3.0 KB

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