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