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