ChangeLog 6.3 KB

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