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