2
0

ChangeLog 3.3 KB

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