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