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