2009-06-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
[mono.git] / mcs / class / System / System.Net / ChangeLog
1 2009-06-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
2
3         * HttpWebRequest.cs: check for an aborted request in Begin* before
4         proceeding. Fixes bug #511851.
5
6 2009-06-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
7
8         * WebConnectionStream.cs: close the underlying socket if there's an
9         exception when closing the stream. Fixes bug #514996.
10
11 2009-06-20  Gert Driesen  <drieseng@users.sourceforge.net>
12
13         * WebConnectionStream.cs: Keep count of all bytes written, and perform
14         write overflow check in both buffered and non-buffered writing (if
15         not using chunked transfer encoding). Fixes bug #510642.
16
17 2009-06-20  Gert Driesen  <drieseng@users.sourceforge.net>
18
19         * WebClient.cs: Use lowercase hex bytes to match MS. Avoid using
20         zero-length string literal. Fixed exception argument name to match
21         MS. 
22         * WebConnectionStream.cs: Throw a WebException that wraps an
23         IOException when closing the stream before all bytes are written.
24
25 2009-06-19 Gonzalo Paniagua Javier <gonzalo@novell.com>
26
27         * WebConnection.cs: make sure we don't open a new socket if the
28         request is aborted before we establish the connection. Fixes bug
29         #514591.
30
31         * HttpWebRequest.cs: new property to return abort status. Invoke the
32         abort handler before doing anything else when Abort() is called for
33         the first time.
34
35 2009-06-17 Gonzalo Paniagua Javier <gonzalo@novell.com>
36
37         * EndPointListener.cs: call CheckIfRemove() after removing a regular
38         prefix. Fixes bug #513849.
39         * EndPointManager.cs: make sure we use the right lock when one prefix
40         of a collection fails to be added and we need to remove all of the
41         prefixes.
42         Clear the ip_to_endpoints hashtable if there are no more prefixes
43         listening on that address.
44
45 2009-06-16 AndrĂ©s G. Aragoneses <aaragoneses@novell.com>
46
47         * WebConnection.cs: propagate the exception to the request.
48         * WebException.cs: new internal ctor.
49         * HttpWebRequest.cs: use new ctor to encapsulate the innerException.
50         Fixes #323452.
51
52 2009-06-15 Gonzalo Paniagua Javier <gonzalo@novell.com>
53
54         * HttpWebRequest.cs: for unknown methods, always send the request once
55         we are connected even if there's no writeStream. Fixes bug #513087.
56
57 2009-06-09 Gonzalo Paniagua Javier <gonzalo@novell.com>
58
59         * HttpWebRequest.cs: ProtocolViolationException is not thrown in
60         certain cases since 2.0. Fixes bug #508027.
61
62 2009-06-09 Gonzalo Paniagua Javier <gonzalo@novell.com>
63
64         * HttpWebRequest.cs: follow MS docs when throwing
65         ProtocolViolationException at the beginning of an asynchronous
66         operation. Fixes bug #465613.
67
68 2009-06-08 Gonzalo Paniagua Javier <gonzalo@novell.com>
69
70         * WebConnectionStream.cs: throw a WebException instead of an IOException.
71
72 2009-06-08 Gonzalo Paniagua Javier <gonzalo@novell.com>
73
74         * FtpWebRequest.cs: avoid exception when the reply from the server
75         contains just response code. Fixes bug #510852.
76
77 2009-06-05  Sebastien Pouliot  <sebastien@ximian.com> 
78
79         * DownloadStringCompletedEventArgs.cs: Call RaiseExceptionIfNecessary
80         * OpenReadCompletedEventArgs.cs: Remove Address property since it's 
81         not part of SL2. Call RaiseExceptionIfNecessary
82         * OpenWriteCompletedEventArgs.cs: Call RaiseExceptionIfNecessary
83         * UploadStringCompletedEventArgs.cs: Call RaiseExceptionIfNecessary
84
85 2009-06-05  Robert Jordan  <robertj@gmx.net>
86
87         * WebClient.cs (UploadValuesCore): Encode POST arguments with UTF-8.
88         Fixes bug #484795.
89
90 2009-06-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
91
92         * HttpWebRequest.cs: KeepAlive check not needed.
93         Fixes bug #465613.
94
95 2009-06-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
96
97         * HttpConnection.cs: unbind the context after every read for keep-alive
98         connections.
99         Bug #502274 fixed.
100
101 2009-05-17  Gert Driesen  <drieseng@users.sourceforge.net>
102
103         * CookieContainer.cs: Provide meaningful information in exception
104         messages, and improve compatibility with MS. Modified set_Capacity to
105         no longer change MaxCookieSize when new value is less than
106         MaxCookieSize.
107
108 2009-05-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
109
110         * HttpWebResponse.cs:
111         * HttpWebRequest.cs: support automatic decompression of the response.
112         Fixes bug #504391.
113
114
115 2009-05-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
116
117         * Dns.cs: made GetHostAddresses and friends internal for 1.x
118         * EndpointPermission.cs: use GetHostAddresses.
119
120 2009-05-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
121
122         * CookieContainer.cs: matching hosts to domain names like MS does.
123         Bug #421827 fixed.
124
125 2009-05-02  Atsushi Enomoto  <atsushi@ximian.com>
126
127         * CredentialCache.cs : implement all not-implemented methods.
128           Patch by Mineda Nozomi. Close bug #499556.
129
130 2009-04-21  Sebastien Pouliot  <sebastien@ximian.com>
131
132         * EndPoint.cs: Throw NotImplementedException instead of 
133         NotSupportedException
134         * IPEndPoint.cs: Fix some validations.
135
136 2009-04-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
137
138         * WebConnection.cs:
139         * HttpWebRequest.cs: provide more information on why the connection
140         could not be established.
141
142 2009-04-06 Gonzalo Paniagua Javier <gonzalo@novell.com>
143
144         * FtpWebRequest.cs: send REST after PASV to avoid some servers
145         forgetting aboout it.
146         Bug #491590 fixed.
147
148 2009-03-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
149
150         * FtpWebRequest.cs: we were sending CWD instead of PWD.
151         Bug #486703 fixed.
152
153 2009-03-03 Gonzalo Paniagua Javier <gonzalo@novell.com>
154
155         * IPAddress.cs: don't allocate the IPv6 array for IPv4 addresses.
156
157 2009-02-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
158
159         * WebClient.cs: append the QueryString in DownloadData.
160         Fixes bug #323788.
161
162 2009-02-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
163
164         * FtpWebResponse.cs: return a Null stream when there's no response to
165         be read.
166         * FtpWebRequest.cs: provide the error returned by the server in the
167         exception.
168         * WebClient.cs: set the correct method when doing a FTP upload.
169         Fixes bug #478451.
170
171 2009-02-19 Gonzalo Paniagua Javier <gonzalo@novell.com>
172
173         * FtpWebRequest.cs: avoid errors when creating a temporary Uri to get
174         the local path.
175         * WebClient.cs: when setting up the request for downloading, use the
176         default method. Fixes bug #477611.
177
178 2009-02-16  Atsushi Enomoto  <atsushi@ximian.com>
179
180         * WebConnectionStream.cs : use request only after it is set.
181
182 2009-02-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
183
184         * WebConnectionStream.cs: implemente (Read|Write)Timeout.
185         Fixes bug #348159.
186
187 2009-02-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
188
189         * CookieContainer.cs: separate cookies with "; " instead of just ';'.
190         Fixes bug #386727.
191
192 2009-02-08 Gonzalo Paniagua Javier <gonzalo@novell.com>
193
194         * HttpWebRequest.cs: lock SetResponseError.
195
196 2009-02-08  Gert Driesen  <drieseng@users.sourceforge.net>
197
198         * Dns.cs: BeginGetHostAddresses - renamed argument to match MS,
199         reject "any" IP addresses. BeginGetHostEntry - renamed argument
200         to match MS, reject "any" IP addresses. GetHostEntry - reject
201         "any" IP addresses. GetHostAddresses - reject "any" IP addresses.
202         GetHostByName - use "hostName" as paramname in ANE.
203
204 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
205
206         * Dns.cs: empty string for host (also 0.0.0.0) is just passed to the
207         runtime, which will then retrieve the local IP addresses. Fixes bug
208         #386637 part 2/2.
209
210 2009-02-06 Gonzalo Paniagua Javier <gonzalo@novell.com>
211
212         * FtpWebRequest.cs: some servers have a comment after the directory
213         name. Fixes bugs #471149 and #471216.
214
215 2009-02-06 Gonzalo Paniagua Javier <gonzalo@novell.com>
216
217         * WebConnectionStream.cs: set the content length to 0 when the
218         response is not supposed to have any content.
219
220 2009-02-05  Miguel de Icaza  <miguel@novell.com>
221
222         * WebConnectionStream.cs: Prevent a nullref here.   This might
223         have to be backported to 2.2 and 2.4
224
225 2009-02-03 Gonzalo Paniagua Javier <gonzalo@novell.com>
226
227         * WebConnection.cs:
228         * HttpWebRequest.cs: calling Abort is safe now if the request has been
229         read entirely.
230
231 2009-02-03 Gonzalo Paniagua Javier <gonzalo@novell.com>
232
233         * WebProxy.cs: use TryParse when checking for a localhost IP.
234
235 2009-01-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
236
237         * HttpWebResponse.cs: avoid throwing an exception when
238         Content-Length is not present.
239
240 2009-01-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
241
242         * HttpWebRequest.cs: added locking in SetResponseData for the case
243         when we get an error response before BeginGetResponse has been
244         called.
245
246 2009-01-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
247
248         * IPAddress.cs: handle sign extension for the high byte when using the
249         byte[] ctor for an IPv4 address.
250         Fixes bug #467472.
251
252 2009-01-19  Marek Habersack  <mhabersack@novell.com>
253
254         * HttpWebRequest.cs: implemented the UseDefaultCredentials
255         property, patch from Florian Maetschke <f.maetschke@tu-bs.de>,
256         thanks!
257
258 2009-01-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
259
260         * FtpWebRequest.cs: adjust to the correct directory when listing too.
261         Fixes bug #466530.
262
263 2009-01-15 Gonzalo Paniagua Javier <gonzalo@novell.com>
264
265         * HttpListenerRequest.cs: always initialize 'version'.
266         * HttpConnection.cs: the socket might already be disconnected when
267         shutting down.
268
269 2009-01-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
270
271         * WebConnectionStream.cs: if the buffer has been killed, return -1 for
272         its length. Fixes regression in System.Runtime.Remoting.
273
274 2009-01-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
275
276         * HttpWebRequest.cs: create a result from the response when
277         *GetResponse() has not been called yet and we have already received
278         all the data.
279         Fixes bug #464013.
280
281 2009-01-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
282
283         * HttpWebRequest.cs: keepAlive is of no use here.
284         Fixes bug #465613.
285
286 2009-01-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
287
288         * HttpConnection.cs: we were not writing the headers for 0-length
289         responses.
290         * WebConnectionStream.cs: for 204/304 responses with an explicit
291         content-length of 0, release the socket only once.
292         Fixes bug #465638.
293
294 2009-01-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
295
296         * FtpWebRequest.cs: now deleting a file works when we're not in the
297         root directory.
298
299 2008-12-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
300
301         * IPAddress.cs: avoid throwing when parsing a subnet.
302
303 2008-11-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
304
305         * HttpConnection.cs: remove CWL. When reusing, BeginReadRequest might
306         throw if the client closes.
307         * HttpListenerResponse.cs: close the connection for 1.0 clients.
308
309 2008-11-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
310
311         * FtpDataStream.cs: use the socket for reading until the end of a
312         stream that wasn't read entirely. Remove unused ManualResetEvent.
313         * FtpWebRequest.cs: set the file_name when downloading. Update the
314         response status after every SendCommand. Send a "OPTS utf8 on" as MS
315         does (the control cnc reader should do something with UTF8)
316
317 2008-11-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
318
319         * WebRequest.cs: if the cache level is NoCacheNoStore, don't throw
320         when setting the CachePolicy.
321
322 2008-11-03 Gonzalo Paniagua Javier <gonzalo@novell.com>
323
324         * FtpWebRequest.cs: take the server current directory into account
325         when uploading files. Set the data connection type before every
326         transmission.
327         Bug 333985 fixed.
328
329 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
330
331         * FtpWebRequest.cs: disable keep-alive connections as the current code 
332         does not deal with keep-alive connections.
333         Workaround for bug #380262.
334
335 2008-10-30 Gonzalo Paniagua Javier <gonzalo@novell.com>
336
337         * WebConnectionStream.cs: when there's a NTLM authentication in
338         progress, don't let the connection be used by the next request if we
339         have the entire response in the input buffer.
340
341 2008-10-30 Gonzalo Paniagua Javier <gonzalo@novell.com>
342
343         * HttpListenerResponse.cs: removed obsolete comment.
344         * ResponseStream.cs: don't read response.SendChunked until after
345         getting the response headers.
346
347 2008-10-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
348
349         * ServicePointManager.cs: set the default limit of connections from
350         the configuration file(s) on startup.
351         Bug #339422 fixed.
352
353 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
354
355         * HttpWebRequest.cs: don't call ProxyRequest twice.
356         * WebConnectionData.cs: remove unused fields.
357
358         * WebConnection.cs:
359         * WebConnectionStream.cs: when setting the input buffer, check to see
360         if the entire response is already there and free up the request slot.
361         Fixes bug #423156.
362
363         * ResponseStream.cs:
364         * HttpListenerResponse.cs: buffer the headers so that they are sent
365         together with the data on the first Write (if any). The fix above
366         didn't work with our HttpListener without this.
367
368 2008-10-08 Gonzalo Paniagua Javier <gonzalo@novell.com>
369
370         * WebConnection.cs:
371         * ServicePoint.cs:
372         * WebConnectionGroup.cs:
373         * HttpWebRequest.cs:
374         * WebConnectionStream.cs: reuse the same connection when doing NTLM
375         authentication. Fixes bug #323375.
376         Implemented support for UnsafeAuthenticatedConnectionSharing.
377
378 2008-10-08 Gonzalo Paniagua Javier <gonzalo@novell.com>
379
380         * HttpConnection.cs:
381         * HttpListenerResponse.cs: fix typo that caused the "connection close"
382         header to be sent. Do not close the socket when the encoding is not
383         chunked and reuse is possible.
384         Fixes bug #433371.
385
386 2008-10-08 Gonzalo Paniagua Javier <gonzalo@novell.com>
387
388         * HttpWebRequest.cs: if GetRequestStream has already been called,
389         return the same stream that we returned in the first call.
390         Fixes bug #429200.
391
392 2008-10-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
393
394         * ServicePointManager.cs: better handling of possible collisions of the
395         hash for schema/host/port. Fixes bug #417891.
396
397 2008-10-06 Gonzalo Paniagua Javier <gonzalo@novell.com>
398
399         * ChunkStream.cs: (ReadTrailer) make sure the array access is not out
400         of bounds. Fixes bug #322715.
401
402 2008-09-19 Gonzalo Paniagua Javier <gonzalo.mono@gmail.com>
403
404         * WebConnectionStream.cs: when receiving a 0 content-length, free up
405         the slot for the next request immediately.
406         Fixes bug #427974.
407
408 2008-09-16  Miguel de Icaza  <miguel@novell.com>
409
410         * IPv6Address.cs: On the 2.0 profile, avoid throwing/catching
411         exceptions inside TryParse.
412
413 2008-09-12  Miguel de Icaza  <miguel@novell.com>
414
415         * HttpListenerPrefixCollection.cs, EndPointListener.cs,
416         HttpListener.cs, EndPointManager.cs, HttpConnection.cs: Remove
417         generics support where necessary to allow this code to be reused
418         in the 1.0 profile.
419
420 2008-09-08  Miguel de Icaza  <miguel@novell.com>
421
422         * EndPointListener.cs (SearchListener): Cope with the raw_url not
423         being merely a path, but potentially a full URI (see the proxy
424         case). 
425
426         * HttpListenerRequest.cs: Cope with raw_url not being merely a
427         path, but potentially a full Uri.   Also uses TryCreate, hoping
428         that one day it will be faster.
429
430 2008-08-23  Zoltan Varga  <vargaz@gmail.com>
431
432         * WebConnectionStream.cs (WriteRequest): Fix the copying in the
433         previous patch, when bytes.Length != length.
434
435 2008-08-22  Zoltan Varga  <vargaz@gmail.com>
436
437         * WebConnectionStream.cs (WriteRequest): For small requests,
438         cluster together the header + body in a single write call, avoids
439         the latency problems observed in an TLS application that makes
440         many web service calls. 
441
442 2008-08-22  Geoff Norton  <gnorton@novell.com>
443
444         * WebConnection.cs: Set NoDelay
445
446 2008-08-21  Stephane Delcroix  <sdelcroix@novell.com>
447
448         * OpenReadCompletedEventArgs.cs: new Address property for 2.1
449
450 2008-08-06  Miguel de Icaza  <miguel@novell.com>
451
452         * IPAddress.cs (ParseIPV6): Use an exception-less parser for ipv6
453         addresses.
454
455         * IPv6Address.cs: Rewrite most of the parsing code to not use that
456         incredibly fragile, hacky and hacky implementation.
457
458         (TryParse): Provide a exception-less parsing path.
459
460 2008-07-25  Gert Driesen  <drieseng@users.sourceforge.net>μ
461
462 2008-08-06  Atsushi Enomoto  <atsushi@ximian.com>
463
464         * IPAddress.cs : several IPv4 parsing fix exposed by bug #411920.
465
466 2008-08-05  Atsushi Enomoto  <atsushi@ximian.com>
467
468         * WebClient.cs : it should not invoke delegate directly, but should
469           call overridable OnDownloadProgressChanged.
470
471 2008-07-25  Gert Driesen  <drieseng@users.sourceforge.net>μ
472
473         * HttpWebResponse.cs: Initialize contentLength in ctor, as it must
474         remain accessible after the response is disposed (and the headers are
475         no longer available). Adding missing disposed checks in properties
476         (except for StatusCode) and GetResponseHeader. On the 2.0 profile,
477         headers must remain accessible after the HttpWebResponse is disposed.
478
479 2008-06-10  Stephane Delcroix  <sdelcroix@novell.com>
480
481         * IPAddress.cs: allow usage on 2.1 as smcs knows nothing about
482         string.GetEnumerator : IEnumerable<char>
483
484 2008-06-08  Miguel de Icaza  <miguel@novell.com>
485
486         * ResponseStream.cs: Do not Close the HttpResponse object here as
487         it is possible to issue multiple OutputStream.Close calls (they
488         actually happen implicitly through things like StreamWriter.Close,
489         and they are in various MSDN samples).
490
491 2008-05-28 Gonzalo Paniagua Javier <gonzalo.mono@gmail.com>
492
493         * CookieContainer.cs: apply slightly modified patch from rulatir@wp.pl
494         that fixes bug #356537.
495
496 2008-04-30  Miguel de Icaza  <miguel@novell.com>
497
498         * WebPermission.cs (ToXml): To allow code that uses WebPermission
499         to be built. 
500
501 2008-04-21 Gonzalo Paniagua Javier <gonzalo.mono@gmail.com>
502
503         * HttpWebResponse.cs: do not check the disposed status for properties
504         and methods that return response data other than the stream itself.
505         Fixes bug #381223.
506
507 2008-04-16  Marek Habersack  <mhabersack@novell.com>
508
509         * HttpWebRequest.cs: fix an off-by-one bug - the number of
510         redirects must not exceed the value of
511         MaximumAutomaticRedirections. Fixes bug #380131
512
513 2008-04-13  Jb Evain  <jbevain@novell.com>
514
515         * *_2_1.cs: move the specific 2.1 System.Net code to the
516         assembly System.Net.
517
518 2008-04-13  Jb Evain  <jbevain@novell.com>
519
520         * WebRequest_2_1.cs, WebResponse_2_1.cs: new files
521         * HttpWebRequest_2_1.cs, HttpWebResponse_2_1, WebHeaderCollection_2_1:
522         update to Silverlight 2.0b1 API.
523         Merged from the Moonlight 2 branch.
524
525 2008-04-06  <gnorton@novell.com>
526
527         * ListenerAsyncContext.cs: Fix Basic authentication support.  Patch from 
528         Maciej Paszta <paszczi@go2.pl>
529
530 2008-02-21  Zoltan Varga  <vargaz@gmail.com>
531
532         * HttpConnection.cs (Close): Close the socket even if Shutdown throws an exception.
533
534 2008-02-17  Daniel Nauck  <dna@mono-project.de>
535
536         * HttpWebResponse.cs: refactored cookie expires parsing to
537         allow all common expires datetime formats.
538
539 2008-02-09  Daniel Nauck  <dna@mono-project.de>
540
541         * HttpWebResponse.cs: convert UTC/GMT Expires DateTime from a cookie
542         into local time, also set the HttpOnly property if available.
543
544 2008-02-09  Daniel Nauck  <dna@mono-project.de>
545
546         * Cookie.cs: implemented HttpOnly
547
548 2008-01-27  Gert Driesen  <drieseng@users.sourceforge.net>
549
550         * IPAddress.cs (Parse): Changed argument name to match MS.
551         (TryParse): Changed argument name to match MS.
552         (ParseIPV4): Only treat zero-length or " " address as empty on 1.0
553         profile. On 2.0 profile, only ignore characters after blank if last
554         part is valid hex string.
555         * IPv6Address.cs: Removed extra spaces and tabs.
556
557 2008-01-26  Daniel Nauck  <dna@mono-project.de>
558
559         * HttpWebRequest.cs: fixed typo. Use the actual uri for correct
560         cookie header informations and not the originally one.
561
562 2008-01-26  Daniel Nauck  <dna@mono-project.de>
563
564         * Cookie.cs: set Version to '1' if Port is set,
565         don't include path and domain informations when version is 0,
566         match ToString () output with .NET 2.0,
567         fixes bug #316017
568
569 2008-01-15  Atsushi Enomoto  <atsushi@ximian.com>
570
571         * MonoHttpDate.cs : Parse() should return Local time. Fixed bug
572           #353495.
573
574 2008-01-12  Gert Driesen  <drieseng@users.sourceforge.net>
575
576         * WebClient.cs: Do not add trailing CRLF in UploadValuesCore. Fixes
577         standalone test for bug #351049.
578
579 2008-01-07  Sebastien Pouliot  <sebastien@ximian.com>
580
581         * CredentialCache.cs: Gendarme's AvoidToStringOnStringsRule in
582         CredentialCacheKey constructor. UseStringEmptyRule on CredentialCache
583         static ctor (3 times).
584
585 2007-12-27  Miguel de Icaza  <miguel@novell.com>
586
587         * WebClient.cs: We catch exceptions that happen on the helper
588         async threads toa void terminating the application on errors, and
589         also raise a variant of the OnXXXXCompleted methods that take an
590         Exception argument.
591
592         Note that this differs from the .NET implementation in that
593         we actually raise a signal on error, and set the exception, and in
594         their case no error is ever raised.
595
596         We now call CompleteAsync in the OnXXXCompleted handlers to ensure
597         that the WebClient can be reused immediately by the callback.
598
599         This fixes #350621.
600
601         This also should fix the bug report on IRC where someone
602         complained that they could not "chain" invocations to XXXAsync
603         methods from the OnXXXXCompleted handlers due to the WebClient
604         refusing to work if there was an ongoing operation
605
606 2007-12-24  Miguel de Icaza  <miguel@novell.com>
607
608         * WebClient.cs: Do not validate method to be null, we do not do
609         that in OpenWrite, the detection is done later on.  
610
611         Fixes #350622
612
613 2007-12-16  Miguel de Icaza  <miguel@novell.com>
614
615         * WebClient.cs: Got the arguments in the wrong order, fix
616
617 2007-12-12  Marek Habersack  <mhabersack@novell.com>
618
619         * WebClient.cs: DownloadProgressChanged is available only in the
620         2.0+ profiles.
621
622 2007-12-12  Miguel de Icaza  <miguel@novell.com>
623
624         * WebClient.cs (DownloadFileCore): use longs for the
625         ContentLength, although the other code (loading into a byte array,
626         or a string) still uses ints, the DownloadFileCore should not.
627
628 2007-12-11  Miguel de Icaza  <miguel@novell.com>
629
630         * WebClient.cs: 
631
632         Lots of fixes to get the *Async methods to work.
633         
634         * WebClient.cs: async, new boolean flag, used to track whether we
635         are an async invocation, and if so, we need to invoke some
636         methods. 
637
638         Switch to using System.Threading.Thread instead of the ThreadPool
639         as there is no way with the ThreadPool to abort threads (to
640         implemente CancelAsync). 
641
642         (CompleteAsync): Helper method used to clear the state after an
643         async operation completes, otherwise the WebClient can only be
644         used once. 
645
646         (CancelAsync): Use Thread.Interrupt to signal the thread that we
647         are aborting it (it is a lot milder than Thread.Abort, and we are
648         in no rush to cancel this anyways); Also the documentation states
649         that we need to call the WebRequest.Abort method, so we do that in
650         every Download instance.
651
652         (DownloadDataAsync, DownloadFileAsync, DownloadStringAsync,
653         OpenReadAsync, OpenWriteAsync, UplaodDataAsync, UploadFileAsync,
654         UploadStringAsync): Make signature parameters match MS; use
655         threads instead of threadpool (so we can implement CancelAsync),
656         catch ThreadAbortException here so we can also raise the proper
657         DownloadDataCompleteEventArgs.
658
659         These routines will also call the WebRequest.Abort when
660         appropriate when ThreadInterrupted is used.
661         
662         (ReadAll): Raise DownloadProgressChanged events.
663         
664 2007-12-03  Gert Driesen  <drieseng@users.sourceforge.net>
665
666         * WebClient.cs: Modified argument checks to match MS, and wrap
667         exceptions in a WebException. Fixes bug #343064.
668
669 2007-12-03  Miguel de Icaza  <miguel@novell.com>
670
671         * FtpWebRequest.cs: Applied patch from Jerome Haltom that fixes
672         multi-line responses (after my fix).
673
674         Closes #333978
675
676 2007-11-16  Marek Habersack  <mhabersack@novell.com>
677
678         * HttpWebRequest.cs: when folding a request into a GET one, set
679         content length to 0 and kill the buffers. Fixes bug #327314. Patch
680         from Geoff Norton <gnorton@novell.com>, thanks!
681
682 2007-11-13  Atsushi Enomoto  <atsushi@ximian.com>
683
684         * WebRequest.cs : added missing ImpersonationLevel (NIE).
685         * SecurityProtocolType.cs : not [Serializable] in 2.0.
686         * ServicePoint.cs : no GetHashCode() in 2.0.
687         * WebRequestMethods.cs : fixed wrong STOU.
688         * FileWebResponse.cs : no Dispose(true) in 2.0 API.
689
690 2007-11-08  Jb Evain  <jbevain@novell.com>
691
692         * WebHeaderCollection_2_1.cs: add a custom WebHeaderCollection
693         for the 2.1 profile.
694
695 2007-11-07  Geoff Norton  <gnorton@novell.com>
696
697         * ListenerAsyncResult.cs: Only send the 401 header if our authentication
698         type is Basic or Negotiate (which we default to basic) because that is
699         all we support.  Set the WWW-Authenticate header when we return a 401 
700         result.  Send the correct state object in the async result.
701
702 2007-11-06  Geoff Norton  <gnorton@novell.com>
703
704         * ListenerAsyncResult.cs: If the HttpListener has an authentication
705         scheme, the user should be presented with a 401 without calling the 
706         callback.
707
708 2007-11-04  Miguel de Icaza  <miguel@novell.com>
709
710         * FtpWebRequest.cs (GetResponseStatus): Fix this routine
711         propertly, refactor, and make it follow Mono coding conventions.
712
713 2007-10-30  Jerome Haltom  (wasabi@larvalstage.net)
714
715         * FtpWebRequest.cs: adds support for ftp multiline results, fixes
716         #333978
717
718 2007-10-27  Miguel de Icaza  <miguel@novell.com>
719
720         * HttpListener.cs: Remove more trigger-happy disposed=true from
721         the code;   We should only dispose when the Dispose method is
722         actually called.   Not before.  
723
724         Fixes #337371
725
726         *  HttpListener.cs (Close): Closing does not mean dispose the
727         object.   This allows Start/Stop/Start to be called as many times
728         as desired.
729
730         Fixes #337368
731
732 2007-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
733
734         * FtpWebRequest.cs: Added support for DELETE.
735
736 2007-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
737
738         * WebRequest.cs: Changed serialization ctor to throw NIE on 1.0
739         profile. Cache default proxy, but still allow it to be explicitly set
740         to null. Removed commented code.
741
742 2007-10-14 Gonzalo Paniagua Javier <gonzalo.mono@gmail.com>
743
744         * WebRequest.cs: DefaultWebProxy allows a null value. Fixes bug #323668.
745
746 2007-09-30  Gert Driesen  <drieseng@users.sourceforge.net>
747
748         * HttpListenerRequest.cs: Do not store 'method' in upper case, but
749         instead use case-insensitive comparison.
750
751 2007-09-30  Gert Driesen  <drieseng@users.sourceforge.net>
752
753         * HttpListenerRequest.cs: Removed dead code. USe String.Length to
754         check for zero-length string. Use instance field for is_chunked, and
755         also set it for GET/HEAD/DELETE. Fixed HasEntityBody to return true
756         when Content-Length > 0, or Transfer-Encoding is chunked.
757
758 2007-09-28  Marek Habersack  <mhabersack@novell.com>
759
760         * HttpListenerRequest.cs: make sure 'method' is always stored in
761         upper case.
762         The DELETE method must not error out on missing Content-Length
763         header (this is the behavior of the MS.NET version of the
764         class). Fixes bug #323215.
765         HasEntityBody should return false when method is GET/HEAD,
766         content_length is less than or equal to zero or the request is
767         chunked. Fixes bug #325296
768
769 2007-08-29  Atsushi Enomoto  <atsushi@ximian.com>
770
771         * IPAddress.cs, IPv6Address.cs : (ToString) output ScopeId.
772
773 2007-08-09  Atsushi Enomoto  <atsushi@ximian.com>
774
775         * HttpWebRequest_2_1.cs, HttpWebResponse_2_1.cs :
776           added new sources for those classes for 2.1 (in 2.1 they are
777           almost abstract, while in 2.0 they are concrete).
778         * HttpRequestCreator.cs, ServicePoint.cs :
779           #ifdef 2.0 dependencies out.
780
781 2007-06-28  Chris Howie  <cdhowie@nerdshack.com>
782
783         * ServicePoint.cs: Implemented BindIPEndPointDelegate.
784         * FtpWebRequest.cs: Respect ServicePoint.BindIPEndPointDelegate.
785         * WebConnection.cs: Respect ServicePoint.BindIPEndPointDelegate.
786
787 2007-08-08  Jb Evain  <jbevain@novell.com>
788
789         * HttpWebRequest.cs: .ctor(Uri) is public in 2.1.
790
791 2007-08-03  Jb Evain  <jbevain@novell.com>
792
793         * Dns.cs: remove async methods for the 2.1 profile.
794
795 2007-07-17  Rodrigo Kumpera  <rkumpera@novell.com>
796
797         * HttpListenerRequest.cs: Support for Cookie decoding.
798         * HttpListenerResponse.cs: Support for encoding cookies on the response sent to the client
799         * Cookie.cs: new internal method to encode the Cookie in a proper form to sent to clients
800
801 2007-07-14 Gonzalo Paniagua Javier <gonzalo.mono@gmail.com>
802
803         * WebConnectionStream.cs: implement the CanTimeout for 2.0. Fixes
804         bug #81504.
805
806 2007-07-12  Geoff Norton  <gnorton@customerdna.com>
807
808         * HttpListenerContext.cs: 
809         * HttpListener.cs: Handle HttpListener AuthenticationSchemes
810         Only Basic authentication is included for now.
811
812 2007-06-30  Gert Driesen  <drieseng@users.sourceforge.net>
813
814         * NetworkAccess.cs: Only mark as flags enum on 2.0.
815
816 2007-06-21  Dick Porter  <dick@ximian.com>
817
818         * AuthenticationManager.cs: 
819         * FtpWebRequest.cs: 
820         * Cookie.cs: 
821         * ServicePoint.cs: 
822         * WebClient.cs: 
823         * Authorization.cs: 
824         * FileWebRequest.cs: 
825         * HttpWebRequest.cs: 
826         * WebResponse.cs: 
827         * ServicePointManager.cs: 
828         * HttpWebResponse.cs: Throw NotImplementedException indirectly, to
829         reduce noise in Moma reports.
830
831 2007-06-20  Atsushi Enomoto  <atsushi@ximian.com>
832
833         * ServicePointManager.cs : (bootstrap) build fix.
834
835 2007-06-19  Dick Porter  <dick@ximian.com>
836
837         * AuthenticationManager.cs: 
838         * IWebProxyScript.cs: 
839         * Authorization.cs: 
840         * Cookie.cs: 
841         * CookieException.cs: 
842         * CredentialCache.cs: 
843         * FileWebRequest.cs: 
844         * WebRequest.cs: 
845         * FileWebResponse.cs: 
846         * WebResponse.cs: 
847         * FtpWebRequest.cs: 
848         * HttpWebRequest.cs: 
849         * DecompressionMethods.cs: 
850         * HttpWebResponse.cs: 
851         * ProtocolViolationException.cs: 
852         * ServicePoint.cs: 
853         * ServicePointManager.cs: 
854         * WebClient.cs: 
855         * WebException.cs: 
856         * WebHeaderCollection.cs: 
857         * WebProxy.cs: 
858         * WebExceptionStatus.cs: 2.0 profile updates
859
860 2007-05-18  Gert Driesen  <drieseng@users.sourceforge.net>
861
862         * WebConnectionStream.cs: On read timeout, throw WebException with
863         status Timeout instead of IOException.
864
865 2007-05-16  Adar Wesley <adarw@mainsoft.com>
866
867         * CookieCollection.cs: added missing method strongly typed CopyTo.
868
869         * CredentialCache.cs: added missing methods Add, Remove, GetCredential
870
871         * HttpWebRequest.jvm.cs: added missing ClientCertificates getter.
872
873         * ServicePoint.cs: added missing method CloseConnectionGroup.
874
875         * WebClient.cs: added missing methods OnDownloadProgressChanged,
876         OnUploadProgressChanged, GetWebRequest, GetWebResponse
877
878         * WebHeaderCollection.cs: added missing methods IsRestricted, Add,
879         Remove, Set.
880
881         * WebProxy.cs: added missing method GetObjectData.
882
883 2007-05-15  Marek Habersack  <mhabersack@novell.com>
884
885         * HttpWebRequest.cs: fold all methods into GET for
886         redirect/moves. Fixes bug #81624
887
888 2007-05-07  Miguel de Icaza  <miguel@novell.com>
889
890         Missing second part of the patch.
891         
892         * WebHeaderCollection.cs: To be compatible with older versions of
893         Mono that might have serialized this in a different format, catch
894         the potential exception, and try the old name.
895
896         This should become a practice whenever we fix serialization in the
897         future. 
898
899         This is for #81467
900
901 2007-04-23  Marek Habersack  <mhabersack@novell.com>
902
903         * EndPointListener.cs: relax prefix matching to succeed in cases
904         when the prefix ends with / and the request path does not. Fixes
905         bug #80091.
906
907         * CookieCollection.cs: added a SortByPath method to sort the
908         collection on demand.
909
910         * Cookie.cs: do not return "/" for Path if it wasn't set
911         explicitly.
912
913         * CookieContainer.cs: set cookie path only if its version is
914         "Netscape" and is null or empty. Fixes #81420.
915         Sort the collection by the path relevance before returning from
916         the GetCookies method. Fixes bug #81421.
917
918 2007-04-17  Joel Reed  <joelwreed@gmail.com>
919
920         * WebHeaderCollection.cs: www-authenticate should be multivalue.
921         This fixes a bug related to RFC 2608 which says in section
922         "15.2 Offering a Choice of Authentication Schemes"
923
924         An HTTP/1.1 server may return multiple challenges with a 401
925  (Authenticate) response, and each challenge may use a different
926         scheme.  The order of the challenges returned to the user agent is in
927         the order that the server would prefer they be chosen. The server
928         should order its challenges with the "most secure" authentication
929         scheme first. A user agent should choose as the challenge to be made
930         to the user the first one that the user agent understands.
931
932         Before this change, mono was choosing whatever was sent last,
933         which was the most insecure authentication option.
934         
935 2007-04-10  Marek Habersack  <mhabersack@novell.com>
936
937         * HttpListenerRequest.cs: do not include the query start marker
938         ('?') in the first variable name stored in the QueryString
939         collection. There is no HTTP header 'Accept-Types' in the
940         standard, there's only the 'Accept' header that specifies the
941         accepted MIME types. Fixes bug #81317
942
943 2007-03-25 Alan McGovern <alan.mcgovern@gmail.com>
944
945         * IPAddress.cs : Further optimisation for the Swap*** methods.
946
947 2007-03-24 Alan McGovern <alan.mcgovern@gmail.com>
948
949         * IPAddress.cs : Optimised the SwapInt and SwapLong methods.
950
951 2007-03-09  Miguel de Icaza  <miguel@novell.com>
952
953         * FtpDataStream.cs: Close must be called on the stream before we
954         attempt to read a status code from the remote server.
955
956         Fixes FTP transfers to complete. 
957
958 2007-03-05 Gonzalo Paniagua Javier <gonzalo.mono@gmail.com>
959
960         * HttpWebRequest.cs: properly handle OPTIONS, which may or may not
961         have a request body. Fixes bug #80686.
962
963 2007-03-02  Marek Habersack  <mhabersack@novell.com>
964
965         * WebClient.cs: Overwrite existing files on download, as
966         documented and as tested on MS.NET. Fixes Bug#81005
967
968 2007-02-24  Gert Driesen  <drieseng@users.sourceforge.net>
969
970         * HttpWebRequest.cs: Allow Proxy to be set to null on 2.0 profile.
971
972 2007-02-18  Geoff Norton  <gnorton@customerdna.com>
973
974         * AuthenticationManager.cs: Register the modules in the 2.0 profile
975         when we create the ArrayList.
976
977 2007-02-01  Gert Driesen  <drieseng@users.sourceforge.net>
978
979         * WebProxy.cs: In IsBypassed, move address check back to satify unit
980         tests.
981
982 2007-01-30  Ilya Kharmatsky <ilyak -at- mainsoft.com>
983
984         * Dns.cs : implemented proper exception handling under TARGET_JVM
985         when trying to resolve not existing host.
986
987 2007-01-28  Gert Driesen  <drieseng@users.sourceforge.net>
988
989         * IPAddress.cs: Provide more meaningful exception message on 2.0
990         profile.
991
992 2007-01-28  Gert Driesen  <drieseng@users.sourceforge.net>
993
994         * FileWebRequest.cs: Fixed PreAuthenticate and Proxy properties to
995         no longer throw NotSupportedException. No longer store ContentLength
996         in headers. Do not allow null or zero-length method. Allow timeout
997         to be set to -1 (infine). Only disallow GET, HEAD and CONNECT requests.
998         Removed workarounds for bug #24943. In (Begin)GetRequest overwrite
999         file if it already exists. Binary serialization compatibility fixes.
1000         * FileWebResponse.cs: Return application/octet-stream as ContentType.
1001
1002 2007-01-28  Gert Driesen  <drieseng@users.sourceforge.net>
1003
1004         * WebHeaderCollection.cs: Fixed binary serialization compatibility 
1005         with MS.
1006
1007 2007-01-28  Gert Driesen  <drieseng@users.sourceforge.net>
1008
1009         * WebProxy.cs: Lazy init bypassList. Fixes for binary serialization
1010         compatibility. Added stub for UseDefaultCredentials (2.0). On 2.0
1011         profile, throw ArgumentNullException in IsBypassed if host is null.
1012
1013 2007-01-22  Miguel de Icaza  <miguel@novell.com>
1014
1015         * HttpWebRequest.cs: Remove unused variable.
1016
1017         * FtpWebRequest.cs: Remove unused variable.
1018
1019         * WebHeaderCollection.cs: Remove a handful of NotImplementedException's
1020
1021 2007-01-11  Miguel de Icaza  <miguel@novell.com>
1022
1023         * HttpListenerRequest.cs (SetRequestLine): Add validation for the
1024         verbs. 
1025
1026         Allow any verbs to go through, not only
1027         the white list of verbs.
1028
1029         Fixes: 80504
1030
1031 2007-01-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1032
1033         * RequestStream.cs: initialize the stream in both ctors. Fixes a couple
1034         of unit tests.
1035
1036 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
1037
1038         * HttpWebRequest.jvm.cs: Fixed line endings.
1039         * HttpWebResponse.jvm.cs: Same.
1040         * WebException.cs: Same.
1041         * FtpWebRequest.cs: Same.
1042         * VMWHttpProvider.jvm.cs: Same.
1043
1044 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
1045
1046         * DnsPermissionAttribute.cs: Fixed line endings.
1047         * HttpVersion.cs: Same.
1048         * FtpWebResponse.cs: Same.
1049         * HttpContinueDelegate.cs: Same.
1050         * FtpAsyncResult.cs: Same.
1051         * EndpointPermission.cs: Same.
1052         * IPv6Address.cs: Same.
1053         * FtpDataStream.cs: Same.
1054         * SocketPermission.cs: Same.
1055         * FileWebRequest.cs: Same.
1056         * FileWebResponse.cs: Same.
1057         * DnsPermission.cs: Same.
1058         * ProtocolViolationException.cs: Same.
1059         * MonoHttpDate.cs: Same.
1060         * SocketPermissionAttribute.cs: Same.
1061         * CookieException.cs: Same.
1062         * WebResponse.cs: Same.
1063         * DefaultCertificatePolicy.cs: Same.
1064
1065 2006-12-28  Gert Driesen  <drieseng@users.sourceforge.net>
1066
1067         * IPAddress.cs: On 1.1, 4-byte addresses are not supported in the 
1068         ctor. Added null checks for the address passed in the ctors.
1069
1070 2006-12-28  Miguel de Icaza  <miguel@novell.com>
1071
1072         * IPAddress.cs: The condition in 1.1 was broken, it only allowed
1073         16-byte addresses, and never 4-byte addresses (only 2.0 had
1074         them).  
1075
1076         Keep a single code path.
1077
1078         Also, remove all the NET_1_1 defines, we realistically only
1079         distinguish between 1.1 and 2.0, we wont likely support 1.0, 1.1
1080         and 2.0, so remove the 1.0 vs 1.1 conditionals.
1081
1082         Fixes 76792
1083         
1084 〓2006-12-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1085
1086         * WebConnectionStream.cs: fix error in my last patch. Thanks to Felipe
1087         Almeida.
1088
1089 2006-12-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1090
1091         * WebConnection.cs:
1092         * HttpWebRequest.cs:
1093         * WebConnectionStream.cs: detect errors writing headers earlier and
1094         avoid race that showed up with SSL. Fixes bug #80234.
1095
1096 2006-12-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1097
1098         * EndPointListener.cs:
1099         * ListenerPrefix.cs:
1100         * ResponseStream.cs:
1101         * ChunkedInputStream.cs:
1102         * HttpConnection.cs:
1103         * RequestStream.cs: add initial support for HTTPS.
1104
1105 2006-12-18  Atsushi Enomoto  <atsushi@ximian.com>
1106
1107         * FtpStatus.cs : The build gets broken when only-2.0 classes/members
1108           are not excluded in 1.x build.
1109
1110 2006-12-18  David Elkind  <davide@mainsoft.com>
1111
1112         * FtpAsyncResult.cs : FTP request is now working and covers about 100% of .NET API
1113         * FtpDataStream.cs: FTP request is now working and covers about 100% of .NET API
1114         * FtpWebRequest.cs: FTP request is now working and covers about 100% of .NET API
1115         * FtpWebResponse.cs: FTP request is now working and covers about 100% of .NET API
1116         * FtpStatus.cs: added composite status (includes status code and status description)
1117
1118 2006-12-04  Konstantin Triger  <kostat@mainsoft.com>
1119
1120         * WebRequest.cs, WebResponse.cs: TARGET_JVM limitation workaround.
1121
1122 2006-12-04  Konstantin Triger  <kostat@mainsoft.com>
1123
1124         * ServicePointManager.cs: correct assignment typo.
1125         * ServicePoint.cs: Remove unneeded locks for getters, add internal setter.
1126
1127 2006-11-27  Miguel de Icaza  <miguel@novell.com>
1128
1129         * WebRequest.cs: Instead of throwing NotImplemented exceptions,
1130         call GetMustImplement, that way we do not need the whitelist, and
1131         we save a handful of opcodes.
1132
1133 2006-11-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1134
1135         * HttpWebRequest.cs: add 2 more methods that are not supposed to have
1136         a body. Fixes bug #80001.
1137
1138 2006-11-15  Andrew Skiba  <andrews@mainsoft.com>
1139
1140         * WebHeaderCollection.cs: add stubs for new 2.0 properties.
1141
1142 2006-11-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1143
1144         * HttpWebResponse.cs: cookies are actually added to the request
1145         container if any. Fixes bug #79821.
1146
1147 2006-11-02  Michael Hutchinson  <m.j.hutchinson@gmail.com>
1148
1149         * WebRequest.cs: more closely follow MS behaviour: use system settings 
1150           unless told otherwise, and respect app.config.
1151
1152 2006-11-01  Michael Hutchinson  <m.j.hutchinson@gmail.com>
1153
1154         * GlobalProxySelection.cs: Obsolete GlobalProxySelection under 2.0 
1155           profile, and move code to new property WebRequest.DefaultWebProxy.
1156         * WebRequest.cs: Implement new 2.0 property DefaultWebProxy.
1157           Add support for config option UseSystemDefault using simplistic
1158           implementation of new 2.0 method GetSystemWebProxy ().
1159
1160 2006-10-30  Atsushi Enomoto  <atsushi@ximian.com>
1161
1162         * FtpWebRequest.cs : more build fixes.
1163
1164 2006-10-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1165
1166         * EndPointListener.cs: update comment and avoid exception when the
1167         program is exiting.
1168
1169 2006-10-30  Miguel de Icaza  <miguel@novell.com>
1170
1171         * WebRequestMethods.cs: Another typo fix.
1172
1173         * ServicePointManager.cs: Set the default properly.
1174
1175         * SecurityProtocolType.cs: Remove non-existant defines. 
1176
1177 2006-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1178
1179         * HttpWebRequest.cs: internally allow buffer if it's not a known
1180         GET-only method instead of enabling that only for POST/PUT. Fixes bug
1181         #79595.
1182
1183 2006-09-28 Andrew Skiba <andrews@mainsoft.com>
1184
1185         * WebConnection.cs: TARGET_JVM
1186
1187 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1188
1189         * WebException.cs: patch by Andrew Skiba that fixes serialization
1190         compatibility with .NET and the default value for status.
1191
1192 2006-09-28  Andrew Skiba <andrews@mainsoft.com>
1193
1194         * Dns.cs: TARGET_JVM
1195
1196 2006-09-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1197
1198         * CookieContainer.cs: send the cookies from the collection we got for
1199         the given URI, not the whole collection.
1200         * HttpWebResponse.cs: only add the cookies to this instance, not to the
1201         cookie container set in the request.
1202
1203 2006-09-11  Sebastien Pouliot  <sebastien@ximian.com>
1204
1205         * WebConnection.cs: Patch to remove the hack that was required for 
1206         using the older versions of the SSL/TLS classes. This hack is no more
1207         required :-). Patch by Gonzalo Paniagua Javier.
1208
1209 2006-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1210
1211         * HttpConnection.cs: when the content length is available, keep it
1212         updated after synchronous read. Renamed 'available' to 'remaining_body'.
1213         * RequestStream.cs: when creating the stream, pass the remaining length
1214         starting from the offset in the buffer.
1215
1216 2006-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1217
1218         * RequestStream.cs: make sure we return 0 when no more bytes left.
1219         Paticularly, when we have a content length and the whole response is
1220         buffered.
1221
1222 2006-08-20  Miguel de Icaza  <miguel@novell.com>
1223
1224         * RequestStream.cs (Read): A bug fix for #79112 and what I
1225         consider to be an important change.
1226
1227         The bug fix is that we update the "available" variable as soon as
1228         we consume data from Read, this means that a second call into Read
1229         wont block.   Available was only being updated on a secondary code
1230         path, now we alwaysupdate it after using FillFromBuffer.
1231
1232         The second component is what I believe the right behavior should
1233         be.  There was a check for "if count > available" that set count
1234         to available in that case.   The idea was to limit the data read
1235         from the buffer that belonged to this particular request, to allow
1236         pipelining. 
1237
1238         But this test was done after FillFromBuffer, which assumed that
1239         all the data held in the buffer (the one used by FillFromBuffer)
1240         must belong to the this request, and only future data did not.
1241
1242         I think my change is correct, but it assumes that the initialized
1243         RequestStream will be used for other pipelined HTTP requests,
1244         which is not something am 100% sure of, so Gonzalo needs to check
1245         this. 
1246
1247 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1248
1249         * Cookie.cs: avoid nullref in GetHashCode and Equals.
1250
1251 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1252
1253         * CookieCollection.cs:
1254         * CookieContainer.cs: remove expired cookies.
1255
1256 2006-07-07  Atsushi Enomoto  <atsushi@ximian.com>
1257
1258         * Dns.cs : (GetHostEntry) when passed IP addresses, it does not issue
1259           query to DNS. Patch by Petri Latvala.
1260
1261 2006-07-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1262
1263         * CookieContainer.cs: don't send a secure cookie over an insecure
1264         channel.
1265
1266 2006-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1267
1268         * WebProxy.cs: (IsBypassed) 'loopback', 'localhost' and any address
1269         that starts with 127 are special.
1270
1271 2006-05-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1272
1273         * HttpListener.cs: Fixes race condition in BeginGetContext. Patch by
1274         Pawel Sakowski that fixes bug #78365.
1275
1276 2006-05-09  Atsushi Enomoto  <atsushi@ximian.com>
1277
1278         * ServicePointManager.cs : oops, CONFIGURATION_DEP.
1279
1280 2006-05-09  Atsushi Enomoto  <atsushi@ximian.com>
1281
1282         * GlobalProxySelection.cs : if corresponding config section is
1283           DefaultProxySection then use it.
1284
1285 2006-05-09  Atsushi Enomoto  <atsushi@ximian.com>
1286
1287         * WebRequest.cs : if corresponding config section is
1288           WebRequestModulesSection then use it.
1289
1290 2006-05-09  Atsushi Enomoto  <atsushi@ximian.com>
1291
1292         * ServicePointManager.cs : if corresponding config section is
1293           ConnectionManagementSection then use it.
1294
1295 2006-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1296
1297         * ResponseStream.cs:
1298         * HttpListenerResponse.cs: allow 0 length POST. Patch by Horst Reiterer.
1299         Closes bug #78316.
1300
1301 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1302
1303         * CredentialCache.cs: added DefaultNetworkCredentials.
1304
1305 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1306
1307         * NetworkCredential.cs: implement ICredentialsByHost interface.
1308
1309 2006-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1310
1311         * WebConnection.cs: reset the challenge and the status code when
1312         creating the tunnel and sending the proxy auth. headers. Improve error
1313         message when there's an error creating the tunnel.
1314         * HttpWebRequest.cs: don't trigger an early throw for a POST that gets
1315         a 401 or 407 response.
1316
1317 2006-04-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1318
1319         * WebConnectionData.cs:
1320         * WebConnection.cs:
1321         * HttpWebRequest.cs: when tunneling an ssl conneciton through a proxy,
1322         we were not handling a proxy authentication request. Fixes bug #78150
1323         take 2.
1324
1325 2006-04-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1326
1327         * WebProxy.cs: a .ctor was not forwarding the 'credentials' argument.
1328         This fixes bug #78150. Also fix the bypass check for local requests.
1329
1330 2006-04-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1331
1332         * WebProxy.cs: removed bogus ^M.
1333
1334 2006-04-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1335
1336         * HttpWebResponse.cs: don't remove the Set-Cookie headers. Fixes bug
1337         #78028.
1338
1339 2006-04-04  Atsushi Enomoto  <atsushi@ximian.com>
1340
1341         * WebClient.cs : added a bunch of async method support.
1342
1343 2006-04-03  Chris Toshok  <toshok@ximian.com>
1344
1345         * HttpWebResponse.cs (ContentEncoding): return "" if the header
1346         isn't present.
1347
1348 2006-03-30  Atsushi Enomoto  <atsushi@ximian.com>
1349
1350         * DownloadStringCompletedEventHandler.cs : missing delegate.
1351
1352 2006-03-30  Atsushi Enomoto  <atsushi@ximian.com>
1353
1354         * Dns.cs : minor argument renaming.
1355
1356 2006-03-28  Atsushi Enomoto  <atsushi@ximian.com>
1357
1358         * DownloadDataCompletedEventArgs.cs
1359           DownloadDataCompletedEventHandler.cs
1360           DownloadProgressChangedEventArgs.cs
1361           DownloadProgressChangedEventHandler.cs
1362           DownloadStringCompletedEventArgs.cs
1363           OpenReadCompletedEventArgs.cs
1364           OpenReadCompletedEventHandler.cs
1365           OpenWriteCompletedEventArgs.cs
1366           OpenWriteCompletedEventHandler.cs
1367           UploadDataCompletedEventArgs.cs
1368           UploadDataCompletedEventHandler.cs
1369           UploadFileCompletedEventArgs.cs
1370           UploadFileCompletedEventHandler.cs
1371           UploadProgressChangedEventArgs.cs
1372           UploadProgressChangedEventHandler.cs
1373           UploadStringCompletedEventArgs.cs
1374           UploadStringCompletedEventHandler.cs
1375           UploadValuesCompletedEventArgs.cs
1376           UploadValuesCompletedEventHandler.cs : added 2.0 types.
1377
1378 2006-03-28  Atsushi Enomoto  <atsushi@ximian.com>
1379
1380         * Dns.cs : filled missing NET_2_0 members.
1381
1382 2006-03-28  Atsushi Enomoto  <atsushi@ximian.com>
1383
1384         * IPAddress.cs : ugh, I was testing with run-test-ondotnet, not
1385           run-test. Those IPv6 properties needed to be reimplemented.
1386
1387 2006-03-27  Atsushi Enomoto  <atsushi@ximian.com>
1388
1389         * IPAddress.cs : added NET_2_0 TryParse() and IPv6 related properties.
1390
1391 2006-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1392
1393         * WebConnectionStream.cs: avoid Begin/EndWrite when the body length is
1394         zero.
1395
1396 2006-03-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1397
1398         * HttpWebRequest.cs: send the request if ContentLength is set for
1399         POST/PUT, the request stream has that exact amount of bytes in it and
1400         we're trying to get the response stream.
1401
1402         This way, closing the request stream is not needed in order to actually
1403         send the request. Fixes bug #77753.
1404
1405         * WebConnectionStream.cs: throw if the number of bytes written is
1406         greater than the specified request content length.
1407
1408 2006-03-11  Miguel de Icaza  <miguel@novell.com>
1409
1410         * WebClient.cs: Only expose the right methods to avoid warnings. 
1411
1412         * FtpDataStream.cs (Dispose): Fix signature.
1413
1414         * FtpWebResponse.cs: Comment out keepAlive field (unused, sounds
1415         like we are missing features here).
1416
1417         * IPAddress.cs: Move m_HashCode property to the end, and set
1418         pragmas to disable warnings.
1419
1420 2006-02-16  Dick Porter  <dick@ximian.com>
1421
1422         * IPEndPoint.cs: The SocketAddress AddressFamily takes up the
1423         first two bytes, not just one.  Check the size of the
1424         SocketAddress buffer for IPv6 as well.
1425
1426         * Dns.cs: Cope when GetHostByName_internal or
1427         GetHostByAddr_internal returns fewer items in the array than it
1428         intended to (maybe due to conversion errors.)
1429
1430 2006-02-09  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1431
1432         * FtpWebResponse.cs: Add UpdateStatus method, to update both
1433         statusCode and statusDescription at the same time. 
1434
1435 2006-02-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1436
1437         * FtpWebRequest.cs: Remove WebExceptionStatus argument
1438         from CreateExceptionFromResponse, since exceptions gotten
1439         from server response always have a WebExceptionStatus.ProtocolError
1440         value.
1441         
1442 2006-02-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1443
1444         * FtpWebRequest.cs: Add renaming support when using 
1445         WebRequestMethods.Ftp.Rename method.
1446         
1447 2006-02-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1448
1449         * ChunkedInputStream.cs:
1450         * ChunkStream.cs: handle partial trailers and zero reads. Patch by Pawel
1451         Sakowski.
1452
1453 2006-02-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1454
1455         * HttpWebRequest.cs: don't send the expect-100 if if there's no content.
1456
1457         * HttpListenerRequest.cs:
1458         * HttpConnection.cs:
1459         * RequestStream.cs: use the content length header to avoid reading past
1460         the end of the stream.
1461
1462         Patch by Horst Reiterer.
1463
1464 2006-02-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1465
1466         * FtpWebRequest.cs: Add supportedCommands array with the sorted
1467         methods, to search using Array.BinarySearch. Remove CheckMethod.
1468
1469 2006-02-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1470
1471         * FtpWebRequest.cs: Fixed some typos and small issues.
1472         
1473 2006-02-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1474
1475         * HttpWebRequest.cs: dummy implementation of UnsafeAuthenticationBlah
1476         property.
1477
1478 2006-02-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1479
1480         * FtpRequestCreator.cs: 
1481         * FtpAsyncResult.cs:
1482         * FtpDataStream.cs:
1483         * FtpWebRequest.cs:
1484         * FtpWebResponse.cs: Initial implementation of FtpWebRequest (2.0)
1485         
1486 2006-02-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1487
1488         * FtpStatusCode.cs: Fix a typo.
1489         
1490 2006-01-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1491
1492         * WebClient.cs: (2.0) UploadString() returns string, not void.
1493
1494 2006-01-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1495
1496         * HttpWebResponse.cs: ignore non-integer values for max-age and version.
1497         Fixes bug #77199. Thanks to Cyrille Colin.
1498
1499 2006-01-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1500
1501         * HttpWebResponse.cs: cope with malformed cookies with '=' as value.
1502         Patch by Cyrille Colin. Fixes bug #77179.
1503
1504 2005-12-25  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1505
1506         * FtpStatusCode.cs: New 2.0 enum.
1507
1508 2005-12-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1509
1510         * CookieContainer.cs: fix matching of subdomains. Patch by Cyrille
1511         Colin.
1512
1513 2005-12-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1514
1515         * HttpWebResponse.cs: don't loop forever when no name or value between
1516         semicolons. Fixes bug #76943.
1517
1518 2005-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1519
1520         * HttpWebResponse.cs: don't fail if the cookie ends with a 'name'
1521         without a value. Fixes bug #76922.
1522
1523 2005-11-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1524
1525         * EndPointListener.cs:
1526         * HttpListenerRequest.cs: don't require the Host header for 1.0. Just
1527         map that to the '*' or '+' host.
1528
1529 2005-11-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1530
1531         * IPAddress.cs: the byte[] ctor supports length 4 in .NET 2.0.
1532         Fixes bug #76792.
1533
1534 2005-11-21 Senganal T   <tsenganal@novell.com>
1535
1536         * Dns.cs : corrected a mistake in GetHostEntry ()
1537
1538 2005-11-21 Senganal T   <tsenganal@novell.com>
1539
1540         * Dns.cs : added GetHostEntry() method for 2.0 api conformance
1541
1542 2005-11-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1543
1544         * HttpRequestHeader.cs: add missing values.
1545
1546 2005-11-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1547
1548         * HttpListenerPrefixCollection.cs:
1549         * HttpWebResponse.cs:
1550         * Dns.cs:
1551         * HttpListenerRequest.cs:
1552         * HttpWebRequest.cs:
1553         * HttpListenerResponse.cs: a few signature fixes for 2.0.
1554
1555 2005-11-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1556
1557         * HttpListenerPrefixCollection.cs:
1558         * EndPointListener.cs:
1559         * HttpStreamAsyncResult.cs:
1560         * HttpListenerContext.cs:
1561         * HttpListenerBasicIdentity.cs:
1562         * AuthenticationSchemeSelector.cs:
1563         * HttpListener.cs:
1564         * WebHeaderCollection.cs:
1565         * ListenerPrefix.cs:
1566         * HttpListenerException.cs:
1567         * HttpResponseHeader.cs:
1568         * EndPointManager.cs:
1569         * HttpListenerRequest.cs:
1570         * HttpRequestHeader.cs:
1571         * BindIPEndPoint.cs:
1572         * ResponseStream.cs:
1573         * ChunkedInputStream.cs:
1574         * HttpStatusCode.cs:
1575         * ListenerAsyncResult.cs:
1576         * ChunkStream.cs:
1577         * HttpConnection.cs:
1578         * HttpUtility.cs:
1579         * HttpListenerResponse.cs:
1580         * RequestStream.cs: initial implementation of HttpListener. There are
1581         a few TODOs left (cookies, HTTPS) but almost everything else is in.
1582
1583 2005-11-15  Sebastien Pouliot  <sebastien@ximian.com>
1584
1585         * IPv6Address.cs: Added on overload to ToString to get a the full 
1586         length address returned (as required by System.Uri).
1587
1588 2005-11-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1589
1590         * WebRequestMethods.cs: New 2.0 class.
1591         
1592 2005-11-05  Atsushi Enomoto  <atsushi@ximian.com>
1593
1594         * WebClient: use POST for DownloadData(). Fixed bug #76631.
1595
1596 2005-10-26  Atsushi Enomoto  <atsushi@ximian.com>
1597
1598         * AuthenticationSchemes.cs : Fixed enum values and added [Flags].
1599
1600 2005-10-19  Atsushi Enomoto  <atsushi@ximian.com>
1601
1602         * WebClient.cs : added net_2_0 DownloadString() and DownloadData()
1603           with HTTP method as well.
1604
1605 2005-10-19  Atsushi Enomoto  <atsushi@ximian.com>
1606
1607         * WebClient.cs : added UploadString() and Encoding (net_2_0). Added
1608           some new overloaded stuff that takes Uri instead of string address.
1609
1610 2005-10-17  Sebastien Pouliot  <sebastien@ximian.com> 
1611
1612         * ICredentialPolicy.cs: New. Interface for 2.0.
1613
1614 2005-10-05  Atsushi Enomoto  <atsushi@ximian.com>
1615
1616         * AuthenticationSchemes.cs : new 2.0 enum.
1617
1618 2005-08-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1619
1620         * GlobalProxySelection.cs: remove double lock.
1621         * HttpWebRequest.cs: remove double lock in GetServicePoint() and use
1622         a private object when locking.
1623
1624 2005-07-15  Miguel de Icaza  <miguel@novell.com>
1625
1626         * DigestClient.cs: Fix bug #75556, the qop argument must be
1627         quoted, per http://www.faqs.org/rfcs/rfc2617.html section
1628         `quo-options'.
1629
1630 2005-07-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1631
1632         * WebConnectionStream.cs: initiate writing the body before trying to
1633         read. This fixes the performance problems observed in web services.
1634         Closes bug #75455.
1635
1636 2005-06-27  Lluis Sanchez Gual <lluis@novell.com>
1637
1638         * IPAddress.cs: Changed field names for the sake of serialization
1639         interoperability with MS.NET.
1640         
1641 2005-06-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1642
1643         * WebConnection.cs: if cnc.EndRead throws, mark the asyncresult as done.
1644         * WebConnectionStream.cs: if we're done with the body of a chunk, don't
1645         require the next chunk header to be there, as some servers might close
1646         the connection (while also sending 'Connection: close').
1647
1648 2005-06-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1649
1650         * HttpWebRequest.cs: MS implementation follows redirects for POST. Seems
1651         to me that this is against 10.3.3 in RFC 2616, but may be the user
1652         'authorization' to do this is implicit in AllowAutoRedirect...
1653
1654 2005-06-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1655
1656         * WebConnection.cs: SslClientStream.BeginRead might not be asynchronous
1657         if there's no record available to read. This is a workaround that makes
1658         the call to BeginRead itself asynchronous. Fixes bug #75342.
1659
1660 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1661
1662         * WebConnection.cs:
1663         * HttpWebRequest.cs:
1664         * WebConnectionStream.cs: initiate the polling for input data after
1665         sending the header so that we detect any response that the server sends
1666         back even if we're still trying to write the request for a POST/PUT.
1667         If we get the response (or an error) before any one calls GetResponse(),
1668         keep it around instead of ignoring it.
1669
1670 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1671
1672         * HttpWebRequest.cs: send the right header/user/password in
1673         PreAuthenticate in presence of a proxy.
1674
1675 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1676
1677         * IPv6Address.cs: fix IsLoopback. Closes bug #75128.
1678
1679 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1680
1681         * IPv6Address.cs: don't do extra check on ipv4 if this is a ipv6
1682         address. Fixes bug #75125.
1683
1684 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1685
1686         * ServicePointManager.cs: when going through a proxy, use 2 different
1687         service points depending on the scheme. Fixes bug #75135.
1688
1689 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1690
1691         * Dns.cs: don't parse the address when it comes from an IPAddress.
1692
1693 2005-05-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1694
1695         * WebConnection.cs: prevent 2 nullrefs when the aborting during
1696         Connect() and reset the status to Success before starting a new
1697         request.
1698
1699 2005-05-19  Sebastien Pouliot  <sebastien@ximian.com>
1700
1701         * WebRequest.cs: Throw NotImplementedException (not NotSupported
1702         Exception) for stuff that should have been abstract. No exception
1703         is thrown by the serialization constructor.
1704
1705 2005-05-04 James Willcox  <james@ximian.com>
1706
1707         * DigestClient.cs: convert to a hex string with "X8" consistently
1708         for nc-value
1709
1710 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1711
1712         * WebConnection.cs: don't rethrow errors in Write, as the error will be
1713         received by GetResponse*. The result is that the threadpool thread doing
1714         this will not end up printing the exception. Fixes bug #74817.
1715
1716 2005-05-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1717
1718         * ServicePoint.cs: HostEntry needs to be thread safe.
1719
1720 2005-05-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1721
1722         * WebConnection.cs: removed a 'slightly' important line by mistake.
1723         * WebConnectionStream.cs: if the transfer encoding is chunked, ignore
1724         content-length header if present.
1725
1726 2005-05-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1727
1728         * WebConnection.cs: no need to use an AutoResetEvent.
1729         * WebConnectionStream.cs: don't start any more reads on the socket
1730         after getting a 0 signalling the end. This fixes Ben's infamous foo.cs
1731         test.
1732
1733 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1734
1735         * BasicClient.cs: firefox/IE just send latin1, stripping the high byte
1736         from unicode >= 256 characters.
1737
1738 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1739
1740         * BasicClient.cs: use latin1 when encoding the username/domain/password.
1741         Fixes bug #74745.
1742
1743 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1744
1745         * WebConnectionStream.cs: if the BeginRead/BeginWrite is completed
1746         synchronously, no need to create the ManualResetEvent to wait on.
1747
1748 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1749
1750         * WebConnectionStream.cs: call SetComplete in EndWrite when we're not
1751         buffering the request body. Fixes bug #74637.
1752
1753         * WebAsyncResult.cs: renamed field.
1754
1755 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1756
1757         * WebConnectionStream.cs:
1758         * WebAsyncResult.cs: ensure we only call EndRead once per async. result.
1759         Update total before invoking the callback when present.
1760
1761 2005-04-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1762
1763         * WebConnection.cs:
1764         * WebConnectionStream.cs: don't start reading until we've sent at least
1765         the headers. This way we ensure that a Write happens before any Read,
1766         which is needed by the SSL code.
1767
1768 2005-04-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1769
1770         * HttpWebRequest.cs: ensure we read everything before redirecting.
1771
1772 2005-04-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1773
1774         * WebConnectionStream.cs: provide a default callback when doing async.
1775         read/write and waiting for a timeout so that the callback sets the
1776         event and we don't block forever. Fixes bug #74539 take 3.
1777
1778 2005-04-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1779
1780         * WebConnection.cs:
1781         * HttpWebRequest.cs: now Abort() works properly. Fixes bug #74177.
1782
1783 2005-04-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1784
1785         * WebConnection.cs: fix some breakage from my last patch.
1786         * WebConnectionStream.cs: invoke the callback when done even in EndRead.
1787
1788 2005-04-10  Sebastien Pouliot  <sebastien@ximian.com>
1789
1790         * WebConnection.cs: Added support for TrustFailure when throwing a
1791         WebException. Fix bug #74286.
1792
1793 2005-04-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1794
1795         * HttpWebRequest.cs: 
1796         * WebConnectionStream.cs: implemented support for ReadWriteTimeout.
1797
1798 2005-04-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1799
1800         * WebConnection.cs: if we're reading chunked data and didn't use the
1801         stream to read, we gotta set the async. result as complete and invoke
1802         the callback. Don't call nstream.EndRead with the wrong IAsyncResult.
1803
1804         * WebConnectionStream.cs: in EndRead, pass the correct IAsyncResult to
1805         cnc.EndRead. Lock on a field instead of 'this'.
1806
1807 2005-04-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1808
1809         * HttpWebRequest.cs: throw the exception if we got an error, as now
1810         it's catched in the redirection handling code.
1811
1812 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1813
1814         * HttpWebRequest.cs: moved redirection handling to a proper place.
1815
1816 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1817
1818         * WebHeaderCollection.cs: added if-modified-since to the list of
1819         restricted headers.
1820
1821         * ServicePoint.cs: use a field object when locking.
1822
1823 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1824
1825         * WebConnectionStream.cs: ForceCompletion actually calls NextRead. No
1826         need to wait for a Close/ReadAll when we have no content.
1827
1828 2005-04-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1829
1830         * NtlmClient.cs: fix typo in assembly name.
1831
1832 2005-03-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1833
1834         * CookieContainer.cs: adding to a CookieCollection might not increment
1835         the number of items if the cookie is replaced. Now Count works properly.
1836         Fixed an array index exception (typo).
1837
1838         * CookieCollection.cs: also compare the version.
1839
1840         * HttpWebResponse.cs: when we have cookies, add them to the request
1841         container.
1842
1843         * HttpWebRequest.cs: changed last parameter of HttpWebResponse ctor.
1844
1845 2005-03-30  Miguel de Icaza  <miguel@novell.com>
1846
1847         * Cookie.cs: Compare using the InvariantCulture, to match the
1848         behavior of CookieContainer that already did this.
1849
1850 2005-03-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1851
1852         * WebConnection.cs: we don't need to trigger the next queued request
1853         until the response is closed.
1854
1855 2005-03-29  Miguel de Icaza  <miguel@novell.com>
1856
1857         * HttpWebResponse.cs: Handle quotations in the cookies values, per
1858         the spec http://www.faqs.org/rfcs/rfc2109.html, it is allowed to
1859         have quotations.
1860
1861 2005-03-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1862
1863         * BasicClient.cs:
1864         * DigestClient.cs: check that GetCredential() does not return null.
1865
1866 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1867
1868         * BasicClient.cs: ensure credentials are not null.
1869
1870 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1871
1872         * HttpWebResponse.cs: moved cookie parsing into its own class.
1873         * WebHeaderCollection.cs: remove (probably bogus) GetMultipleValues
1874         call.
1875         * HttpWebRequest.cs: don't let exception raised in the ctor of
1876         HttpWebResponse vanish.
1877
1878         Fixes bug #73275.
1879
1880 2005-03-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1881
1882         * WebHeaderCollection.cs: handle commas inside quotes when splitting
1883         a multi-value header. Fixes bug #73151.
1884
1885 2005-02-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1886
1887         * DigestClient.cs: fix for digest auth. and URIs containing query. Patch
1888         by James Wilcox. Fixes bug #72571.
1889
1890 2005-02-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1891
1892         * HttpWebResponse.cs:
1893         * WebConnection.cs:
1894         * HttpWebRequest.cs:
1895         * WebConnectionStream.cs: don't read the entire response unless the
1896         user requests it. Fixes bug #72443.
1897
1898 2005-02-08  Zoltan Varga  <vargaz@freemail.hu>
1899
1900         * IPv6Address.cs: Fix endianess problems.
1901
1902         * IPAddress.cs: Fix misleading comments.
1903
1904 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1905
1906         * HttpWebRequest.cs: send the headers when we're supposed to write
1907         a POST/PUT but call GetResponse before GetRequestStream.
1908
1909         * WebConnectionStream.cs: new RequestWritten property.
1910
1911 2005-01-20  Jonathan Pryor  <jonpryor@vt.edu>
1912
1913         * EndpointPermission.cs: Fix IsSubsetof(hostname) so that the regression 
1914           tests work.  In particular, IsSubsetOf ("12.13.*.*", "12.13.14.*") failed
1915           because 14 wasn't a subset of * (which it is).  Fix: if part1 is we 
1916           continue to the next portion.
1917
1918 2005-01-20  Jonathan Pryor  <jonpryor@vt.edu>
1919
1920         * IPAddress.cs (ParseIPV4): Fix so that the regression tests work.  In
1921           particular, " foo" and ".1.1.6" weren't being caught (" foo" because it
1922           started with a space, and ".1.1.6" because the split string accepted a
1923           0-length portion, which would make 1...6 valid, but isn't valid based on
1924           similar test cases).
1925
1926 2005-01-20  Jonathan Pryor  <jonpryor@vt.edu>
1927
1928         * WebHeaderCollection.cs: Fix GetValues(string) to split the values on
1929           commas if the header is a Multi-Value header.  This matches
1930           MonoTests.System.Net.WebHeaderCollectionTest.
1931
1932 2005-01-19  Sebastien Pouliot  <sebastien@ximian.com>
1933
1934         * WebPermissionAttribute.cs: Fixed NET_1_1 behaviour.
1935
1936 2004-12-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1937
1938         * WebConnectionStream.cs: remove unneeded check. Write detects and
1939         triggers the exception now.
1940
1941 2004-12-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1942
1943         * AuthenticationManager.cs: don't lock on a public Type.
1944         * HttpWebRequest.cs: read the error response for auth. errors.
1945
1946 2004-12-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1947
1948         * HttpWebRequest.cs: set webResponse back to null when redirecting.
1949         Fix the previous patch so that it reads the whole response even if
1950         auto-redirect is not enabled. Closes bug #70484.
1951
1952 2004-12-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1953
1954         * HttpWebResponse.cs: added ReadAll method.
1955
1956         * WebConnection.cs: in HandleError, set the response error after
1957         closing the socket. Use an async. delegate to finish reading any prior
1958         WebConnectionStream.
1959
1960         * HttpWebRequest.cs: for error responses that allow content, read the
1961         stream immediately. Fixes bug #70483.
1962
1963 2004-12-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1964
1965         * CookieContainer.cs: quote the port number.
1966
1967 2004-12-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1968
1969         * WebConnection.cs:
1970         * WebConnectionStream.cs: removed TryReconnect. It's no longer needed.
1971
1972 2004-12-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1973
1974         * WebConnection.cs: set the event in Close so that if the queue is
1975         empty, we won't block forever on next request. The finalizer was
1976         removed because we're not implementing IDisposable pattern here.
1977
1978 2004-12-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1979
1980         * WebConnection.cs: handle errors on chunked streams. Fixes bug #66858.
1981         * ChunkStream.cs: added error checking all over.
1982
1983         * HttpWebRequest.cs: throw the exception received in SetResponseError
1984         if we already have a response.
1985         (SetRequestData): Don't nest the exception if it's a WebException.
1986
1987 2004-12-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1988
1989         * WebConnection.cs: remove prevStream and don't set busy to false in
1990         HandleError. prevStream is not needed any more and setting 'busy' so
1991         early might let a request skip the queue.
1992         
1993         * WebConnectionGroup.cs: decrement the indexer when removing a dead
1994         reference from the arraylist.
1995
1996         * WebConnectionStream.cs:
1997         (ReadAll): call NextRead if it has not been called before even when
1998         we have completed the request. Reuse the read buffer when reading a
1999         response of unknown size. Increase the buffer to 8kB.
2000         (BeginRead): increase pendingReads earlier and even when reading from
2001         the internal buffer.
2002         (EndRead): decrease pendingReads later and always.
2003
2004 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2005
2006         * CookieContainer.cs: style, fixed checks for properties, implemented
2007         the MonoTODOs for the method that take an Uri. GetCookies and
2008         GetCookieHeaders now really return only the cookies that are requested
2009         filtering by the Uri parameter.
2010
2011         * Cookie.cs: style, added default values for Comment, Domain and Port.
2012
2013 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2014
2015         * CookieCollection.cs: reformatted, fixed Add by adding a new method to
2016         search across the arraylist, as list.IndexOf is not what we want.
2017
2018 2004-11-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2019
2020         * WebConnection.cs: check for FIN or RST on the socket before reusing.
2021         Fixes bug #69388.
2022
2023 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2024
2025         * ChunkStream.cs: simplified condition for WantMore property.
2026
2027         * WebConnection.cs: in Connect(), finish any pending reads we might
2028         have for chunked data. Ignore possible blank lines at the very
2029         beginning of the server response. Honor user set KeepAlive in
2030         HttpWebRequest for HTTP/1.1 connections. Thanks to Eyal Alayuf for
2031         his suggestions and code.
2032
2033 2004-11-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2034
2035         * HttpWebResponse.cs: don't lock up when the cookie received ends with
2036         a semicolon. Patch by Darryl VanDorp. Fixes bug #68956.
2037
2038 2004-10-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2039
2040         * HttpWebRequest.cs: don't fail if the request has already been sent
2041         when accessing ContentType setter. Fixes bug #68848.
2042
2043 2004-10-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2044
2045         * ChunkStream.cs:
2046         (WantMore): we're not done until we get a 0 chunk size and the trailer.
2047         The 0 can be expressed as more than one character too (ie, 000000).
2048
2049         * HttpWebRequest.cs: new argument in SetResponseError.
2050         * WebConnection.cs: added argument to HandleError as a hint for
2051         debugging.
2052         (Connect): make the chunked stream be in the expected state when
2053         reusing.
2054
2055         * WebConnectionStream.cs: removed unused method (ResetWriteBuffer).
2056
2057 2004-10-10 David Sheldon <dave-mono@earth.li>
2058
2059         * HttpWebRequest.cs: Use RemoveAndAdd for AddRange. Fixes unittest.
2060
2061 2004-10-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2062
2063         * HttpWebRequest.cs: use RemoveAndAdd for headers multivalue headers.
2064         * WebHeaderCollection.cs: added RemoveAndAdd that behaves like the old
2065         SetInternal.
2066
2067 2004-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2068
2069         * HttpWebRequest.cs: ProxyQuery returns true when we use a proxy without
2070         tunneling a secure connection.
2071
2072         * ServicePoint.cs: added UseConnect property.
2073
2074         * ServicePointManager.cs: set the UseConnect property when we use a http
2075         proxy for a https connection.
2076
2077         * WebConnection.cs: setup the tunnled connection when using a proxy and
2078         https.
2079
2080 2004-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2081
2082         * HttpWebResponse.cs: remove unused SplitValue method.
2083
2084 2004-09-10  Sebastien Pouliot  <sebastien@ximian.com>
2085
2086         * DnsPermission.cs: Updated to pass new unit tests.
2087         * DnsPermissionAttribute.cs: Cleanup.
2088         * SocketPermission.cs: Updated to pass new unit tests.
2089         * SocketPermissionAttribute.cs: Updated to pass new unit tests.
2090         * WebPermission.cs: Implemented some TODO - not complete yet.
2091         * WebPermissionAttribute.cs: Updated to pass new unit tests.
2092
2093 2004-08-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2094
2095         * Cookie.cs: don't fail when using default constructor. Fixes bug
2096         #62890.
2097
2098 2004-08-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2099
2100         * HttpWebResponse.cs: set-cookie and set-cookie2 can be present more
2101         than once and have multiple values. Don't rely on string.split when
2102         parsing cookie values.
2103
2104         * WebHeaderCollection.cs: same thing for set-cookie and set-cookie2.
2105         Fixed GetValues (it was splitting values that contained a comma) and
2106         changed SetInternal to handle multi-value headers.
2107
2108         Fixes bug #62744.
2109
2110 2004-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2111
2112         * WebProxy.cs: fix scheme detection. Patch by Konstantin Triger
2113         (kostat@mainsoft.com).
2114
2115 2004-07-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2116
2117         * HttpWebRequest.cs: detect changes in scheme or port when redirecting.
2118         Fixes las take on bug 61218.
2119
2120 2004-07-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2121
2122         * WebConnection.cs: moved loading of the ssl stream Type to its own
2123         method. Don't create a new ssl stream if we're reusing the connection.
2124
2125         * WebConnectionStream.cs: ensure the number of bytes copied in ReadAll
2126         is the expected even if the dta from the server has extra bytes.
2127
2128 2004-07-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2129
2130         * WebConnection.cs:
2131         * WebConnectionStream.cs: when the status code is 1xx, 204 or 304,
2132         "responses MUST NOT include a message-body". We tried to read the
2133         stream even when getting those codes and considered the 0 length
2134         read as a failure.
2135
2136 2004-07-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2137
2138         * HttpWebRequest.cs: removed bogus Monitor.Exit.
2139         * WebConnection.cs: use Address instead of RequestUri when checking for
2140         the scheme in order to select the stream type. Fixes bug #61218.
2141
2142 2004-06-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2143
2144         * ChunkStream.cs: added ChunkLeft property.
2145         * WebConnection.cs:
2146         (EndRead): when using small byte arrays to read from a chunked stream,
2147         ensure we've read the chunk size and try to fulfill the request
2148         completely. fixes bug 59653.
2149
2150 2004-05-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2151
2152         * WebConnectionStream.cs: fixed CanRead property. Closes bug #59273.
2153
2154 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2155
2156         * DigestClient.cs: cache the sessions based on address and
2157         credentials, not only address. Added poor men's expiration to
2158         the session cache. Fixes bug #59202.
2159
2160 2004-05-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2161
2162         * IPAddress.cs:
2163         * IPEndPoint.cs:
2164         * IPv6Address.cs: no more warnings about IPAddress.Address.
2165
2166 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2167
2168         * WebException.cs: implemented serialization .ctor and
2169         GetObjectData().
2170
2171 2004-05-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2172
2173         * WebAsyncResult.cs: don't create the WaitHandle if not needed.
2174
2175 2004-05-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2176
2177         * HttpWebRequest.cs: added 3 missing properties for 1.1. They are not
2178         used yet.
2179
2180         * NetConfig.cs: added MaxResponseHeadersLength field.
2181
2182         * ServicePoint.cs:
2183         * ServicePointManager.cs: added missing properties for 1.1. 
2184
2185 2004-05-03  Sebastien Pouliot  <sebastien@ximian.com>
2186
2187         * WebConnection.cs: Use assembly name const to load Mono.Security.
2188
2189 2004-05-03  Lluis Sanchez Gual <lluis@ximian.com>
2190
2191         * NtlmClient.cs: Use assembly name const to load Mono.Security.
2192
2193 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2194
2195         * WebConnectionStream.cs: avoid the exception when getting the content
2196         length if possible.
2197
2198 2004-03-29  Lluis Sanchez Gual <lluis@ximian.com>
2199
2200         * HttpWebRequest.cs: Use a lock block instead of Monitor.Enter/Exit, so
2201         the lock is released in case of exception (for example, a 
2202         ThreadAbortException). This also "fixes" bug #52417.
2203         Beware, this requires a runtime update (due to a bug in Monitor.Exit).
2204         * ServicePoint.cs: Changed method from internal to private, since it
2205         is not called from outside the class.
2206
2207 2004-03-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2208
2209         * HttpWebRequest.cs: added the exception status to the error message.
2210         * WebConnection.cs: add headers using SetInternal instead of Add to
2211         bypass header name validation. Fixes bug #55994.
2212         * WebHeaderCollection.cs: added SetInternal (string header).
2213
2214 2004-03-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2215
2216         * WebConnection.cs:
2217         * WebConnectionGroup.cs: the requests queue is now shared for all the
2218         connections belonging to the same connection group.
2219
2220 2004-02-26  Sebastien Pouliot  <sebastien@ximian.com>
2221
2222         * DefaultCertificatePolicy.cs: New. Certificate validation
2223         policy compatible with the documented one present in Fx. It
2224         allows valid certificates and expired certificates to be used
2225         for SSL connections.
2226         * ServicePointManager.cs: Removed the DummyPolicy. Now creates
2227         a DefaultCertificatePolicy to validate certificates. 
2228
2229 2004-02-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2230
2231         * ServicePoint.cs: SendContinue is always false for HTTP/1.0
2232
2233         * WebConnection.cs: get rid of WaitForContinue() (yes!) and prevent
2234         calling more the ContinueDelegate more than once when we get the
2235         headers in several packets.
2236
2237         * WebConnectionStream.cs: removed call to WaitForContinue.
2238
2239 2004-02-25  Sebastien Pouliot  <sebastien@ximian.com>
2240
2241         * WebConnection.cs: Update previous patch to use HttpsClientStream
2242         (internal in Mono.Security assembly) in place of SslClientStream.
2243         This will reduce reflection and allow to use ICertificatePolicy.
2244
2245 2004-02-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2246
2247         * DigestClient.cs: fix quote handling. Reordered attributes in response.
2248         Fixed typo (QOP->CNonce). Now Digest works with apache2.
2249
2250 2004-02-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2251
2252         * DigestClient.cs: removed Console.
2253         * HttpWebRequest.cs: 401/407 were hanging for GET. Fixed.
2254
2255 2004-02-24  Sebastien Pouliot  <sebastien@ximian.com>
2256
2257         * DigestClient.cs: Fixed issue with Apache server which do not use "
2258         for specifying the digest algorithm (.e.g. algorithm=MD5 not ="MD5").
2259
2260 2004-02-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2261
2262         * HttpWebRequest.cs: arghhh. I used the server response headers instead
2263         of what the client is supposed to send. Thanks to Helge Hess.
2264
2265 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2266
2267         * AuthenticationManager.cs: implemented PreAuthenticate().
2268
2269         * HttpWebRequest.cs: once we know the version of the server, use it if
2270         below the requested one. Remove 'Expect', 'Content-Length' and /or 
2271         'Transfer-Encoding' if appropiate due to changes in version. Fixed 
2272         'Host' header for non-standard ports. Support preauthentication. Closes
2273         bug #50530.
2274
2275 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2276
2277         * HttpWebRequest.cs: check for missing or wrong URI in Location header
2278         when redirecting.
2279
2280         * WebConnection.cs: if the data read does not contain all the headers,
2281         keep it around and read the rest until we get to the response body.
2282         Allow response code with no description. Fixed bug #54543.
2283
2284 2004-02-18  Sebastien Pouliot  <sebastien@ximian.com>
2285
2286         * SecurityProtocolType.cs: Added missing [Serializable] to enum. Added 
2287         Default and Ssl2 to NET_2_0 profile. Enum is now internal for NET_1_0
2288         profile (as we need it for SslClientStream).
2289         * ServicePoint.cs: Added internal SetCertificates(client,server).
2290         * ServicePointManager.cs: Added CheckCertificateRevocationList and
2291         CheckCertificateRevocationList static properties (public in 1.1, 
2292         internal for 1.0).
2293         * WebConnection.cs: Dynamically creates a SslClientStream (from 
2294         Mono.Security assembly) in case of https. Changed NetworkStream to 
2295         Stream everywhere.
2296
2297 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2298
2299         * HttpWebRequest.cs: send the 'Connection: keep-alive' header when we
2300         don't know the server version or it's 1.0.
2301
2302         * ServicePoint.cs: added SetVersion.
2303
2304         * WebAsyncResult.cs: remove ChunkAsyncResult.
2305
2306         * WebConnection.cs: set the ServicePoint version when getting a response
2307         from the server.
2308
2309         * WebConnectionStream.cs: when posting chunked content, send the head,
2310         body and trailer of the chunk at once instead of doing 3 separate
2311         writes, which may cause troubles.
2312
2313 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2314
2315         * WebConnection.cs: if we get a 100 when we're not waiting for it, set
2316         that information in the ServicePoint.
2317
2318         * WebConnectionStream.cs: send headers in the right order for
2319         non-chunked POST.
2320
2321 2004-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2322
2323         * WebConnectionStream.cs: fixed nullrefs in BeginWrite/EndWrite.
2324
2325 2004-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2326
2327         * HttpWebRequest.cs: on second and sucesive tries when authenticating,
2328         don't use chunked encoding for POST, as we know the content length and
2329         have the body. Nullify bodyBuffer always in CheckFinalStatus.
2330
2331         * WebAsyncResult.cs: added ChunkAsyncResult property. It holds the
2332         IAsyncResult when writing CRLF at the end of a chunk.
2333
2334         * WebConnectionStream.cs: support sending chunked data.
2335
2336 2004-01-24  Lluis Sanchez Gual <lluis@ximian.com>
2337
2338         * HttpWebRequest.cs: When retrying a POST request after an
2339         authentication failure, resend the body. This fixes bug #51841.
2340         * WebConnectionStream.cs: Added properties for getting what's been
2341         written.
2342
2343 2004-02-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2344
2345         * HttpWebRequest.cs: don't send 'Expect: 100-continue' for 1.0 version.
2346
2347 2004-02-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2348
2349         * HttpWebRequest.cs: support proxy authentication.
2350
2351 2004-02-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2352
2353         * BasicClient.cs:
2354         * DigestClient.cs: use IndexOf instead of StartsWith to deal with
2355         servers that provide several authentication schemas.
2356
2357 2004-02-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2358
2359         * ChunkStream.cs: use an array of buffers instead of a MemoryStream for
2360         storing the chunks. This way, we won't miss traling data from the
2361         previous chunk when a new one is received before the other is fully
2362         read.
2363
2364 2004-01-27  Nick Drochak <ndrochak@ieee.org>
2365
2366         * DigestClient.cs:
2367         * HttpWebRequest.cs:
2368         * IPv6Address.cs:
2369         * WebClient.cs:
2370         * WebConnection.cs:
2371         * WebConnectionStream.cs: Remove unused variables thus eliminating some
2372         build warnings.
2373
2374 2004-01-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2375
2376         * WebConnection.cs: patch by Yaacov Akiba Slama that fixes 100-continue
2377         handling for the case when the same packet also contains the actual
2378         [2-5]xx response.
2379
2380 2004-01-24  Lluis Sanchez Gual <lluis@ximian.com>
2381
2382         * HttpWebRequest.cs: Added missing property.
2383
2384 2004-01-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2385
2386         * Dns.cs: don't block forever in EndResolve and EndGetHostByName. Fixes
2387         bug #53222.
2388
2389 2004-01-16  Lluis Sanchez Gual <lluis@ximian.com>
2390
2391         * ChunkStream.cs: The "size" parameter of Write is not the number of
2392         bytes to write, but the last offset to be written. Thus, in WriteAndRead
2393         Back, since "read" is not an offset but the number of bytes, it must be 
2394         added to the offset. Maybe it would be a good idea to change the name of
2395         the parameter, since it is confusing. This should fix bug #52591.
2396
2397 2004-01-12  Lluis Sanchez Gual <lluis@ximian.com>
2398
2399         * WebConnection.cs: Yet another fix for WebConnection. This fixes 
2400         bug #52169.
2401
2402 2004-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2403
2404         * WebConnection.cs: Data.Init is a bad boy. Lluis realized. He also
2405         tidied up the end of ReadDone. Disabled relaunching the request if 2
2406         InitRead are called, since now we don't throw everything into
2407         RegisterWaitForSingleObject but one request at a time.
2408
2409         * WebConnectionGroup.cs: when checking available connections, allow them
2410         not to be Connected but allocated to honor the connection limit.
2411         
2412         * WebConnectionStream.cs: CheckComplete() now checks for nextReadCalled
2413         too. ReadAll don't mess contentLength if it's provided in the headers.
2414
2415         BIG thanks to Lluis. Turns out that we were debugging the same stuff and
2416         his Data.Init discovery was THE thing I was missing.
2417
2418         Fixes bug #51277.
2419
2420 2004-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2421
2422         * ServicePointManager.cs: use GetMaxConnections to get the appropiate
2423         number of connections limit.
2424
2425 2004-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2426
2427         * MonoHttpDate.cs: use the invariant culture, not en-US. Suspected
2428         guilty for bug 52629.
2429
2430 2003-12-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2431
2432         * CredentialCache.cs: return null instead of throwing NotImplemented.
2433
2434 2003-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2435
2436         * HttpWebRequest.cs: fixed checking if method allows a body. Patch by
2437         Benjamin Jemlich (pcgod@gmx.net).
2438
2439 2003-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2440
2441         * HttpWebRequest.cs: deal with authentication schemes that have more
2442         than 1 round trip (Ntlm).
2443
2444 2003-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2445
2446         * NtlmClient.cs: new class that actually uses one from Mono.Http to do
2447         the authentication.
2448
2449 2003-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2450
2451         * HttpWebRequest.cs: when building the redirect URI, use the previous
2452         one as the base URI, which makes relative URIs work.
2453
2454 2003-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2455
2456         * DigestClient.cs: merged in code from Sebastien Pouliot and Greg
2457         Reinacker that Supports cnonce and preauthentication.
2458
2459 2003-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2460
2461         * DigestClient.cs: initial Digest authentication. Works with apache
2462         mod_digest.
2463
2464 2003-11-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2465
2466         * HttpWebRequest.cs: removed unneeded StringBuilder.
2467         * WebConnection.cs: default to keep the connection open for HTTP/1.1
2468         only or HTTP/1.0 + (Proxy-)Connection header. Fixes bug #51208.
2469
2470 2003-11-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2471
2472         * WebConnection.cs: turns out that socket.Connected is not useful until
2473         we actually try to send/receive data, even if the other end has already
2474         closed the socket. Added TryReconnect() and Connected.
2475
2476         * WebConnectionData.cs: default value for StatusCode is 0 now.
2477
2478         * WebConnectionGroup.cs: reuse the connection since the beginning,
2479         instead of opening up to ConnectionLimit and then reusing.
2480
2481         * WebConnectionStream.cs: reopen the socket if we're trying to reuse
2482         one which fails on first write.
2483
2484 2003-11-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2485
2486         * WebConnectionStream.cs: when a callback is passed to BeginRead/Write,
2487         wrap it and do our job before calling it. Fixes bug #48497.
2488
2489 2003-11-12  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
2490
2491         * WebExceptionStatus.cs: Restyled, Added .Net 1.1 members
2492         * SecurityProtocolType.cs: Added and implemented
2493
2494 2003-11-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2495
2496         * HttpWebRequest.cs: fixed redirects when they target another host.
2497
2498 2003-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2499
2500         * IPAddress.cs: prevent exceptions when trying to parse the static IPv6
2501         addresses.
2502
2503 2003-10-17  Pedro Martinez Julia  <yoros@wanadoo.es>
2504
2505         * WebClient.cs: use Path.DirectorySeparator instead of "/" for
2506         windows compatibility. Add some checks for file paths like
2507         "C:/xxx/yyy/..." and like "/home/xxx/...".
2508
2509 2003-10-16  Pedro Martinez Julia  <yoros@wanadoo.es>
2510
2511         * WebClient.cs: added a slash between directory and file names.
2512
2513 2003-10-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2514
2515         * HttpWebRequest.cs:
2516         * HttpWebResponse.cs: better abort handling and leave the stream in a
2517         stable status on abort.
2518
2519 2003-10-12  Pedro Martinez Julia  <yoros@wanadoo.es>
2520
2521         * WebClient.cs: refine reading of local files (like MS.NET).
2522
2523 2003-10-10  Pedro Martinez Julia  <yoros@wanadoo.es>
2524
2525         * WebClient.cs: MS.NET works right when we try OpenRead("file.txt")
2526         but we didn't. Now, when Uri fails with an exception, it adds
2527         "file://" before the URI and tries again.
2528
2529 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2530
2531         * ServicePoint.cs: preparing for recycling. Not yet finished.
2532         * ServicePointManager.cs: this is the one that reads config.
2533         * WebConnectionGroup.cs: don't read config here.
2534         * WebConnection.cs: added the queue again. Launch queued requests on
2535         error.
2536
2537 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2538
2539         * WebConnection.cs: the queue is now handled by the threadpool.
2540         Initialize the connection data in a place where it does not depend on
2541         the execution order of the requests in threadpool. More error handling.
2542
2543         * WebConnectionGroup.cs: use the limits in the config file and reuse
2544         connections when the limit is reached.
2545
2546 2003-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2547
2548         * HttpWebRequest.cs: handle 304 a la MS.
2549         * WebConnection.cs: set the response data when reading 0 bytes.
2550
2551 2003-09-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2552
2553         * WebConnectionStream.cs: fix by Lluis to avoid the stream being in an
2554         invalid state.
2555
2556 2003-08-14  Nick Drochak <ndrochak@gol.com>
2557
2558         * WebRequest.cs: Check lower case string since that is what we will add.
2559
2560 2003-08-04  Jerome Laban <jlaban@wanadoo.fr>
2561
2562         * IPHostEntry.cs: Default contructor must not initialize members.
2563         (Fixes bug #45575).
2564
2565 2003-07-27  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
2566
2567         * CredentialCache.cs: Removed undefined serializable attribute
2568
2569 2003-07-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2570
2571         * ChunkStream.cs:
2572         (WantMore): true if we've not received the last chunk yet. Fixes
2573         bug #45463. Thanks to Miguel for tracking this down and providing a
2574         test case.
2575         
2576         * WebConnection.cs: removed bogus ^M's.
2577         
2578         * WebHeaderCollection.cs: provide more info when the header or value is
2579         wrong.
2580
2581 2003-07-15  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
2582
2583         * ChunkStream.cs: Removed unused members
2584         * IPAddress.cs: Removed unused exception variable, fixes compiler
2585         warning.
2586         * WebConnection.cs: Removed unused exception variables, fixes compiler
2587         warnings.
2588
2589 2003-07-14  Lluis Sanchez Gual <lluis@ximian.com>
2590
2591         * NetConfig.cs: If Clone method is not public, then it must use
2592           explicit interface method implementation syntax.
2593
2594 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
2595
2596         * Dns.cs: Reworked indentation.
2597         Added IPv6 support.
2598         Added literal address checking in GetHostByAddress.
2599         Changed Dns.Resolve behavior.
2600         * IPAddress.cs:
2601         * IPEndPoint.cs: Added IPv6 support.
2602         * IPv6Address.cs: Added address compression.
2603         * NetConfig.cs: Added configuration section.    
2604
2605 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
2606
2607         * ServicePoint.cs: Removed Connect and GetEndPoint methods.
2608         Removed reverse resolution when uri is literal IP address. 
2609         * WebConnection.cs: IPv6 compatibility update: Try to connect
2610         to all addresses returned by IPHostEntry.
2611         * WebConnectionGroup.cs: Removed unused parameter. 
2612
2613 2003-07-13  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
2614
2615         * WebProxy.cs: Add serialization/ deserialization support
2616
2617 2003-07-10  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
2618
2619         * ProxyUseType.cs:
2620         * WebStatus.cs: Deleted (do not exist in this assembly)
2621         * IPv6Address.cs: Made internal
2622
2623 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2624
2625         * HttpWebRequest.cs:
2626         * ServicePointManager.cs:
2627         * WebConnection.cs: added support for proxies.
2628
2629 2003-07-05  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
2630
2631         * DnsPermissionAttribute.cs:
2632         * SocketPermissionAttribute.cs: Fixed wrong AttributeUsageAttribute
2633
2634 2003-07-05  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
2635
2636         * WebPermission.cs: Added and partially implemented
2637         * WebPermissionAttribute.cs: Added and implemented
2638
2639 2003-07-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2640
2641         * WebClient.cs: fixed bug #45651.
2642
2643 2003-06-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2644
2645         * WebClient.cs: Small fix by Sebastian <scut@nb.in-berlin.de>.
2646
2647 2003-06-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2648
2649         * WebConnection.cs: fixed header writing the reusing a connection and
2650         the server does not send 100-continue response.
2651
2652 2003-06-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2653
2654         * WebConnection.cs: close the socket and connection when disposing.
2655         * WebRequest.cs: removed setter for RequestUri. Allow non-public ctors
2656         when creating instances.
2657
2658         * HttpWebRequest.cs:
2659         * HttpWebResponse.cs:
2660         * FileWebRequest.cs: support serialization.
2661
2662         * FileWebResponse.cs: support serialization and fixed dispose checks.
2663
2664         * FileWebRequestCreator.cs:
2665         * HttpRequestCreator.cs: added internal .ctor.
2666
2667 2003-06-24  Lluis Sanchez Gual <lluis@ximian.com>
2668
2669         * HttpWebRequest.cs: SetWriteStream(): SendRequestHeaders should be
2670         called before asyncWrite.SetCompleted, to make sure that the waiting
2671         thread does not start to send more information before
2672         SendRequestHeaders has finished.
2673
2674 2003-06-22  Lluis Sanchez Gual <lluis@ximian.com>
2675
2676         * WebConnectionStream.cs: Only increment pendingReads if an asynchronous
2677         read is really needed.
2678
2679 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2680
2681         * WebHeaderCollection.cs: prevent duplication headers used niternally.
2682
2683 2003-06-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2684
2685         * HttpWebRequest.cs: if CookieContainer has not been set, make
2686         HttpWebResponse ignore Set-Cookie* headers.
2687
2688         * HttpWebResponse.cs: Set-Cookie and Set-Cookie headers removed if
2689         CookieContainer have been provided to the request.
2690
2691 2003-06-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2692
2693         * AuthenticationManager.cs: get the list of authentication modules from
2694         the configuration files. Added Clear and fixed Unregister.
2695
2696         * BasicClient.cs: fully implemented.
2697
2698         * HttpWebRequest.cs: added support for Basic authentication when
2699         credentials are set.
2700
2701         * NetworkCredential.cs: fixed GetCredential.
2702
2703 2003-06-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2704
2705         * HttpWebRequest.cs: *really* take care of requestSent to prevent
2706         sending the same request twice.
2707         * WebAsyncResult.cs: don't close the handle. Just Reset.
2708         * WebConnectionStream.cs: removed unneeded line.
2709
2710 2003-06-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2711
2712         * HttpWebRequest.cs: use InternalClose when we are not going to send the
2713         rest of the request stream because of an error after sending the
2714         headers.
2715
2716         * WebConnection.cs: check for completion after setting the response.
2717         Enable reading in NextRead.
2718
2719         * WebConnectionStream.cs: re-fixed the count for partially buffered
2720         reads. If the network stream returns 0 bytes, we're done.
2721
2722 2003-06-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2723
2724         * WebClient.cs: implemented UploadFile. Fixed SetupRequest to set the
2725         special headers *after* the others.
2726
2727 2003-06-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2728
2729         * WebConnectionStream.cs: when the read is partially filled from the
2730         initial buffer, add those bytes too. Thanks to Lluis for debugging this.
2731
2732 2003-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2733
2734         * HttpWebRequest.cs: added ExpectContinue property.
2735         * WebConnection.cs: allow 100 Continue to be delayed after waiting for
2736         it.
2737
2738 2003-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2739
2740         * HttpWebRequest.cs: don't send "Expect: 100-continue" is the server
2741         is known not to respond to that.
2742
2743         * ServicePoint.cs: added SendContinue property.
2744
2745         * WebConnection.cs: only wait 2 seconds for a continue reply. If it
2746         timeouts, set SendContinue to false and proceeed sending data.
2747
2748         * WebConnectionStream.cs: if 100-continue is not received and instead we
2749         get a 417 or anything else, don't send the data.
2750
2751         * WebClient.cs: implemented all missing properties and methods except
2752         UploadFile.
2753
2754 2003-06-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2755
2756         * FileWebRequestCreator.cs: splitted from WebRequest.
2757         * HttpRequestCreator.cs: splitted fromWebRequest.
2758         * WebRequest.cs: added methods that are used by the new configuration
2759         handler to set prefix/type name requests creators.
2760
2761 2003-06-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2762
2763         * AuthenticationManager.cs:
2764         * Authorization.cs:
2765         * BasicClient.cs: new file.
2766         * ChunkStream.cs: new file.
2767         * Cookie.cs:
2768         * CookieContainer.cs:
2769         * GlobalProxySelection.cs:
2770         * HttpWebRequest.cs:
2771         * HttpWebResponse.cs:
2772         * IAuthenticationModule.cs:
2773         * ServicePoint.cs:
2774         * ServicePointManager.cs:
2775         * WebAsyncResult.cs: new file.
2776         * WebConnection.cs: new file.
2777         * WebConnectionData.cs: new file.
2778         * WebConnectionGroup.cs: new file.
2779         * WebConnectionStream.cs: new file.
2780         * WebException.cs:
2781         * WebHeaderCollection.cs:
2782         * WebProxy.cs:
2783         * WebResponse.cs:
2784
2785         Reworked HttpWebRequest and related classes.
2786
2787 2003-05-30  Miguel de Icaza  <miguel@ximian.com>
2788
2789         * HttpWebRequest.cs (EndGetResponse): Do not throw exceptions on
2790         InternalServerError (500)
2791
2792 2003-05-29  Miguel de Icaza  <miguel@ximian.com>
2793
2794         * HttpWebRequest.cs (Close): Move the code that accumulates the
2795         output to Close from Flush.  Flush could have been called in the
2796         middle of the processing, and would have generated invalid results
2797         (which it did).
2798
2799 2003-05-23  Zoltan Varga  <vargaz@freemail.hu>
2800
2801         * Dns.cs (GetHostByAddress): Return the local host when called with
2802         IF_ANY.
2803
2804 2003-04-29  Miguel de Icaza  <miguel@ximian.com>
2805
2806         * WebClient.cs (DownloadData): Close the underlyng stream.
2807         (DownloadFile): Use using, so the file gets closed.
2808
2809 2003-04-24  Miguel de Icaza  <miguel@ximian.com>
2810
2811         * WebClient.cs (DownloadData): Instead of using a MemoryStream,
2812         keep track of all the small chunks in an ArrayList.  The
2813         MemoryStream had the property of reallocating itself, and the
2814         problem was that MemoryStream.GetBuffer would return the buffer
2815         (correctly), but not something of the right size.  So clients of
2816         DownloadData would get the extra unused bytes as part of the
2817         result.
2818
2819         The solution would have been to make another copy at this point,
2820         instead, we only keep the small allocations around in the
2821         ArrayList, and we only do one large allocation at the end.
2822
2823         * HttpWebResponse.cs: If there is a Content-Length header, pass
2824         this information to our HttpWebResponseStream, so it knows when to
2825         stop, instead of waiting for the stream to be shut down by the
2826         other end.
2827
2828         * HttpWebRequest.cs: Only set the `delay-header-writing' mode on
2829         the underlying stream if the method will do a content transfer and
2830         no Content-Length was provided. If not (HEAD and GET or
2831         Content-Length provided), keep going.
2832         
2833 2003-04-23  Miguel de Icaza  <miguel@ximian.com>
2834
2835         * HttpWebRequest.cs: .NET Allows the HttpWebRequest to not have
2836         the ContentLength specified on the request.  If that happens, we
2837         have to accumulate all the data written, and once we accumulate
2838         the data, we send it off.  
2839
2840         Notice that the documentation in .NET is actually incorrect, they
2841         state that setting ContentLength is mandatory.  It is not.
2842
2843 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2844
2845         * HttpWebResponse.cs: fixes bug #41180.
2846
2847 2003-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2848
2849         * HttpWebRequest.cs: throw an exception is the response code is >= 300.
2850
2851 2003-03-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2852
2853         * HttpWebRequest.cs: implemented IDisposable, make the request stream
2854         read only. Changed the way of disposing the socket.
2855
2856         * HttpWebResponse.cs: wrapped the socket in a write-only NetworkStream,
2857         handle chunked transfer encoding (no more hangs), added serialization
2858         stuff, call CheckDisposed at the beginning of methods/properties (not
2859         in a finally clause).
2860
2861 2003-02-17  Nick Drochak <ndrochak@gol.com>
2862
2863         * WebClient.cs : Implemented Credentials property.
2864
2865 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2866
2867         * SocketAddress.cs: byte 1 of the data is the high byte of the family,
2868         not the size.
2869
2870 2003-01-29  Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
2871
2872         * WebClient.cs : hacked OpenRead, DownloadData and DownloadFile.
2873
2874 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2875
2876         * HttpWebRequest.cs: applied patch from Tim Haynes
2877         (thaynes@openlinksw.com).
2878
2879         Avoided double-sending of the request to the server when both
2880         GetRequestStream() and GetResponse() are called.
2881         System Header attributes survive the Headers attribute set.
2882         Added handling of Connection: KeepAlive/Close
2883
2884 2002-10-03  Dick Porter  <dick@ximian.com>
2885
2886         * Dns.cs: Fixed GetHostName()
2887
2888 2002-09-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2889
2890         * HttpWebRequest.cs:
2891         * HttpWebResponse.cs: applied another patch from Shahms E. King
2892         (shahms@shahms.com).
2893
2894 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2895
2896         * HttpWebRequest.cs:
2897         * HttpWebResponse.cs: applied patch from Shahms E. King
2898         (shahms@shahms.com).
2899
2900 2002-05-29  Lawrence Pit <loz@cable.a2000.nl>
2901
2902         * MonoHttpDate.cs: added
2903         * HttpWebRequest.cs: using MonoHttpDate
2904         * HttpWebResponse.cs: using MonoHttpDate
2905         * DnsPermission.cs: correct XML output
2906         * SocketPermission.cs: correct XML output
2907
2908 2002-05-21  Lawrence Pit <loz@cable.a2000.nl>
2909
2910         * WebClient.cs: stubbed
2911         * WebProxy.cs: fixed bug; had to change internal representation
2912         of bypasslist to ArrayList, different implementation of checking
2913         regex's.
2914
2915 2002-05-20  Lawrence Pit <loz@cable.a2000.nl>
2916
2917         * WebProxy.cs: added, implemented
2918         * ServicePoint.cs: implemented most
2919         * ServicePointManager.cs: implemented
2920         * HttpWebRequest.cs: started implementation
2921         * HttpWebResponse.cs: improved disposable routines
2922         * FileWebRequest.cs: slight improvement of Close method
2923         
2924 2002-05-19  Lawrence Pit <loz@cable.a2000.nl>
2925
2926         * FileWebRequest.cs: finished implementation of async methods.
2927         * FileWebResponse.cs: improved disposable routines.
2928         * IPEndPoint.cs: fixed bug #24666 in Serialize and Create methods, 
2929         byte ordering of address was backwards.
2930
2931 2002-05-13  Lawrence Pit <loz@cable.a2000.nl>
2932
2933         * Dns.cs: Reimplemented (simplified and fixed) asynchronous methods by
2934         relying on standard asynchronous delegate features. Added checks for
2935         null strings.
2936         * HttpWebResponse.cs: implemented properties
2937         * FileWebResponse.cs: improved the way resources are disposed.
2938         * FileWebRequest.cs: started implementation of asynchronous methods
2939         * ServicePointManager.cs: implemented properties
2940
2941 2002-05-12  Lawrence Pit <loz@cable.a2000.nl>
2942
2943         * HttpWebRequest.cs: properties implemented
2944         * HttpWebResponse.cs: added
2945         * GlobalProxySelection.cs: implemented
2946         * FileWebResponse.cs: added
2947         * FileWebRequest.cs: some methods implemented
2948
2949 2002-05-11  Lawrence Pit <loz@cable.a2000.nl>
2950
2951         * WebHeaderCollection.cs: implemented
2952         * WebRequest.cs: implemented
2953         * FileWebRequest.cs and HttpWebRequest.cs stubs added
2954
2955 2002-05-09  Lawrence Pit <loz@cable.a2000.nl>
2956
2957         * Rewrote IPAddress.Parse method, passing all unit tests
2958
2959 2002-05-09  Lawrence Pit <loz@cable.a2000.nl>
2960
2961         * fixed bug in IPEndPoint.Equals method
2962         * fixed bug in IPAddress.Parse method
2963         * fixed bug in IPAddress.SwapLong method
2964         * fixed several bugs in Cookie.cs
2965
2966 2002-05-06  Lawrence Pit <loz@cable.a2000.nl>
2967
2968         * WebRequest.cs: added
2969         * WebResponse.cs: implemented
2970         * WebException.cs: implemented
2971         * WebHeaderCollection.cs: added
2972         * HttpVersion.cs: implemented
2973         * HttpContinueDelegate.cs: added
2974         * IWebProxy.cs: added
2975         * IWebRequestCreate.cs: added
2976         * ICertificatePolicy.cs: added
2977         * ServicePoint.cs: stubbed
2978         * ServicePointManager.cs: stubbed
2979         * CookieContainer.cs: added
2980         * Authorization.cs: implemented
2981
2982 2002-05-05  Lawrence Pit <loz@cable.a2000.nl>
2983
2984         * CredentialCache.cs: implemented
2985
2986 2002-05-05  Lawrence Pit <loz@cable.a2000.nl>
2987
2988         * IPAddress.cs: fixed IsLoopback, address was already in host order
2989
2990 2002-05-05  Lawrence Pit <loz@cable.a2000.nl>
2991
2992         * IPv6Address.cs: added (note: not part of .net spec)
2993
2994 2002-05-01  Lawrence Pit <loz@cable.a2000.nl>
2995
2996         * DnsPermission.cs: implemented
2997         * DnsPermissionAttribute.cs: implemented
2998
2999 2002-04-28  Lawrence Pit <loz@cable.a2000.nl>
3000
3001         * EndpointPermission.cs: implemented
3002         * SocketPermission.cs: implemented
3003         * SocketPermissionAttribute.cs: implemented
3004         * ProtocolViolationException.cs: implemented
3005         * Dns.c: passing w32 error code when no host found
3006
3007 2002-04-27  Lawrence Pit <loz@cable.a2000.nl>
3008
3009         * Cookie.cs: implemented
3010         * CookieCollection.cs: implemented
3011         * CookieException.cs: implemented
3012
3013 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3014
3015         * IPAddress.cs: initialize the read only fields with Parse().
3016
3017 2002-04-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3018
3019         * IPAddress.cs: little changes to behave as MS.
3020
3021 2002-04-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3022
3023         * Dns.cs (Resolve): behave as MS. Agreed with Mads.
3024
3025 2002-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3026
3027         * IPAddress.cs: the icalls for sockets are endianness-aware. So I
3028         changed a few things. Also included a workaround for bug #23547.
3029
3030 2002-04-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3031
3032         * IPAddress.cs: use System.BitConverter.IsLittleEndian (suggested
3033         by Paolo) instead of guessing the endianness.
3034
3035         * SocketAddress.cs: implemented Equals() and GetHashcode().
3036         
3037 2002-04-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3038
3039         * IPEndPoint.cs: modifications to constructors according to the
3040         specifications (suggested by Lawrence Pit).
3041
3042 2002-04-15  Patrik Torstensson <patrik.torstensson@labs2.com>
3043
3044         * IPEndPoint.cs: Fixed build breaker.
3045
3046 2002-04-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3047
3048         * IPEndPoint.cs: implemented Equals() and GetHashCode(). Now 100%
3049         complete.
3050
3051 2002-04-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3052
3053         * IPAddress.cs: finished all MonoTODO's. Use network order to store 
3054         the address. Check for max and min values in Address:set. IsLoopback()
3055         returns now true for all 127.x.y.z. Some more checks in Parse ().
3056         Some changes to behave as MS does.
3057
3058 2002-02-24  Duncan Mak  <duncan@ximian.com>
3059
3060         * ICredentialLookup.cs: Added the GetCredential method to the
3061         interface. The interface is named "ICredentials", should this file
3062         be renamed?     
3063
3064         * NetworkCredential.cs: Added to CVS. Need to investigate on how
3065         GetCredential() works
3066
3067 2002-01-23  Dick Porter  <dick@ximian.com>
3068
3069         * SocketAddress.cs: Implemented.
3070
3071         * IPEndPoint.cs: Turned 'Address' field into a real property.
3072         Implemented Create() and Serialize() methods.
3073
3074         * IPAddress.cs: Fixed class constructor, turned 'Address' field
3075         into a real property. Removed undocumented "public
3076         IPAddress(string)" constructor.
3077
3078         * EndPoint.cs: Implemented.  All methods return
3079         NotSupportedException to enforce subclass overriding.
3080
3081         * Dns.cs: Replaced fixed-layout Hostent struct and cygwin
3082         P/Invokes with portable internal calls.
3083
3084 2002-01-17  Miguel de Icaza  <miguel@ximian.com>
3085
3086         * Dns.cs: Updated to API changes.
3087
3088         * IPAddress.cs: Updated API.  Much left to implement.
3089
3090         * Dns.cs: Remove IPToString method
3091
3092 2002-01-06  Ravi Pratap  <ravi@ximian.com>
3093
3094         * Dns.cs, AuthenticationManager.cs, SocketAddress.cs : MonoTODO
3095         attribute insertion.
3096
3097 2001-11-22  Nick Drochak <ndrochak@gol.com>
3098
3099         * IPAddress.cs: Fix constructor bug, properly name Address property,
3100         and use triple-slash for comments.
3101
3102 2001-11-20  Miguel de Icaza  <miguel@ximian.com>
3103
3104         * IPAddress.cs: Updated to contain Any, Broadcast, Loopback and
3105         None as suggested by Phillip.
3106
3107 2001-09-26  Mads Pultz <mpultz@get2net.dk>
3108         * Dns.cs: Initial work on BeginGetHostByName and EndGetHostByName implemented.
3109
3110 2001-09-24  Mads Pultz <mpultz@get2net.dk>
3111
3112         * Dns.cs: Minor changes (some print statements removed)
3113
3114 2001-09-23  Mads Pultz <mpultz@get2net.dk>
3115
3116         * Dns.cs: Initial work submitted to repository.
3117         * IPHostEntry.cs: Initial work submitted to repository.
3118
3119 2001-07-12  Sean MacIsaac  <macisaac@ximian.com>
3120
3121         * Authorization.cs: Fixed compiler error.
3122
3123         * IAuthenticationModule.cs: Changes for Beta2.
3124
3125         * IPAddress.cs: Internal storage changed to be uint not int.
3126
3127         * IPEndPoint.cs: Fixed compiler error.
3128
3129         * EndPoint.cs: Fixed compiler error.
3130
3131         * AuthenticationManager.cs: Fixed typo.