ChangeLog 6.7 KB

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