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