New tests, update
[mono.git] / mcs / class / System.Runtime.Remoting / System.Runtime.Remoting.Channels.Http / ChangeLog
1 2007-10-30  Robert Jordan  <robertj@gmx.net>
2
3         * HttpHelper.cs: Support for the "https" scheme. Make scheme parser
4         case invariant. Fixes bug #81701.
5
6         * HttpServerChannel.cs (GetChannelUri): Take channel data into account.
7
8         * HttpServerChannel.cs (SetupChannel): Initialize channel data
9         with "null", because at this stage we don't necessary have a valid
10         channel URI.
11
12 2007-08-23  Robert Jordan  <robertj@gmx.net>
13
14         * HttpRemotingHandlerFactory.cs: configure Remoting because
15         System.Web doesn't anymore. Fixes #81831.
16
17 2006-12-18  Lluis Sanchez Gual  <lluis@novell.com>
18
19         * HttpServerChannel.cs: The remoting infrastructure does not call
20           StartListening() anymore, so it has to be called by the channel.
21
22 2006-03-05  Andrew Skiba <andrews@mainsoft.com>
23
24         * HttpClientChannel.cs, HttpServerChannel.cs: exceptions propagating
25         incompatible with dotnet. Patch by roeie@mainsoft.com
26
27 2005-11-06  Svetlana Zholkovsky  <svetlanaz@mainsoft.com>
28
29     * Add HttpHandlerFactory.jvm.cs
30         * HttpHandlerFactory.cs: Create and register HttpChannel in case it 
31         was not registered before.
32         * HttpHandler.cs: Send response headers.
33         * HttpServerChannel.cs:
34           - Change default port to -1.
35           - Don't start a listener if the port == -1
36           - Send response to the client also in case of DispatchRequest fails
37
38 2005-10-10  Lluis Sanchez Gual  <lluis@novell.com>
39
40         * HttpServer.cs: Removed all non-sense regular expressions for
41         parsing files. Makes the channel faster and fixes bug #75886.
42
43 2005-07-06  Lluis Sanchez Gual  <lluis@novell.com>
44
45         * HttpServer.cs: Close the connection after processing the request.
46         Based on a patch by Brion Vibber. Fixes bug #75467.
47
48 2005-05-18  Lluis Sanchez Gual  <lluis@novell.com>
49
50         * HttpServerChannel.cs: Catch exceptions thrown in the server thread.
51         In StopListening, wait for the server thread to stop before returning.
52
53 2005-01-25  Lluis Sanchez Gual  <lluis@novell.com>
54
55         * HttpServer.cs: Use a single stream for in an out stream, since they
56         where the same. Set IPAddress and ConnectionId transport headers.
57
58 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
59
60         * HttpServerChannel.cs: Use the new RemotingThreadPool to manage threads.
61           Fixed some warnings.
62         * HttpServer.cs: Minor fix.
63
64 2004-12-17  Lluis Sanchez Gual <lluis@ximian.com>
65
66         * HttpHelper.cs: Removed unused method. Optimized CopyStream method.
67         * HttpServerChannel.cs: SendResponse does not return a bool any
68           more, it throws an exception when it fails.
69         * HttpServer.cs: Improved handling of errors.
70
71 2004-10-22  Lluis Sanchez Gual <lluis@ximian.com>
72
73         * HttpClientChannel.cs: In CreateMessageSink, process the remote channel
74           data if the provided url does not have the expected format. This fixes
75           a regression from the fix for bug #66768 and fixes #68669.
76
77 2004-09-27  Lluis Sanchez Gual <lluis@ximian.com>
78
79         * HttpClientChannel.cs: Throw an http exception if the response is a 500,
80           don't try to deserialize the exception.
81
82 2004-05-26  Lluis Sanchez Gual <lluis@ximian.com>
83
84         * HttpServerChannel.cs: Default port is 0.
85
86 2004-05-25  Lluis Sanchez Gual <lluis@ximian.com>
87
88         * HttpServerChannel.cs: Take unused port if the provided prot is 0.
89
90 2004-05-13  Lluis Sanchez Gual <lluis@ximian.com>
91
92         * HttpChannel.cs, HttpClientChannel.cs: Added missing IDictionary 
93         properties.
94         * HttpRemotingHandler.cs: Added missing constructor.
95         * HttpRemotingHandlerFactory.cs: Made ConfigureHttpChannel private.
96         * HttpServerChannel.cs: Fixed IDictionary properties.
97
98 2004-04-30  Lluis Sanchez Gual <lluis@ximian.com>
99
100         * HttpServer.cs: Removed dead code.
101
102 2004-02-27  Lluis Sanchez Gual  <lluis@ximian.com>
103
104         * HttpClientChannel.cs: Set the RequestUri transport header before sending 
105           the request.
106
107 2004-02-04  Lluis Sanchez Gual  <lluis@ximian.com>
108
109         * HttpRemotingHandlerFactory.cs: Loading of remoting configuration moved
110           to System.Web.Configuraiton.
111
112 2003-12-12  Lluis Sanchez Gual  <lluis@ximian.com>
113
114         * HttpServer.cs: Removed debug code.
115         
116 2003-12-10  Lluis Sanchez Gual  <lluis@ximian.com>
117
118         * HttpServer.cs: Allow the use of GET method (SdlServerSink supports it).
119         Added some text constans for transport keys.
120         * HttpServerChannel.cs: Add SdlChannelSinkProvider to the default 
121         sink provider chain. Removed unused ErrorMessage class.
122
123 2003-11-16  Lluis Sanchez Gual  <lluis@ximian.com>
124
125         * HttpHelper.cs: Removed usnused method GetMachineIp.
126         * HttpServerChannel.cs: Added support for priority, bindTo, useIpAddress and
127           machineName properties.
128
129 2003-11-13  Lluis Sanchez Gual <lluis@ximian.com>
130
131         * HttpChannel.cs: Create empty property dictionary in the default
132           constructor.
133
134 2003-11-13  Lluis Sanchez Gual <lluis@ximian.com>
135
136         * HttpChannel.cs: Moved initialization code in SetupChannel to the
137           respective client and server channels. Added implementatoin of the
138           interface IChannelReceiverHook.
139         * HttpRemotingHandler.cs: Implemented.
140         * HttpRemotingHandlerFactory.cs: Implemented.
141         * HttpServer.cs: In general, use Stream instances instead of Socket. It is
142           more reusable in this way. Also improved formatting.
143         * HttpServerChannel.cs: Implemented support for IChannelReceiverHook.
144           Added new method DispatchRequest in HttpServerTransportSink that can
145           be reused by HttpRemotingHandler.
146
147 2003-11-12  Lluis Sanchez Gual <lluis@ximian.com>
148
149         * HttpServerChannel.cs: Removed StartListening call from constructor. It
150           is called by the remoting framework.
151         * HttpClientChannel.cs, HttpHelper.cs: Fixed some formatting.
152
153 2003-09-17  Lluis Sanchez Gual <lluis@ximian.com>
154
155         * HttpHelper.cs: Fixed bug #48468. Patch by Jean-Marc Andre.
156         * HttpClientChannel.cs HttpServer.cs HttpServerChannel.cs: Fixed some warnings.
157
158 2003-08-22  Lluis Sanchez Gual <lluis@ximian.com>
159
160         * HttpClientChannel.cs: Changed text for user-agent header (removed references
161           to MS.NET).
162           Removed try/catch from AsyncProcessRequest. If there is an exception it must
163           flow to the caller.
164           in AsyncRequestHandler, improved management of exceptions. HttpWebRequest
165           throws an exception if the result code is 400, 500. Is is not a communication
166           error, but an application or server error. The content of the body must be
167           deserialized like in normal responses.
168           In CreateWebRequest, if the stream being sent is a MemoryStream, use a more
169           efficient way of writing the content.
170           In SendAndRecieve, same as in AsyncRequestHandler. Also moved some code to a
171           new method named ReceiveResponse, so it can be reused from AsyncRequestHandler.
172         * HttpHelper.cs: Removed some debugging code that is not needed.
173         * HttpServer.cs: Improved formatting of some code.
174           In CheckRequest method, send a 100-continue response if the request has
175           the header: expect:100-continue.
176           Method SendResponse: the remoting formatter may include the result code and
177           reason phrase to use in the transport headers. Used them if provided.
178         * HttpServerChannel.cs: Use ThreadPool to create the thread that will answer
179           a request.
180
181 2003-08-18  Lluis Sanchez Gual <lluis@ximian.com>
182
183         * HttpClientChannel.cs, HttpServerChannel.cs: Fixed bug #47703
184
185 2003-06-21  Lluis Sanchez Gual <lluis@ximian.com>
186
187         * HttpChannel.cs, HttpClientChannel.cs, HttpHelper.cs, HttpServer.cs,
188           HttpServerChannel.cs, HttpThread.cs: added new implementation of the HttpChannel
189           by Ahmad Tantawy, Ahmad Kadry and Hussein Mehanna.
190         * unix.args: added HttpHelper.cs,HttpServer.cs,HttpThread.cs.
191