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