2010-06-21 Marek Habersack <mhabersack@novell.com>
[mcs.git] / class / System / System.Net / ChangeLog
blob82d78eadcf410d0bdeba786dc3462a9b6503c098
1 2010-06-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
3         * HttpWebRequest.cs: DELETE allows an entity body.
4         Fixes bug #614483.
6 2010-06-15 Gonzalo Paniagua Javier <gonzalo@novell.com>
8         * HttpWebRequest.cs: 307 does not change request method.
10 2010-06-11 Jonathan Chambers  <joncham@gmail.com>
12         * HttpListenerRequest.cs: Assign default value to variable before using.
14 2010-05-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
16         * FtpDataStream.cs:
17         * FtpWebRequest.cs: properly close the data connection even when
18         nothing is read from it. Refixes bug #598908.
20 2010-04-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
22         * FtpDataStream.cs:
23         * FtpWebRequest.cs: use streams instead of sockets as soon as
24         possible. Correctly initialize the control connection when SSL
25         is used and protect the data connection by default.
26         Fixes bug #598908.
28 2010-04-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
30         * ChunkStream.cs: ignore chunk extensions when reading the chunk
31         size. Fixes bug #597556.
33 2010-04-15 Gonzalo Paniagua Javier <gonzalo@novell.com>
35         * HttpWebRequest.cs: set content length to -1 on redirect. Reset
36         'FinishedReading' on redirects. Fixes bug #593596.
38 2010-04-08 Gonzalo Paniagua Javier <gonzalo@novell.com>
40         * ServicePointManager.cs: obtain the SubjectAltName extension the
41         right way. Fixes bug #594110.
43 2010-03-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
45         * HttpWebRequest.cs: when PreAuthenticate is true, don't remove the
46         existing authorization related headers until we know we have a
47         replacement. Fixes bug #591633.
49 2010-03-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
51         * ServicePointManager.cs: errors parsing the certificate don't prevent
52         calling the callback now. Exceptions thrown parsing the certificate
53         are printed to stderr in case they are library errors.
55 2010-03-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
57         * WebClient.cs: fix handling of query string, whether it comes from
58         the address used or is part of the QueryString.
60 2010-03-20  Miguel de Icaza  <miguel@novell.com>
62         * WebConnection.cs: Drop pre-2.0 and pre-1.1 support, and remove
63         warnings. 
65         * WebClient.cs: Drop the pre-2.0 support
67 2010-03-19  Sebastien Pouliot  <sebastien@ximian.com>
69         * AuthenticationManager.cs: Internal type for Moonlight.
70         Add BasicClient, DigestClient, NtlmClient for NET_2_1 since
71         this applies to both monotouch and moonlight (client stack).
72         Removed unneeded NET_2_0 defines
73         * CookieContainer.cs: For Moonlight it needs to be internal in 
74         System.dll and public in System.Net.dll. Removed unneeded NET_2_0
75         defines
76         * HttpContinueDelegate.cs: Internal type for Moonlight.
77         * HttpRequestCreator.cs: Remove a MOONLIGHT define
78         * HttpStatusCode.cs: For Moonlight it needs to be internal in 
79         System.dll and public in System.Net.dll
80         * HttpWebRequest.cs: Internal type for Moonlight. Change S.Config
81         to NET_2_1 defines (applies to both monotouch and moonlight).
82         Removed unneeded NET_2_0 and NET_1_1 defines
83         * HttpWebResponse.cs: Internal type for Moonlight. Removed 
84         unneeded NET_2_0 defines
85         * IAuthenticationModule.cs: Internal type for Moonlight.
86         * ICertificatePolicy.cs: Internal type for Moonlight.
87         * ICredentialPolicy.cs: Internal type for Moonlight. Removed 
88         unneeded NET_2_0 defines
89         * IWebRequestCreate.cs: For Moonlight it needs to be internal in 
90         System.dll and public in System.Net.dll
91         * ServicePoint.cs: Internal type for Moonlight. Change S.Config
92         to NET_2_1 defines (applies to both monotouch and moonlight)
93         * ServicePointManager.cs: Remove a MOONLIGHT define
94         * WebException.cs: For Moonlight it needs to be internal in 
95         System.dll and public in System.Net.dll. Removed unneeded NET_2_0
96         defines
97         * WebHeaderCollection.cs: Internal type for Moonlight. Removed 
98         unneeded NET_2_0 defines
99         * WebRequest.cs: Internal type for Moonlight. Change S.Config
100         to NET_2_1 defines (applies to both monotouch and moonlight)
101         * WebResponse.cs: Internal type for Moonlight. Removed unneeded
102         NET_2_0 defines
104 2010-03-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
106         * FtpWebResponse.cs:
107         * FtpWebRequest.cs: for non-data operations, make sure we send the
108         QUIT command upon completion when KeepAlive is false.
109         Fixes bug #589305.
111 2010-03-16  Jb Evain  <jbevain@novell.com>
113         * Dns.cs, HttpRequestCreator.cs, ServicePoint.cs: use MOONLIGHT
114         symbol to disambiguate MonoTouch and Moonlight code.
116 2010-03-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
118         * ServicePointManager.cs: perform the entire chain validation here.
120 2010-03-09 Gonzalo Paniagua Javier <gonzalo@novell.com>
122         * HttpConnection.cs: set the right position when a CR is found.
123         Fixes bug #577891.
125 2010-03-09 Gonzalo Paniagua Javier <gonzalo@novell.com>
127         * HttpListener.cs:
128         * HttpListenerRequest.cs:
129         * ListenerAsyncResult.cs:
130         * HttpConnection.cs: make sure there is no pending input when reusing
131         the connection.
133 2010-03-08 Gonzalo Paniagua Javier <gonzalo@novell.com>
135         * HttpListenerContext.cs: split the auth header in 2 parts.
136         * HttpListener.cs: backported SelectAuthenticationScheme and
137         added new InternalEndGetContext used for connections that require
138         authentication.
139         * ListenerAsyncResult.cs: allow this object to be just a forwarder
140         when nesting connections for authentication purposes.
141         Fixes bug #585455.
143 2010-03-06 Gonzalo Paniagua Javier <gonzalo@novell.com>
145         * WebClient.cs: fix for UploadStringAsync(). Closes bug #577818.
146         Patch by Atsushi.
148 2010-03-04  Atsushi Enomoto  <atsushi@ximian.com>
150         * HttpListenerContext.cs : WWW-Authenticate header should not be
151           limited to Basic.
153 2010-03-04  Atsushi Enomoto  <atsushi@ximian.com>
155         * HttpListenerContext.cs : The header line here is already trimmed
156           "Authorization:" , so do not try to remove it.
158 2010-03-04  Atsushi Enomoto  <atsushi@ximian.com>
160         * HttpListener.cs, ListenerAsyncResult.cs : fix authentication
161           scheme selection mismatch.
163 2010-03-03  Atsushi Enomoto  <atsushi@ximian.com>
165         * HttpListenerContext.cs, HttpListener.cs :
166           support AuthenticationSchemeSelectorDelegate.
168 2010-03-01  Miguel de Icaza  <miguel@novell.com>
170         * WebHeaderCollection.cs: Apply 2 year old patch from Yves Bastide
171         that fixes the keys casing in the collection; Fixes 325491
173 2010-03-01 Gonzalo Paniagua Javier <gonzalo@novell.com>
175         * WebConnection.cs: attach a validation callback to the new
176         event in Mono.Security.
177         * ServicePointManager.cs: added a new ValidationHelper
178         class that takes care of building the certificate chain and perform
179         all the check that were done in Mono.Security before. This way the 2.0
180         server certificate validation callback can get all the data it needs.
182         Fixes bug #584050.
184 2010-01-29  Mike Kestner <mkestner@novell.com>
186         * HttpUtility.cs: port more of the methods from System.Web file.
187         * WebUtility.cs: new 4.0 class.
189 2010-01-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
191         * IPEndPoint.cs: When throwing an ArgumentException in Create()
192         because of a mismatch in the address family, use a more informative
193         message. Patch by Juho Vaha-Herttu<juhovh@iki.fi>.
194         Fixes #505105.
196 2010-01-21  Sebastien Pouliot  <sebastien@ximian.com>
198         * CookieContainer.cs: Fix to cloning and expiration. Patch
199         by Tom Philpot <tom.philpot@logos.com>
201 2010-01-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
203         * HttpWebRequest.cs: when the server returns several different
204         authentication methods, pick the one that works.
205         Fixes bug #562043.
207 2010-01-12  Sebastien Pouliot  <sebastien@ximian.com>
209         * NetworkCredential.cs: Fix properties to never return null.
211 2009-12-24  Sebastien Pouliot  <sebastien@ximian.com>
213         * Cookie.cs: Re-work ToString to be useable in more cases. Fix
214         some issues found by Gendarme.
215         * CookieContainer.cs: Fix all NonWorking (and new) unit tests.
216         Implement removing oldest cookies when limits are reached.
217         * CookieCollection.cs: Move to generics internally. Fix sort to 
218         be closer to MS implementation (but still not 100% identical).
219         Fix some issues found by Gendarme.
221 2009-12-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
223         * WebConnectionGroup.cs:
224         * ServicePoint.cs: implemented CloseConnectionGroup().
226 2009-12-04  Sebastien Pouliot  <sebastien@ximian.com>
228         * System.Net/DnsEndPoint.cs: Moved from System.Net (where the
229         type resides in Moonlight) so it's available for 4.0
231 2009-11-30  Sebastien Pouliot  <sebastien@ximian.com>
233         * CookieCollection.cs: Seal inner CookieCollectionPathComparer
234         * IPAddress.cs: Avoid multiple casts in Equals
235         * SocketAddress.cs: Avoid multiple casts in Equals
236         [Found using Gendarme]
238 2009-10-23  Alexandre Gomes  <alexmipego@gmail.com>
240         * WebClient.cs: Fixed GetWebRequest overriding problems, bug: 
241           https://bugzilla.novell.com/show_bug.cgi?id=549580
242           
243 2009-10-17 Gonzalo Paniagua Javier <gonzalo@novell.com>
245         * WebConnectionStream.cs: add 3 missing DoCallback() calls in
246         EndRead/EndWrite.
248 2009-09-29 Gonzalo Paniagua Javier <gonzalo@novell.com>
250         * EndPointListener.cs: fix matching a listener in presence of a query
251         string or anchor.
253 2009-09-15 Gonzalo Paniagua Javier <gonzalo@novell.com>
255         * HttpListenerRequest.cs: add the right status code.
256         * HttpConnection.cs: exception might come from more places when
257         reading the input. Catch all of them.
259 2009-09-15 Gonzalo Paniagua Javier <gonzalo@novell.com>
261         * WebRequest.cs: handle upper and lowercase HTTP_PROXY and the Any
262         address. Fixes bug #537283.
264 2009-09-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
266         * WebConnection.cs: if the request has already finished reading, don't
267         throw ObjectDisposedException here, just return as if nothing
268         happened. Fixes bug #312968.
270 2009-08-29 Gonzalo Paniagua Javier <gonzalo@novell.com>
272         * WebConnection.cs: HEAD response does not have a body even if the
273         response is an error. Fixes buf #535102.
275 2009-08-17  Geoff Norton  <gnorton@novell.com>
277         * NtlmClient.cs: Mono.Http does not exist on monotouch
279 2009-08-17  Sebastien Pouliot  <sebastien@ximian.com>
281         * CookieCollection.cs: Seal class for NET_2_1 (SL3)
282         * CookieContainer.cs: Seal class for NET_2_1 (SL3)
283         * NetworkCredential.cs: Use in NET_2_1 (SL3) but without implementing
284         ICredentialsByHost
286 2009-08-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
288         * HttpWebRequest.cs:
289         * WebConnectionStream.cs: if there's an error writing the headers from
290         a buffered request, propagate the error instead of hiding it and
291         causing a different one later (ie, ObjectDisposedException instead of
292         the original WebException). This happened when posting without
293         Content-Length set to an HTTPS url without validating the server
294         certificate.
296 2009-07-28 Gonzalo Paniagua Javier <gonzalo@novell.com>
298         * WebClient.cs: rethrow WebExceptions instead of creating a new one
299         with less information on the actual error.
300         Fixes bug #526069.
302 2009-07-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
304         * WebHeaderCollection.cs: check the validity of the characters in the
305         header names.
307 2009-07-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
309         * WebHeaderCollection.cs: implemente the 2.0 IsRestricted().
311 2009-07-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
313         * WebConnectionStream.cs: when sending a 0-length POST, ignore further
314         writes instead of throwing.
315         Fixes bug #524049.
317 2009-07-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
319         * WebClient.cs: implement GetWebRequest and GetWebResponse. Use them
320         instead of SetupRequest and ProcessResponse.
322 2009-07-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
324         * WebClient.cs: set the content length when uploading values. This
325         allows reusing the connection.
326         * WebConnectionStream.cs: SetHeaders() takes ownership of the buffer
327         and does not need to copy it any more. WriteRequest() wasn't always
328         setting 'requestWritten' to true.
329         * HttpWebRequest.cs: change in SetHeaders call.
331 2009-07-06  Gert Driesen  <drieseng@users.sourceforge.net>
333         * WebConnectionStream.cs: Move and improve argument checks to match MS.
334         Modified CanRead and CanWrite to return false when instance is disposed.
336 2009-07-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
338         * WebConnection.cs: provide better error message when there's an error
339         writing.
340         * WebConnectionStream.cs: don't nullify the buffer until
341         CheckFinalStatus() decides that there are no more authentication
342         retries or redirects.
344 2009-07-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
346         * ServicePointManager.cs: implement ServerCertificateValidationCallback.
347         * DefaultCertificatePolicy.cs: if there's a SCVC registered, don't do
348         normal error checking.a
350 2009-07-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
352         * HttpWebRequest.cs: avoid duplicating Accept-Encoding if GetHeaders()
353         is called twice.
354         * WebConnectionStream.cs: don't send a 0 content length for non-write
355         requests.
357 2009-07-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
359         * WebConnection.cs: must use the 'int' version in 1.1.
361 2009-07-01 Gonzalo Paniagua Javier <gonzalo@novell.com>
363         * WebConnection.cs:
364         * ServicePoint.cs: UseNagleAlgorithm determines NoDelay value.
366 2009-06-28 Gonzalo Paniagua Javier <gonzalo@novell.com>
368         * HttpWebRequest.cs: fix 1.1 only test.
370 2009-06-28 Gonzalo Paniagua Javier <gonzalo@novell.com>
372         * WebConnectionStream.cs: when buffering the response, we have to set
373         the internal length and regenerate the headers.
375 2009-06-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
377         * HttpWebRequest.cs: don't send Content-Length header when SendChunked
378         is enabled.
379         * WebConnectionStream.cs: send the headers immediately when possible.
380         When writing the request before a Close(), if there was an exception
381         it was lost.
383 2009-06-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
385         * HttpConnection.cs:
386         * HttpListenerResponse.cs: force closing the socket when the response
387         is aborted.
389 2009-06-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
391         * WebAsyncResult.cs: new field that tells us if the request is being
392         written automatically because we reached the content length.
393         * WebConnection.cs:
394         * WebConnectionStream.cs: make sure we only access the NetworkStream
395         while we own it. Automatically write the request when we reach
396         ContentLength number of bytes. Kill the write buffer as soon as
397         possible. Don't use the buffer at all when chunked encoding is
398         enabled.
400         Fixes bugs #515931 and #510642.
402 2009-06-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
404         * WebConnection.cs: 'socket' and 'Data' where being changed by 2
405         threads at the same time when there were queued requests and the
406         current one was aborted in Connect().
407         * HttpWebRequest.cs: 'aborted' is now an int and we use Interlocked to
408         access it. Added WebConnection field used when aborting the request.
410         Fixes bug #514591 for good.
412 2009-06-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
414         * HttpWebRequest.cs: check for an aborted request in Begin* before
415         proceeding. Fixes bug #511851.
417 2009-06-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
419         * WebConnectionStream.cs: close the underlying socket if there's an
420         exception when closing the stream. Fixes bug #514996.
422 2009-06-20  Gert Driesen  <drieseng@users.sourceforge.net>
424         * WebConnectionStream.cs: Keep count of all bytes written, and perform
425         write overflow check in both buffered and non-buffered writing (if
426         not using chunked transfer encoding). Fixes bug #510642.
428 2009-06-20  Gert Driesen  <drieseng@users.sourceforge.net>
430         * WebClient.cs: Use lowercase hex bytes to match MS. Avoid using
431         zero-length string literal. Fixed exception argument name to match
432         MS. 
433         * WebConnectionStream.cs: Throw a WebException that wraps an
434         IOException when closing the stream before all bytes are written.
436 2009-06-19 Gonzalo Paniagua Javier <gonzalo@novell.com>
438         * WebConnection.cs: make sure we don't open a new socket if the
439         request is aborted before we establish the connection. Fixes bug
440         #514591.
442         * HttpWebRequest.cs: new property to return abort status. Invoke the
443         abort handler before doing anything else when Abort() is called for
444         the first time.
446 2009-06-17 Gonzalo Paniagua Javier <gonzalo@novell.com>
448         * EndPointListener.cs: call CheckIfRemove() after removing a regular
449         prefix. Fixes bug #513849.
450         * EndPointManager.cs: make sure we use the right lock when one prefix
451         of a collection fails to be added and we need to remove all of the
452         prefixes.
453         Clear the ip_to_endpoints hashtable if there are no more prefixes
454         listening on that address.
456 2009-06-16 Andres G. Aragoneses <aaragoneses@novell.com>
458         * WebConnection.cs: propagate the exception to the request.
459         * WebException.cs: new internal ctor.
460         * HttpWebRequest.cs: use new ctor to encapsulate the innerException.
461         Fixes #323452.
463 2009-06-15 Gonzalo Paniagua Javier <gonzalo@novell.com>
465         * HttpWebRequest.cs: for unknown methods, always send the request once
466         we are connected even if there's no writeStream. Fixes bug #513087.
468 2009-06-09 Gonzalo Paniagua Javier <gonzalo@novell.com>
470         * HttpWebRequest.cs: ProtocolViolationException is not thrown in
471         certain cases since 2.0. Fixes bug #508027.
473 2009-06-09 Gonzalo Paniagua Javier <gonzalo@novell.com>
475         * HttpWebRequest.cs: follow MS docs when throwing
476         ProtocolViolationException at the beginning of an asynchronous
477         operation. Fixes bug #465613.
479 2009-06-08 Gonzalo Paniagua Javier <gonzalo@novell.com>
481         * WebConnectionStream.cs: throw a WebException instead of an IOException.
483 2009-06-08 Gonzalo Paniagua Javier <gonzalo@novell.com>
485         * FtpWebRequest.cs: avoid exception when the reply from the server
486         contains just response code. Fixes bug #510852.
488 2009-06-05  Sebastien Pouliot  <sebastien@ximian.com> 
490         * DownloadStringCompletedEventArgs.cs: Call RaiseExceptionIfNecessary
491         * OpenReadCompletedEventArgs.cs: Remove Address property since it's 
492         not part of SL2. Call RaiseExceptionIfNecessary
493         * OpenWriteCompletedEventArgs.cs: Call RaiseExceptionIfNecessary
494         * UploadStringCompletedEventArgs.cs: Call RaiseExceptionIfNecessary
496 2009-06-05  Robert Jordan  <robertj@gmx.net>
498         * WebClient.cs (UploadValuesCore): Encode POST arguments with UTF-8.
499         Fixes bug #484795.
501 2009-06-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
503         * HttpWebRequest.cs: KeepAlive check not needed.
504         Fixes bug #465613.
506 2009-06-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
508         * HttpConnection.cs: unbind the context after every read for keep-alive
509         connections.
510         Bug #502274 fixed.
512 2009-05-17  Gert Driesen  <drieseng@users.sourceforge.net>
514         * CookieContainer.cs: Provide meaningful information in exception
515         messages, and improve compatibility with MS. Modified set_Capacity to
516         no longer change MaxCookieSize when new value is less than
517         MaxCookieSize.
519 2009-05-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
521         * HttpWebResponse.cs:
522         * HttpWebRequest.cs: support automatic decompression of the response.
523         Fixes bug #504391.
526 2009-05-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
528         * Dns.cs: made GetHostAddresses and friends internal for 1.x
529         * EndpointPermission.cs: use GetHostAddresses.
531 2009-05-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
533         * CookieContainer.cs: matching hosts to domain names like MS does.
534         Bug #421827 fixed.
536 2009-05-02  Atsushi Enomoto  <atsushi@ximian.com>
538         * CredentialCache.cs : implement all not-implemented methods.
539           Patch by Mineda Nozomi. Close bug #499556.
541 2009-04-21  Sebastien Pouliot  <sebastien@ximian.com>
543         * EndPoint.cs: Throw NotImplementedException instead of 
544         NotSupportedException
545         * IPEndPoint.cs: Fix some validations.
547 2009-04-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
549         * WebConnection.cs:
550         * HttpWebRequest.cs: provide more information on why the connection
551         could not be established.
553 2009-04-06 Gonzalo Paniagua Javier <gonzalo@novell.com>
555         * FtpWebRequest.cs: send REST after PASV to avoid some servers
556         forgetting aboout it.
557         Bug #491590 fixed.
559 2009-03-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
561         * FtpWebRequest.cs: we were sending CWD instead of PWD.
562         Bug #486703 fixed.
564 2009-03-03 Gonzalo Paniagua Javier <gonzalo@novell.com>
566         * IPAddress.cs: don't allocate the IPv6 array for IPv4 addresses.
568 2009-02-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
570         * WebClient.cs: append the QueryString in DownloadData.
571         Fixes bug #323788.
573 2009-02-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
575         * FtpWebResponse.cs: return a Null stream when there's no response to
576         be read.
577         * FtpWebRequest.cs: provide the error returned by the server in the
578         exception.
579         * WebClient.cs: set the correct method when doing a FTP upload.
580         Fixes bug #478451.
582 2009-02-19 Gonzalo Paniagua Javier <gonzalo@novell.com>
584         * FtpWebRequest.cs: avoid errors when creating a temporary Uri to get
585         the local path.
586         * WebClient.cs: when setting up the request for downloading, use the
587         default method. Fixes bug #477611.
589 2009-02-16  Atsushi Enomoto  <atsushi@ximian.com>
591         * WebConnectionStream.cs : use request only after it is set.
593 2009-02-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
595         * WebConnectionStream.cs: implemente (Read|Write)Timeout.
596         Fixes bug #348159.
598 2009-02-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
600         * CookieContainer.cs: separate cookies with "; " instead of just ';'.
601         Fixes bug #386727.
603 2009-02-08 Gonzalo Paniagua Javier <gonzalo@novell.com>
605         * HttpWebRequest.cs: lock SetResponseError.
607 2009-02-08  Gert Driesen  <drieseng@users.sourceforge.net>
609         * Dns.cs: BeginGetHostAddresses - renamed argument to match MS,
610         reject "any" IP addresses. BeginGetHostEntry - renamed argument
611         to match MS, reject "any" IP addresses. GetHostEntry - reject
612         "any" IP addresses. GetHostAddresses - reject "any" IP addresses.
613         GetHostByName - use "hostName" as paramname in ANE.
615 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
617         * Dns.cs: empty string for host (also 0.0.0.0) is just passed to the
618         runtime, which will then retrieve the local IP addresses. Fixes bug
619         #386637 part 2/2.
621 2009-02-06 Gonzalo Paniagua Javier <gonzalo@novell.com>
623         * FtpWebRequest.cs: some servers have a comment after the directory
624         name. Fixes bugs #471149 and #471216.
626 2009-02-06 Gonzalo Paniagua Javier <gonzalo@novell.com>
628         * WebConnectionStream.cs: set the content length to 0 when the
629         response is not supposed to have any content.
631 2009-02-05  Miguel de Icaza  <miguel@novell.com>
633         * WebConnectionStream.cs: Prevent a nullref here.   This might
634         have to be backported to 2.2 and 2.4
636 2009-02-03 Gonzalo Paniagua Javier <gonzalo@novell.com>
638         * WebConnection.cs:
639         * HttpWebRequest.cs: calling Abort is safe now if the request has been
640         read entirely.
642 2009-02-03 Gonzalo Paniagua Javier <gonzalo@novell.com>
644         * WebProxy.cs: use TryParse when checking for a localhost IP.
646 2009-01-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
648         * HttpWebResponse.cs: avoid throwing an exception when
649         Content-Length is not present.
651 2009-01-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
653         * HttpWebRequest.cs: added locking in SetResponseData for the case
654         when we get an error response before BeginGetResponse has been
655         called.
657 2009-01-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
659         * IPAddress.cs: handle sign extension for the high byte when using the
660         byte[] ctor for an IPv4 address.
661         Fixes bug #467472.
663 2009-01-19  Marek Habersack  <mhabersack@novell.com>
665         * HttpWebRequest.cs: implemented the UseDefaultCredentials
666         property, patch from Florian Maetschke <f.maetschke@tu-bs.de>,
667         thanks!
669 2009-01-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
671         * FtpWebRequest.cs: adjust to the correct directory when listing too.
672         Fixes bug #466530.
674 2009-01-15 Gonzalo Paniagua Javier <gonzalo@novell.com>
676         * HttpListenerRequest.cs: always initialize 'version'.
677         * HttpConnection.cs: the socket might already be disconnected when
678         shutting down.
680 2009-01-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
682         * WebConnectionStream.cs: if the buffer has been killed, return -1 for
683         its length. Fixes regression in System.Runtime.Remoting.
685 2009-01-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
687         * HttpWebRequest.cs: create a result from the response when
688         *GetResponse() has not been called yet and we have already received
689         all the data.
690         Fixes bug #464013.
692 2009-01-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
694         * HttpWebRequest.cs: keepAlive is of no use here.
695         Fixes bug #465613.
697 2009-01-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
699         * HttpConnection.cs: we were not writing the headers for 0-length
700         responses.
701         * WebConnectionStream.cs: for 204/304 responses with an explicit
702         content-length of 0, release the socket only once.
703         Fixes bug #465638.
705 2009-01-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
707         * FtpWebRequest.cs: now deleting a file works when we're not in the
708         root directory.
710 2008-12-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
712         * IPAddress.cs: avoid throwing when parsing a subnet.
714 2008-11-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
716         * HttpConnection.cs: remove CWL. When reusing, BeginReadRequest might
717         throw if the client closes.
718         * HttpListenerResponse.cs: close the connection for 1.0 clients.
720 2008-11-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
722         * FtpDataStream.cs: use the socket for reading until the end of a
723         stream that wasn't read entirely. Remove unused ManualResetEvent.
724         * FtpWebRequest.cs: set the file_name when downloading. Update the
725         response status after every SendCommand. Send a "OPTS utf8 on" as MS
726         does (the control cnc reader should do something with UTF8)
728 2008-11-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
730         * WebRequest.cs: if the cache level is NoCacheNoStore, don't throw
731         when setting the CachePolicy.
733 2008-11-03 Gonzalo Paniagua Javier <gonzalo@novell.com>
735         * FtpWebRequest.cs: take the server current directory into account
736         when uploading files. Set the data connection type before every
737         transmission.
738         Bug 333985 fixed.
740 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
742         * FtpWebRequest.cs: disable keep-alive connections as the current code 
743         does not deal with keep-alive connections.
744         Workaround for bug #380262.
746 2008-10-30 Gonzalo Paniagua Javier <gonzalo@novell.com>
748         * WebConnectionStream.cs: when there's a NTLM authentication in
749         progress, don't let the connection be used by the next request if we
750         have the entire response in the input buffer.
752 2008-10-30 Gonzalo Paniagua Javier <gonzalo@novell.com>
754         * HttpListenerResponse.cs: removed obsolete comment.
755         * ResponseStream.cs: don't read response.SendChunked until after
756         getting the response headers.
758 2008-10-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
760         * ServicePointManager.cs: set the default limit of connections from
761         the configuration file(s) on startup.
762         Bug #339422 fixed.
764 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
766         * HttpWebRequest.cs: don't call ProxyRequest twice.
767         * WebConnectionData.cs: remove unused fields.
769         * WebConnection.cs:
770         * WebConnectionStream.cs: when setting the input buffer, check to see
771         if the entire response is already there and free up the request slot.
772         Fixes bug #423156.
774         * ResponseStream.cs:
775         * HttpListenerResponse.cs: buffer the headers so that they are sent
776         together with the data on the first Write (if any). The fix above
777         didn't work with our HttpListener without this.
779 2008-10-08 Gonzalo Paniagua Javier <gonzalo@novell.com>
781         * WebConnection.cs:
782         * ServicePoint.cs:
783         * WebConnectionGroup.cs:
784         * HttpWebRequest.cs:
785         * WebConnectionStream.cs: reuse the same connection when doing NTLM
786         authentication. Fixes bug #323375.
787         Implemented support for UnsafeAuthenticatedConnectionSharing.
789 2008-10-08 Gonzalo Paniagua Javier <gonzalo@novell.com>
791         * HttpConnection.cs:
792         * HttpListenerResponse.cs: fix typo that caused the "connection close"
793         header to be sent. Do not close the socket when the encoding is not
794         chunked and reuse is possible.
795         Fixes bug #433371.
797 2008-10-08 Gonzalo Paniagua Javier <gonzalo@novell.com>
799         * HttpWebRequest.cs: if GetRequestStream has already been called,
800         return the same stream that we returned in the first call.
801         Fixes bug #429200.
803 2008-10-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
805         * ServicePointManager.cs: better handling of possible collisions of the
806         hash for schema/host/port. Fixes bug #417891.
808 2008-10-06 Gonzalo Paniagua Javier <gonzalo@novell.com>
810         * ChunkStream.cs: (ReadTrailer) make sure the array access is not out
811         of bounds. Fixes bug #322715.
813 2008-09-19 Gonzalo Paniagua Javier <gonzalo.mono@gmail.com>
815         * WebConnectionStream.cs: when receiving a 0 content-length, free up
816         the slot for the next request immediately.
817         Fixes bug #427974.
819 2008-09-16  Miguel de Icaza  <miguel@novell.com>
821         * IPv6Address.cs: On the 2.0 profile, avoid throwing/catching
822         exceptions inside TryParse.
824 2008-09-12  Miguel de Icaza  <miguel@novell.com>
826         * HttpListenerPrefixCollection.cs, EndPointListener.cs,
827         HttpListener.cs, EndPointManager.cs, HttpConnection.cs: Remove
828         generics support where necessary to allow this code to be reused
829         in the 1.0 profile.
831 2008-09-08  Miguel de Icaza  <miguel@novell.com>
833         * EndPointListener.cs (SearchListener): Cope with the raw_url not
834         being merely a path, but potentially a full URI (see the proxy
835         case). 
837         * HttpListenerRequest.cs: Cope with raw_url not being merely a
838         path, but potentially a full Uri.   Also uses TryCreate, hoping
839         that one day it will be faster.
841 2008-08-23  Zoltan Varga  <vargaz@gmail.com>
843         * WebConnectionStream.cs (WriteRequest): Fix the copying in the
844         previous patch, when bytes.Length != length.
846 2008-08-22  Zoltan Varga  <vargaz@gmail.com>
848         * WebConnectionStream.cs (WriteRequest): For small requests,
849         cluster together the header + body in a single write call, avoids
850         the latency problems observed in an TLS application that makes
851         many web service calls. 
853 2008-08-22  Geoff Norton  <gnorton@novell.com>
855         * WebConnection.cs: Set NoDelay
857 2008-08-21  Stephane Delcroix  <sdelcroix@novell.com>
859         * OpenReadCompletedEventArgs.cs: new Address property for 2.1
861 2008-08-06  Miguel de Icaza  <miguel@novell.com>
863         * IPAddress.cs (ParseIPV6): Use an exception-less parser for ipv6
864         addresses.
866         * IPv6Address.cs: Rewrite most of the parsing code to not use that
867         incredibly fragile, hacky and hacky implementation.
869         (TryParse): Provide a exception-less parsing path.
871 2008-07-25  Gert Driesen  <drieseng@users.sourceforge.net>μ
873 2008-08-06  Atsushi Enomoto  <atsushi@ximian.com>
875         * IPAddress.cs : several IPv4 parsing fix exposed by bug #411920.
877 2008-08-05  Atsushi Enomoto  <atsushi@ximian.com>
879         * WebClient.cs : it should not invoke delegate directly, but should
880           call overridable OnDownloadProgressChanged.
882 2008-07-25  Gert Driesen  <drieseng@users.sourceforge.net>μ
884         * HttpWebResponse.cs: Initialize contentLength in ctor, as it must
885         remain accessible after the response is disposed (and the headers are
886         no longer available). Adding missing disposed checks in properties
887         (except for StatusCode) and GetResponseHeader. On the 2.0 profile,
888         headers must remain accessible after the HttpWebResponse is disposed.
890 2008-06-10  Stephane Delcroix  <sdelcroix@novell.com>
892         * IPAddress.cs: allow usage on 2.1 as smcs knows nothing about
893         string.GetEnumerator : IEnumerable<char>
895 2008-06-08  Miguel de Icaza  <miguel@novell.com>
897         * ResponseStream.cs: Do not Close the HttpResponse object here as
898         it is possible to issue multiple OutputStream.Close calls (they
899         actually happen implicitly through things like StreamWriter.Close,
900         and they are in various MSDN samples).
902 2008-05-28 Gonzalo Paniagua Javier <gonzalo.mono@gmail.com>
904         * CookieContainer.cs: apply slightly modified patch from rulatir@wp.pl
905         that fixes bug #356537.
907 2008-04-30  Miguel de Icaza  <miguel@novell.com>
909         * WebPermission.cs (ToXml): To allow code that uses WebPermission
910         to be built. 
912 2008-04-21 Gonzalo Paniagua Javier <gonzalo.mono@gmail.com>
914         * HttpWebResponse.cs: do not check the disposed status for properties
915         and methods that return response data other than the stream itself.
916         Fixes bug #381223.
918 2008-04-16  Marek Habersack  <mhabersack@novell.com>
920         * HttpWebRequest.cs: fix an off-by-one bug - the number of
921         redirects must not exceed the value of
922         MaximumAutomaticRedirections. Fixes bug #380131
924 2008-04-13  Jb Evain  <jbevain@novell.com>
926         * *_2_1.cs: move the specific 2.1 System.Net code to the
927         assembly System.Net.
929 2008-04-13  Jb Evain  <jbevain@novell.com>
931         * WebRequest_2_1.cs, WebResponse_2_1.cs: new files
932         * HttpWebRequest_2_1.cs, HttpWebResponse_2_1, WebHeaderCollection_2_1:
933         update to Silverlight 2.0b1 API.
934         Merged from the Moonlight 2 branch.
936 2008-04-06  <gnorton@novell.com>
938         * ListenerAsyncContext.cs: Fix Basic authentication support.  Patch from 
939         Maciej Paszta <paszczi@go2.pl>
941 2008-02-21  Zoltan Varga  <vargaz@gmail.com>
943         * HttpConnection.cs (Close): Close the socket even if Shutdown throws an exception.
945 2008-02-17  Daniel Nauck  <dna@mono-project.de>
947         * HttpWebResponse.cs: refactored cookie expires parsing to
948         allow all common expires datetime formats.
950 2008-02-09  Daniel Nauck  <dna@mono-project.de>
952         * HttpWebResponse.cs: convert UTC/GMT Expires DateTime from a cookie
953         into local time, also set the HttpOnly property if available.
955 2008-02-09  Daniel Nauck  <dna@mono-project.de>
957         * Cookie.cs: implemented HttpOnly
959 2008-01-27  Gert Driesen  <drieseng@users.sourceforge.net>
961         * IPAddress.cs (Parse): Changed argument name to match MS.
962         (TryParse): Changed argument name to match MS.
963         (ParseIPV4): Only treat zero-length or " " address as empty on 1.0
964         profile. On 2.0 profile, only ignore characters after blank if last
965         part is valid hex string.
966         * IPv6Address.cs: Removed extra spaces and tabs.
968 2008-01-26  Daniel Nauck  <dna@mono-project.de>
970         * HttpWebRequest.cs: fixed typo. Use the actual uri for correct
971         cookie header informations and not the originally one.
973 2008-01-26  Daniel Nauck  <dna@mono-project.de>
975         * Cookie.cs: set Version to '1' if Port is set,
976         don't include path and domain informations when version is 0,
977         match ToString () output with .NET 2.0,
978         fixes bug #316017
980 2008-01-15  Atsushi Enomoto  <atsushi@ximian.com>
982         * MonoHttpDate.cs : Parse() should return Local time. Fixed bug
983           #353495.
985 2008-01-12  Gert Driesen  <drieseng@users.sourceforge.net>
987         * WebClient.cs: Do not add trailing CRLF in UploadValuesCore. Fixes
988         standalone test for bug #351049.
990 2008-01-07  Sebastien Pouliot  <sebastien@ximian.com>
992         * CredentialCache.cs: Gendarme's AvoidToStringOnStringsRule in
993         CredentialCacheKey constructor. UseStringEmptyRule on CredentialCache
994         static ctor (3 times).
996 2007-12-27  Miguel de Icaza  <miguel@novell.com>
998         * WebClient.cs: We catch exceptions that happen on the helper
999         async threads toa void terminating the application on errors, and
1000         also raise a variant of the OnXXXXCompleted methods that take an
1001         Exception argument.
1003         Note that this differs from the .NET implementation in that
1004         we actually raise a signal on error, and set the exception, and in
1005         their case no error is ever raised.
1007         We now call CompleteAsync in the OnXXXCompleted handlers to ensure
1008         that the WebClient can be reused immediately by the callback.
1010         This fixes #350621.
1012         This also should fix the bug report on IRC where someone
1013         complained that they could not "chain" invocations to XXXAsync
1014         methods from the OnXXXXCompleted handlers due to the WebClient
1015         refusing to work if there was an ongoing operation
1017 2007-12-24  Miguel de Icaza  <miguel@novell.com>
1019         * WebClient.cs: Do not validate method to be null, we do not do
1020         that in OpenWrite, the detection is done later on.  
1022         Fixes #350622
1024 2007-12-16  Miguel de Icaza  <miguel@novell.com>
1026         * WebClient.cs: Got the arguments in the wrong order, fix
1028 2007-12-12  Marek Habersack  <mhabersack@novell.com>
1030         * WebClient.cs: DownloadProgressChanged is available only in the
1031         2.0+ profiles.
1033 2007-12-12  Miguel de Icaza  <miguel@novell.com>
1035         * WebClient.cs (DownloadFileCore): use longs for the
1036         ContentLength, although the other code (loading into a byte array,
1037         or a string) still uses ints, the DownloadFileCore should not.
1039 2007-12-11  Miguel de Icaza  <miguel@novell.com>
1041         * WebClient.cs: 
1043         Lots of fixes to get the *Async methods to work.
1044         
1045         * WebClient.cs: async, new boolean flag, used to track whether we
1046         are an async invocation, and if so, we need to invoke some
1047         methods. 
1049         Switch to using System.Threading.Thread instead of the ThreadPool
1050         as there is no way with the ThreadPool to abort threads (to
1051         implemente CancelAsync). 
1053         (CompleteAsync): Helper method used to clear the state after an
1054         async operation completes, otherwise the WebClient can only be
1055         used once. 
1057         (CancelAsync): Use Thread.Interrupt to signal the thread that we
1058         are aborting it (it is a lot milder than Thread.Abort, and we are
1059         in no rush to cancel this anyways); Also the documentation states
1060         that we need to call the WebRequest.Abort method, so we do that in
1061         every Download instance.
1063         (DownloadDataAsync, DownloadFileAsync, DownloadStringAsync,
1064         OpenReadAsync, OpenWriteAsync, UplaodDataAsync, UploadFileAsync,
1065         UploadStringAsync): Make signature parameters match MS; use
1066         threads instead of threadpool (so we can implement CancelAsync),
1067         catch ThreadAbortException here so we can also raise the proper
1068         DownloadDataCompleteEventArgs.
1070         These routines will also call the WebRequest.Abort when
1071         appropriate when ThreadInterrupted is used.
1072         
1073         (ReadAll): Raise DownloadProgressChanged events.
1074         
1075 2007-12-03  Gert Driesen  <drieseng@users.sourceforge.net>
1077         * WebClient.cs: Modified argument checks to match MS, and wrap
1078         exceptions in a WebException. Fixes bug #343064.
1080 2007-12-03  Miguel de Icaza  <miguel@novell.com>
1082         * FtpWebRequest.cs: Applied patch from Jerome Haltom that fixes
1083         multi-line responses (after my fix).
1085         Closes #333978
1087 2007-11-16  Marek Habersack  <mhabersack@novell.com>
1089         * HttpWebRequest.cs: when folding a request into a GET one, set
1090         content length to 0 and kill the buffers. Fixes bug #327314. Patch
1091         from Geoff Norton <gnorton@novell.com>, thanks!
1093 2007-11-13  Atsushi Enomoto  <atsushi@ximian.com>
1095         * WebRequest.cs : added missing ImpersonationLevel (NIE).
1096         * SecurityProtocolType.cs : not [Serializable] in 2.0.
1097         * ServicePoint.cs : no GetHashCode() in 2.0.
1098         * WebRequestMethods.cs : fixed wrong STOU.
1099         * FileWebResponse.cs : no Dispose(true) in 2.0 API.
1101 2007-11-08  Jb Evain  <jbevain@novell.com>
1103         * WebHeaderCollection_2_1.cs: add a custom WebHeaderCollection
1104         for the 2.1 profile.
1106 2007-11-07  Geoff Norton  <gnorton@novell.com>
1108         * ListenerAsyncResult.cs: Only send the 401 header if our authentication
1109         type is Basic or Negotiate (which we default to basic) because that is
1110         all we support.  Set the WWW-Authenticate header when we return a 401 
1111         result.  Send the correct state object in the async result.
1113 2007-11-06  Geoff Norton  <gnorton@novell.com>
1115         * ListenerAsyncResult.cs: If the HttpListener has an authentication
1116         scheme, the user should be presented with a 401 without calling the 
1117         callback.
1119 2007-11-04  Miguel de Icaza  <miguel@novell.com>
1121         * FtpWebRequest.cs (GetResponseStatus): Fix this routine
1122         propertly, refactor, and make it follow Mono coding conventions.
1124 2007-10-30  Jerome Haltom  (wasabi@larvalstage.net)
1126         * FtpWebRequest.cs: adds support for ftp multiline results, fixes
1127         #333978
1129 2007-10-27  Miguel de Icaza  <miguel@novell.com>
1131         * HttpListener.cs: Remove more trigger-happy disposed=true from
1132         the code;   We should only dispose when the Dispose method is
1133         actually called.   Not before.  
1135         Fixes #337371
1137         *  HttpListener.cs (Close): Closing does not mean dispose the
1138         object.   This allows Start/Stop/Start to be called as many times
1139         as desired.
1141         Fixes #337368
1143 2007-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
1145         * FtpWebRequest.cs: Added support for DELETE.
1147 2007-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
1149         * WebRequest.cs: Changed serialization ctor to throw NIE on 1.0
1150         profile. Cache default proxy, but still allow it to be explicitly set
1151         to null. Removed commented code.
1153 2007-10-14 Gonzalo Paniagua Javier <gonzalo.mono@gmail.com>
1155         * WebRequest.cs: DefaultWebProxy allows a null value. Fixes bug #323668.
1157 2007-09-30  Gert Driesen  <drieseng@users.sourceforge.net>
1159         * HttpListenerRequest.cs: Do not store 'method' in upper case, but
1160         instead use case-insensitive comparison.
1162 2007-09-30  Gert Driesen  <drieseng@users.sourceforge.net>
1164         * HttpListenerRequest.cs: Removed dead code. USe String.Length to
1165         check for zero-length string. Use instance field for is_chunked, and
1166         also set it for GET/HEAD/DELETE. Fixed HasEntityBody to return true
1167         when Content-Length > 0, or Transfer-Encoding is chunked.
1169 2007-09-28  Marek Habersack  <mhabersack@novell.com>
1171         * HttpListenerRequest.cs: make sure 'method' is always stored in
1172         upper case.
1173         The DELETE method must not error out on missing Content-Length
1174         header (this is the behavior of the MS.NET version of the
1175         class). Fixes bug #323215.
1176         HasEntityBody should return false when method is GET/HEAD,
1177         content_length is less than or equal to zero or the request is
1178         chunked. Fixes bug #325296
1180 2007-08-29  Atsushi Enomoto  <atsushi@ximian.com>
1182         * IPAddress.cs, IPv6Address.cs : (ToString) output ScopeId.
1184 2007-08-09  Atsushi Enomoto  <atsushi@ximian.com>
1186         * HttpWebRequest_2_1.cs, HttpWebResponse_2_1.cs :
1187           added new sources for those classes for 2.1 (in 2.1 they are
1188           almost abstract, while in 2.0 they are concrete).
1189         * HttpRequestCreator.cs, ServicePoint.cs :
1190           #ifdef 2.0 dependencies out.
1192 2007-06-28  Chris Howie  <cdhowie@nerdshack.com>
1194         * ServicePoint.cs: Implemented BindIPEndPointDelegate.
1195         * FtpWebRequest.cs: Respect ServicePoint.BindIPEndPointDelegate.
1196         * WebConnection.cs: Respect ServicePoint.BindIPEndPointDelegate.
1198 2007-08-08  Jb Evain  <jbevain@novell.com>
1200         * HttpWebRequest.cs: .ctor(Uri) is public in 2.1.
1202 2007-08-03  Jb Evain  <jbevain@novell.com>
1204         * Dns.cs: remove async methods for the 2.1 profile.
1206 2007-07-17  Rodrigo Kumpera  <rkumpera@novell.com>
1208         * HttpListenerRequest.cs: Support for Cookie decoding.
1209         * HttpListenerResponse.cs: Support for encoding cookies on the response sent to the client
1210         * Cookie.cs: new internal method to encode the Cookie in a proper form to sent to clients
1212 2007-07-14 Gonzalo Paniagua Javier <gonzalo.mono@gmail.com>
1214         * WebConnectionStream.cs: implement the CanTimeout for 2.0. Fixes
1215         bug #81504.
1217 2007-07-12  Geoff Norton  <gnorton@customerdna.com>
1219         * HttpListenerContext.cs: 
1220         * HttpListener.cs: Handle HttpListener AuthenticationSchemes
1221         Only Basic authentication is included for now.
1223 2007-06-30  Gert Driesen  <drieseng@users.sourceforge.net>
1225         * NetworkAccess.cs: Only mark as flags enum on 2.0.
1227 2007-06-21  Dick Porter  <dick@ximian.com>
1229         * AuthenticationManager.cs: 
1230         * FtpWebRequest.cs: 
1231         * Cookie.cs: 
1232         * ServicePoint.cs: 
1233         * WebClient.cs: 
1234         * Authorization.cs: 
1235         * FileWebRequest.cs: 
1236         * HttpWebRequest.cs: 
1237         * WebResponse.cs: 
1238         * ServicePointManager.cs: 
1239         * HttpWebResponse.cs: Throw NotImplementedException indirectly, to
1240         reduce noise in Moma reports.
1242 2007-06-20  Atsushi Enomoto  <atsushi@ximian.com>
1244         * ServicePointManager.cs : (bootstrap) build fix.
1246 2007-06-19  Dick Porter  <dick@ximian.com>
1248         * AuthenticationManager.cs: 
1249         * IWebProxyScript.cs: 
1250         * Authorization.cs: 
1251         * Cookie.cs: 
1252         * CookieException.cs: 
1253         * CredentialCache.cs: 
1254         * FileWebRequest.cs: 
1255         * WebRequest.cs: 
1256         * FileWebResponse.cs: 
1257         * WebResponse.cs: 
1258         * FtpWebRequest.cs: 
1259         * HttpWebRequest.cs: 
1260         * DecompressionMethods.cs: 
1261         * HttpWebResponse.cs: 
1262         * ProtocolViolationException.cs: 
1263         * ServicePoint.cs: 
1264         * ServicePointManager.cs: 
1265         * WebClient.cs: 
1266         * WebException.cs: 
1267         * WebHeaderCollection.cs: 
1268         * WebProxy.cs: 
1269         * WebExceptionStatus.cs: 2.0 profile updates
1271 2007-05-18  Gert Driesen  <drieseng@users.sourceforge.net>
1273         * WebConnectionStream.cs: On read timeout, throw WebException with
1274         status Timeout instead of IOException.
1276 2007-05-16  Adar Wesley <adarw@mainsoft.com>
1278         * CookieCollection.cs: added missing method strongly typed CopyTo.
1280         * CredentialCache.cs: added missing methods Add, Remove, GetCredential
1282         * HttpWebRequest.jvm.cs: added missing ClientCertificates getter.
1284         * ServicePoint.cs: added missing method CloseConnectionGroup.
1286         * WebClient.cs: added missing methods OnDownloadProgressChanged,
1287         OnUploadProgressChanged, GetWebRequest, GetWebResponse
1289         * WebHeaderCollection.cs: added missing methods IsRestricted, Add,
1290         Remove, Set.
1292         * WebProxy.cs: added missing method GetObjectData.
1294 2007-05-15  Marek Habersack  <mhabersack@novell.com>
1296         * HttpWebRequest.cs: fold all methods into GET for
1297         redirect/moves. Fixes bug #81624
1299 2007-05-07  Miguel de Icaza  <miguel@novell.com>
1301         Missing second part of the patch.
1302         
1303         * WebHeaderCollection.cs: To be compatible with older versions of
1304         Mono that might have serialized this in a different format, catch
1305         the potential exception, and try the old name.
1307         This should become a practice whenever we fix serialization in the
1308         future. 
1310         This is for #81467
1312 2007-04-23  Marek Habersack  <mhabersack@novell.com>
1314         * EndPointListener.cs: relax prefix matching to succeed in cases
1315         when the prefix ends with / and the request path does not. Fixes
1316         bug #80091.
1318         * CookieCollection.cs: added a SortByPath method to sort the
1319         collection on demand.
1321         * Cookie.cs: do not return "/" for Path if it wasn't set
1322         explicitly.
1324         * CookieContainer.cs: set cookie path only if its version is
1325         "Netscape" and is null or empty. Fixes #81420.
1326         Sort the collection by the path relevance before returning from
1327         the GetCookies method. Fixes bug #81421.
1329 2007-04-17  Joel Reed  <joelwreed@gmail.com>
1331         * WebHeaderCollection.cs: www-authenticate should be multivalue.
1332         This fixes a bug related to RFC 2608 which says in section
1333         "15.2 Offering a Choice of Authentication Schemes"
1335         An HTTP/1.1 server may return multiple challenges with a 401
1336  (Authenticate) response, and each challenge may use a different
1337         scheme.  The order of the challenges returned to the user agent is in
1338         the order that the server would prefer they be chosen. The server
1339         should order its challenges with the "most secure" authentication
1340         scheme first. A user agent should choose as the challenge to be made
1341         to the user the first one that the user agent understands.
1343         Before this change, mono was choosing whatever was sent last,
1344         which was the most insecure authentication option.
1345         
1346 2007-04-10  Marek Habersack  <mhabersack@novell.com>
1348         * HttpListenerRequest.cs: do not include the query start marker
1349         ('?') in the first variable name stored in the QueryString
1350         collection. There is no HTTP header 'Accept-Types' in the
1351         standard, there's only the 'Accept' header that specifies the
1352         accepted MIME types. Fixes bug #81317
1354 2007-03-25 Alan McGovern <alan.mcgovern@gmail.com>
1356         * IPAddress.cs : Further optimisation for the Swap*** methods.
1358 2007-03-24 Alan McGovern <alan.mcgovern@gmail.com>
1360         * IPAddress.cs : Optimised the SwapInt and SwapLong methods.
1362 2007-03-09  Miguel de Icaza  <miguel@novell.com>
1364         * FtpDataStream.cs: Close must be called on the stream before we
1365         attempt to read a status code from the remote server.
1367         Fixes FTP transfers to complete. 
1369 2007-03-05 Gonzalo Paniagua Javier <gonzalo.mono@gmail.com>
1371         * HttpWebRequest.cs: properly handle OPTIONS, which may or may not
1372         have a request body. Fixes bug #80686.
1374 2007-03-02  Marek Habersack  <mhabersack@novell.com>
1376         * WebClient.cs: Overwrite existing files on download, as
1377         documented and as tested on MS.NET. Fixes Bug#81005
1379 2007-02-24  Gert Driesen  <drieseng@users.sourceforge.net>
1381         * HttpWebRequest.cs: Allow Proxy to be set to null on 2.0 profile.
1383 2007-02-18  Geoff Norton  <gnorton@customerdna.com>
1385         * AuthenticationManager.cs: Register the modules in the 2.0 profile
1386         when we create the ArrayList.
1388 2007-02-01  Gert Driesen  <drieseng@users.sourceforge.net>
1390         * WebProxy.cs: In IsBypassed, move address check back to satify unit
1391         tests.
1393 2007-01-30  Ilya Kharmatsky <ilyak -at- mainsoft.com>
1395         * Dns.cs : implemented proper exception handling under TARGET_JVM
1396         when trying to resolve not existing host.
1398 2007-01-28  Gert Driesen  <drieseng@users.sourceforge.net>
1400         * IPAddress.cs: Provide more meaningful exception message on 2.0
1401         profile.
1403 2007-01-28  Gert Driesen  <drieseng@users.sourceforge.net>
1405         * FileWebRequest.cs: Fixed PreAuthenticate and Proxy properties to
1406         no longer throw NotSupportedException. No longer store ContentLength
1407         in headers. Do not allow null or zero-length method. Allow timeout
1408         to be set to -1 (infine). Only disallow GET, HEAD and CONNECT requests.
1409         Removed workarounds for bug #24943. In (Begin)GetRequest overwrite
1410         file if it already exists. Binary serialization compatibility fixes.
1411         * FileWebResponse.cs: Return application/octet-stream as ContentType.
1413 2007-01-28  Gert Driesen  <drieseng@users.sourceforge.net>
1415         * WebHeaderCollection.cs: Fixed binary serialization compatibility 
1416         with MS.
1418 2007-01-28  Gert Driesen  <drieseng@users.sourceforge.net>
1420         * WebProxy.cs: Lazy init bypassList. Fixes for binary serialization
1421         compatibility. Added stub for UseDefaultCredentials (2.0). On 2.0
1422         profile, throw ArgumentNullException in IsBypassed if host is null.
1424 2007-01-22  Miguel de Icaza  <miguel@novell.com>
1426         * HttpWebRequest.cs: Remove unused variable.
1428         * FtpWebRequest.cs: Remove unused variable.
1430         * WebHeaderCollection.cs: Remove a handful of NotImplementedException's
1432 2007-01-11  Miguel de Icaza  <miguel@novell.com>
1434         * HttpListenerRequest.cs (SetRequestLine): Add validation for the
1435         verbs. 
1437         Allow any verbs to go through, not only
1438         the white list of verbs.
1440         Fixes: 80504
1442 2007-01-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1444         * RequestStream.cs: initialize the stream in both ctors. Fixes a couple
1445         of unit tests.
1447 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
1449         * HttpWebRequest.jvm.cs: Fixed line endings.
1450         * HttpWebResponse.jvm.cs: Same.
1451         * WebException.cs: Same.
1452         * FtpWebRequest.cs: Same.
1453         * VMWHttpProvider.jvm.cs: Same.
1455 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
1457         * DnsPermissionAttribute.cs: Fixed line endings.
1458         * HttpVersion.cs: Same.
1459         * FtpWebResponse.cs: Same.
1460         * HttpContinueDelegate.cs: Same.
1461         * FtpAsyncResult.cs: Same.
1462         * EndpointPermission.cs: Same.
1463         * IPv6Address.cs: Same.
1464         * FtpDataStream.cs: Same.
1465         * SocketPermission.cs: Same.
1466         * FileWebRequest.cs: Same.
1467         * FileWebResponse.cs: Same.
1468         * DnsPermission.cs: Same.
1469         * ProtocolViolationException.cs: Same.
1470         * MonoHttpDate.cs: Same.
1471         * SocketPermissionAttribute.cs: Same.
1472         * CookieException.cs: Same.
1473         * WebResponse.cs: Same.
1474         * DefaultCertificatePolicy.cs: Same.
1476 2006-12-28  Gert Driesen  <drieseng@users.sourceforge.net>
1478         * IPAddress.cs: On 1.1, 4-byte addresses are not supported in the 
1479         ctor. Added null checks for the address passed in the ctors.
1481 2006-12-28  Miguel de Icaza  <miguel@novell.com>
1483         * IPAddress.cs: The condition in 1.1 was broken, it only allowed
1484         16-byte addresses, and never 4-byte addresses (only 2.0 had
1485         them).  
1487         Keep a single code path.
1489         Also, remove all the NET_1_1 defines, we realistically only
1490         distinguish between 1.1 and 2.0, we wont likely support 1.0, 1.1
1491         and 2.0, so remove the 1.0 vs 1.1 conditionals.
1493         Fixes 76792
1494         
1495 〓2006-12-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1497         * WebConnectionStream.cs: fix error in my last patch. Thanks to Felipe
1498         Almeida.
1500 2006-12-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1502         * WebConnection.cs:
1503         * HttpWebRequest.cs:
1504         * WebConnectionStream.cs: detect errors writing headers earlier and
1505         avoid race that showed up with SSL. Fixes bug #80234.
1507 2006-12-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1509         * EndPointListener.cs:
1510         * ListenerPrefix.cs:
1511         * ResponseStream.cs:
1512         * ChunkedInputStream.cs:
1513         * HttpConnection.cs:
1514         * RequestStream.cs: add initial support for HTTPS.
1516 2006-12-18  Atsushi Enomoto  <atsushi@ximian.com>
1518         * FtpStatus.cs : The build gets broken when only-2.0 classes/members
1519           are not excluded in 1.x build.
1521 2006-12-18  David Elkind  <davide@mainsoft.com>
1523         * FtpAsyncResult.cs : FTP request is now working and covers about 100% of .NET API
1524         * FtpDataStream.cs: FTP request is now working and covers about 100% of .NET API
1525         * FtpWebRequest.cs: FTP request is now working and covers about 100% of .NET API
1526         * FtpWebResponse.cs: FTP request is now working and covers about 100% of .NET API
1527         * FtpStatus.cs: added composite status (includes status code and status description)
1529 2006-12-04  Konstantin Triger  <kostat@mainsoft.com>
1531         * WebRequest.cs, WebResponse.cs: TARGET_JVM limitation workaround.
1533 2006-12-04  Konstantin Triger  <kostat@mainsoft.com>
1535         * ServicePointManager.cs: correct assignment typo.
1536         * ServicePoint.cs: Remove unneeded locks for getters, add internal setter.
1538 2006-11-27  Miguel de Icaza  <miguel@novell.com>
1540         * WebRequest.cs: Instead of throwing NotImplemented exceptions,
1541         call GetMustImplement, that way we do not need the whitelist, and
1542         we save a handful of opcodes.
1544 2006-11-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1546         * HttpWebRequest.cs: add 2 more methods that are not supposed to have
1547         a body. Fixes bug #80001.
1549 2006-11-15  Andrew Skiba  <andrews@mainsoft.com>
1551         * WebHeaderCollection.cs: add stubs for new 2.0 properties.
1553 2006-11-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1555         * HttpWebResponse.cs: cookies are actually added to the request
1556         container if any. Fixes bug #79821.
1558 2006-11-02  Michael Hutchinson  <m.j.hutchinson@gmail.com>
1560         * WebRequest.cs: more closely follow MS behaviour: use system settings 
1561           unless told otherwise, and respect app.config.
1563 2006-11-01  Michael Hutchinson  <m.j.hutchinson@gmail.com>
1565         * GlobalProxySelection.cs: Obsolete GlobalProxySelection under 2.0 
1566           profile, and move code to new property WebRequest.DefaultWebProxy.
1567         * WebRequest.cs: Implement new 2.0 property DefaultWebProxy.
1568           Add support for config option UseSystemDefault using simplistic
1569           implementation of new 2.0 method GetSystemWebProxy ().
1571 2006-10-30  Atsushi Enomoto  <atsushi@ximian.com>
1573         * FtpWebRequest.cs : more build fixes.
1575 2006-10-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1577         * EndPointListener.cs: update comment and avoid exception when the
1578         program is exiting.
1580 2006-10-30  Miguel de Icaza  <miguel@novell.com>
1582         * WebRequestMethods.cs: Another typo fix.
1584         * ServicePointManager.cs: Set the default properly.
1586         * SecurityProtocolType.cs: Remove non-existant defines. 
1588 2006-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1590         * HttpWebRequest.cs: internally allow buffer if it's not a known
1591         GET-only method instead of enabling that only for POST/PUT. Fixes bug
1592         #79595.
1594 2006-09-28 Andrew Skiba <andrews@mainsoft.com>
1596         * WebConnection.cs: TARGET_JVM
1598 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1600         * WebException.cs: patch by Andrew Skiba that fixes serialization
1601         compatibility with .NET and the default value for status.
1603 2006-09-28  Andrew Skiba <andrews@mainsoft.com>
1605         * Dns.cs: TARGET_JVM
1607 2006-09-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1609         * CookieContainer.cs: send the cookies from the collection we got for
1610         the given URI, not the whole collection.
1611         * HttpWebResponse.cs: only add the cookies to this instance, not to the
1612         cookie container set in the request.
1614 2006-09-11  Sebastien Pouliot  <sebastien@ximian.com>
1616         * WebConnection.cs: Patch to remove the hack that was required for 
1617         using the older versions of the SSL/TLS classes. This hack is no more
1618         required :-). Patch by Gonzalo Paniagua Javier.
1620 2006-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1622         * HttpConnection.cs: when the content length is available, keep it
1623         updated after synchronous read. Renamed 'available' to 'remaining_body'.
1624         * RequestStream.cs: when creating the stream, pass the remaining length
1625         starting from the offset in the buffer.
1627 2006-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1629         * RequestStream.cs: make sure we return 0 when no more bytes left.
1630         Paticularly, when we have a content length and the whole response is
1631         buffered.
1633 2006-08-20  Miguel de Icaza  <miguel@novell.com>
1635         * RequestStream.cs (Read): A bug fix for #79112 and what I
1636         consider to be an important change.
1638         The bug fix is that we update the "available" variable as soon as
1639         we consume data from Read, this means that a second call into Read
1640         wont block.   Available was only being updated on a secondary code
1641         path, now we alwaysupdate it after using FillFromBuffer.
1643         The second component is what I believe the right behavior should
1644         be.  There was a check for "if count > available" that set count
1645         to available in that case.   The idea was to limit the data read
1646         from the buffer that belonged to this particular request, to allow
1647         pipelining. 
1649         But this test was done after FillFromBuffer, which assumed that
1650         all the data held in the buffer (the one used by FillFromBuffer)
1651         must belong to the this request, and only future data did not.
1653         I think my change is correct, but it assumes that the initialized
1654         RequestStream will be used for other pipelined HTTP requests,
1655         which is not something am 100% sure of, so Gonzalo needs to check
1656         this. 
1658 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1660         * Cookie.cs: avoid nullref in GetHashCode and Equals.
1662 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1664         * CookieCollection.cs:
1665         * CookieContainer.cs: remove expired cookies.
1667 2006-07-07  Atsushi Enomoto  <atsushi@ximian.com>
1669         * Dns.cs : (GetHostEntry) when passed IP addresses, it does not issue
1670           query to DNS. Patch by Petri Latvala.
1672 2006-07-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1674         * CookieContainer.cs: don't send a secure cookie over an insecure
1675         channel.
1677 2006-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1679         * WebProxy.cs: (IsBypassed) 'loopback', 'localhost' and any address
1680         that starts with 127 are special.
1682 2006-05-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1684         * HttpListener.cs: Fixes race condition in BeginGetContext. Patch by
1685         Pawel Sakowski that fixes bug #78365.
1687 2006-05-09  Atsushi Enomoto  <atsushi@ximian.com>
1689         * ServicePointManager.cs : oops, CONFIGURATION_DEP.
1691 2006-05-09  Atsushi Enomoto  <atsushi@ximian.com>
1693         * GlobalProxySelection.cs : if corresponding config section is
1694           DefaultProxySection then use it.
1696 2006-05-09  Atsushi Enomoto  <atsushi@ximian.com>
1698         * WebRequest.cs : if corresponding config section is
1699           WebRequestModulesSection then use it.
1701 2006-05-09  Atsushi Enomoto  <atsushi@ximian.com>
1703         * ServicePointManager.cs : if corresponding config section is
1704           ConnectionManagementSection then use it.
1706 2006-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1708         * ResponseStream.cs:
1709         * HttpListenerResponse.cs: allow 0 length POST. Patch by Horst Reiterer.
1710         Closes bug #78316.
1712 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1714         * CredentialCache.cs: added DefaultNetworkCredentials.
1716 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1718         * NetworkCredential.cs: implement ICredentialsByHost interface.
1720 2006-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1722         * WebConnection.cs: reset the challenge and the status code when
1723         creating the tunnel and sending the proxy auth. headers. Improve error
1724         message when there's an error creating the tunnel.
1725         * HttpWebRequest.cs: don't trigger an early throw for a POST that gets
1726         a 401 or 407 response.
1728 2006-04-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1730         * WebConnectionData.cs:
1731         * WebConnection.cs:
1732         * HttpWebRequest.cs: when tunneling an ssl conneciton through a proxy,
1733         we were not handling a proxy authentication request. Fixes bug #78150
1734         take 2.
1736 2006-04-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1738         * WebProxy.cs: a .ctor was not forwarding the 'credentials' argument.
1739         This fixes bug #78150. Also fix the bypass check for local requests.
1741 2006-04-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1743         * WebProxy.cs: removed bogus ^M.
1745 2006-04-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1747         * HttpWebResponse.cs: don't remove the Set-Cookie headers. Fixes bug
1748         #78028.
1750 2006-04-04  Atsushi Enomoto  <atsushi@ximian.com>
1752         * WebClient.cs : added a bunch of async method support.
1754 2006-04-03  Chris Toshok  <toshok@ximian.com>
1756         * HttpWebResponse.cs (ContentEncoding): return "" if the header
1757         isn't present.
1759 2006-03-30  Atsushi Enomoto  <atsushi@ximian.com>
1761         * DownloadStringCompletedEventHandler.cs : missing delegate.
1763 2006-03-30  Atsushi Enomoto  <atsushi@ximian.com>
1765         * Dns.cs : minor argument renaming.
1767 2006-03-28  Atsushi Enomoto  <atsushi@ximian.com>
1769         * DownloadDataCompletedEventArgs.cs
1770           DownloadDataCompletedEventHandler.cs
1771           DownloadProgressChangedEventArgs.cs
1772           DownloadProgressChangedEventHandler.cs
1773           DownloadStringCompletedEventArgs.cs
1774           OpenReadCompletedEventArgs.cs
1775           OpenReadCompletedEventHandler.cs
1776           OpenWriteCompletedEventArgs.cs
1777           OpenWriteCompletedEventHandler.cs
1778           UploadDataCompletedEventArgs.cs
1779           UploadDataCompletedEventHandler.cs
1780           UploadFileCompletedEventArgs.cs
1781           UploadFileCompletedEventHandler.cs
1782           UploadProgressChangedEventArgs.cs
1783           UploadProgressChangedEventHandler.cs
1784           UploadStringCompletedEventArgs.cs
1785           UploadStringCompletedEventHandler.cs
1786           UploadValuesCompletedEventArgs.cs
1787           UploadValuesCompletedEventHandler.cs : added 2.0 types.
1789 2006-03-28  Atsushi Enomoto  <atsushi@ximian.com>
1791         * Dns.cs : filled missing NET_2_0 members.
1793 2006-03-28  Atsushi Enomoto  <atsushi@ximian.com>
1795         * IPAddress.cs : ugh, I was testing with run-test-ondotnet, not
1796           run-test. Those IPv6 properties needed to be reimplemented.
1798 2006-03-27  Atsushi Enomoto  <atsushi@ximian.com>
1800         * IPAddress.cs : added NET_2_0 TryParse() and IPv6 related properties.
1802 2006-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1804         * WebConnectionStream.cs: avoid Begin/EndWrite when the body length is
1805         zero.
1807 2006-03-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1809         * HttpWebRequest.cs: send the request if ContentLength is set for
1810         POST/PUT, the request stream has that exact amount of bytes in it and
1811         we're trying to get the response stream.
1813         This way, closing the request stream is not needed in order to actually
1814         send the request. Fixes bug #77753.
1816         * WebConnectionStream.cs: throw if the number of bytes written is
1817         greater than the specified request content length.
1819 2006-03-11  Miguel de Icaza  <miguel@novell.com>
1821         * WebClient.cs: Only expose the right methods to avoid warnings. 
1823         * FtpDataStream.cs (Dispose): Fix signature.
1825         * FtpWebResponse.cs: Comment out keepAlive field (unused, sounds
1826         like we are missing features here).
1828         * IPAddress.cs: Move m_HashCode property to the end, and set
1829         pragmas to disable warnings.
1831 2006-02-16  Dick Porter  <dick@ximian.com>
1833         * IPEndPoint.cs: The SocketAddress AddressFamily takes up the
1834         first two bytes, not just one.  Check the size of the
1835         SocketAddress buffer for IPv6 as well.
1837         * Dns.cs: Cope when GetHostByName_internal or
1838         GetHostByAddr_internal returns fewer items in the array than it
1839         intended to (maybe due to conversion errors.)
1841 2006-02-09  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1843         * FtpWebResponse.cs: Add UpdateStatus method, to update both
1844         statusCode and statusDescription at the same time. 
1846 2006-02-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1848         * FtpWebRequest.cs: Remove WebExceptionStatus argument
1849         from CreateExceptionFromResponse, since exceptions gotten
1850         from server response always have a WebExceptionStatus.ProtocolError
1851         value.
1852         
1853 2006-02-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1855         * FtpWebRequest.cs: Add renaming support when using 
1856         WebRequestMethods.Ftp.Rename method.
1857         
1858 2006-02-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1860         * ChunkedInputStream.cs:
1861         * ChunkStream.cs: handle partial trailers and zero reads. Patch by Pawel
1862         Sakowski.
1864 2006-02-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1866         * HttpWebRequest.cs: don't send the expect-100 if if there's no content.
1868         * HttpListenerRequest.cs:
1869         * HttpConnection.cs:
1870         * RequestStream.cs: use the content length header to avoid reading past
1871         the end of the stream.
1873         Patch by Horst Reiterer.
1875 2006-02-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1877         * FtpWebRequest.cs: Add supportedCommands array with the sorted
1878         methods, to search using Array.BinarySearch. Remove CheckMethod.
1880 2006-02-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1882         * FtpWebRequest.cs: Fixed some typos and small issues.
1883         
1884 2006-02-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1886         * HttpWebRequest.cs: dummy implementation of UnsafeAuthenticationBlah
1887         property.
1889 2006-02-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1891         * FtpRequestCreator.cs: 
1892         * FtpAsyncResult.cs:
1893         * FtpDataStream.cs:
1894         * FtpWebRequest.cs:
1895         * FtpWebResponse.cs: Initial implementation of FtpWebRequest (2.0)
1896         
1897 2006-02-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1899         * FtpStatusCode.cs: Fix a typo.
1900         
1901 2006-01-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1903         * WebClient.cs: (2.0) UploadString() returns string, not void.
1905 2006-01-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1907         * HttpWebResponse.cs: ignore non-integer values for max-age and version.
1908         Fixes bug #77199. Thanks to Cyrille Colin.
1910 2006-01-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1912         * HttpWebResponse.cs: cope with malformed cookies with '=' as value.
1913         Patch by Cyrille Colin. Fixes bug #77179.
1915 2005-12-25  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1917         * FtpStatusCode.cs: New 2.0 enum.
1919 2005-12-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1921         * CookieContainer.cs: fix matching of subdomains. Patch by Cyrille
1922         Colin.
1924 2005-12-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1926         * HttpWebResponse.cs: don't loop forever when no name or value between
1927         semicolons. Fixes bug #76943.
1929 2005-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1931         * HttpWebResponse.cs: don't fail if the cookie ends with a 'name'
1932         without a value. Fixes bug #76922.
1934 2005-11-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1936         * EndPointListener.cs:
1937         * HttpListenerRequest.cs: don't require the Host header for 1.0. Just
1938         map that to the '*' or '+' host.
1940 2005-11-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1942         * IPAddress.cs: the byte[] ctor supports length 4 in .NET 2.0.
1943         Fixes bug #76792.
1945 2005-11-21 Senganal T   <tsenganal@novell.com>
1947         * Dns.cs : corrected a mistake in GetHostEntry ()
1949 2005-11-21 Senganal T   <tsenganal@novell.com>
1951         * Dns.cs : added GetHostEntry() method for 2.0 api conformance
1953 2005-11-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1955         * HttpRequestHeader.cs: add missing values.
1957 2005-11-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1959         * HttpListenerPrefixCollection.cs:
1960         * HttpWebResponse.cs:
1961         * Dns.cs:
1962         * HttpListenerRequest.cs:
1963         * HttpWebRequest.cs:
1964         * HttpListenerResponse.cs: a few signature fixes for 2.0.
1966 2005-11-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1968         * HttpListenerPrefixCollection.cs:
1969         * EndPointListener.cs:
1970         * HttpStreamAsyncResult.cs:
1971         * HttpListenerContext.cs:
1972         * HttpListenerBasicIdentity.cs:
1973         * AuthenticationSchemeSelector.cs:
1974         * HttpListener.cs:
1975         * WebHeaderCollection.cs:
1976         * ListenerPrefix.cs:
1977         * HttpListenerException.cs:
1978         * HttpResponseHeader.cs:
1979         * EndPointManager.cs:
1980         * HttpListenerRequest.cs:
1981         * HttpRequestHeader.cs:
1982         * BindIPEndPoint.cs:
1983         * ResponseStream.cs:
1984         * ChunkedInputStream.cs:
1985         * HttpStatusCode.cs:
1986         * ListenerAsyncResult.cs:
1987         * ChunkStream.cs:
1988         * HttpConnection.cs:
1989         * HttpUtility.cs:
1990         * HttpListenerResponse.cs:
1991         * RequestStream.cs: initial implementation of HttpListener. There are
1992         a few TODOs left (cookies, HTTPS) but almost everything else is in.
1994 2005-11-15  Sebastien Pouliot  <sebastien@ximian.com>
1996         * IPv6Address.cs: Added on overload to ToString to get a the full 
1997         length address returned (as required by System.Uri).
1999 2005-11-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2001         * WebRequestMethods.cs: New 2.0 class.
2002         
2003 2005-11-05  Atsushi Enomoto  <atsushi@ximian.com>
2005         * WebClient: use POST for DownloadData(). Fixed bug #76631.
2007 2005-10-26  Atsushi Enomoto  <atsushi@ximian.com>
2009         * AuthenticationSchemes.cs : Fixed enum values and added [Flags].
2011 2005-10-19  Atsushi Enomoto  <atsushi@ximian.com>
2013         * WebClient.cs : added net_2_0 DownloadString() and DownloadData()
2014           with HTTP method as well.
2016 2005-10-19  Atsushi Enomoto  <atsushi@ximian.com>
2018         * WebClient.cs : added UploadString() and Encoding (net_2_0). Added
2019           some new overloaded stuff that takes Uri instead of string address.
2021 2005-10-17  Sebastien Pouliot  <sebastien@ximian.com> 
2023         * ICredentialPolicy.cs: New. Interface for 2.0.
2025 2005-10-05  Atsushi Enomoto  <atsushi@ximian.com>
2027         * AuthenticationSchemes.cs : new 2.0 enum.
2029 2005-08-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2031         * GlobalProxySelection.cs: remove double lock.
2032         * HttpWebRequest.cs: remove double lock in GetServicePoint() and use
2033         a private object when locking.
2035 2005-07-15  Miguel de Icaza  <miguel@novell.com>
2037         * DigestClient.cs: Fix bug #75556, the qop argument must be
2038         quoted, per http://www.faqs.org/rfcs/rfc2617.html section
2039         `quo-options'.
2041 2005-07-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2043         * WebConnectionStream.cs: initiate writing the body before trying to
2044         read. This fixes the performance problems observed in web services.
2045         Closes bug #75455.
2047 2005-06-27  Lluis Sanchez Gual <lluis@novell.com>
2049         * IPAddress.cs: Changed field names for the sake of serialization
2050         interoperability with MS.NET.
2051         
2052 2005-06-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2054         * WebConnection.cs: if cnc.EndRead throws, mark the asyncresult as done.
2055         * WebConnectionStream.cs: if we're done with the body of a chunk, don't
2056         require the next chunk header to be there, as some servers might close
2057         the connection (while also sending 'Connection: close').
2059 2005-06-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2061         * HttpWebRequest.cs: MS implementation follows redirects for POST. Seems
2062         to me that this is against 10.3.3 in RFC 2616, but may be the user
2063         'authorization' to do this is implicit in AllowAutoRedirect...
2065 2005-06-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2067         * WebConnection.cs: SslClientStream.BeginRead might not be asynchronous
2068         if there's no record available to read. This is a workaround that makes
2069         the call to BeginRead itself asynchronous. Fixes bug #75342.
2071 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2073         * WebConnection.cs:
2074         * HttpWebRequest.cs:
2075         * WebConnectionStream.cs: initiate the polling for input data after
2076         sending the header so that we detect any response that the server sends
2077         back even if we're still trying to write the request for a POST/PUT.
2078         If we get the response (or an error) before any one calls GetResponse(),
2079         keep it around instead of ignoring it.
2081 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2083         * HttpWebRequest.cs: send the right header/user/password in
2084         PreAuthenticate in presence of a proxy.
2086 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2088         * IPv6Address.cs: fix IsLoopback. Closes bug #75128.
2090 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2092         * IPv6Address.cs: don't do extra check on ipv4 if this is a ipv6
2093         address. Fixes bug #75125.
2095 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2097         * ServicePointManager.cs: when going through a proxy, use 2 different
2098         service points depending on the scheme. Fixes bug #75135.
2100 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2102         * Dns.cs: don't parse the address when it comes from an IPAddress.
2104 2005-05-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2106         * WebConnection.cs: prevent 2 nullrefs when the aborting during
2107         Connect() and reset the status to Success before starting a new
2108         request.
2110 2005-05-19  Sebastien Pouliot  <sebastien@ximian.com>
2112         * WebRequest.cs: Throw NotImplementedException (not NotSupported
2113         Exception) for stuff that should have been abstract. No exception
2114         is thrown by the serialization constructor.
2116 2005-05-04 James Willcox  <james@ximian.com>
2118         * DigestClient.cs: convert to a hex string with "X8" consistently
2119         for nc-value
2121 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2123         * WebConnection.cs: don't rethrow errors in Write, as the error will be
2124         received by GetResponse*. The result is that the threadpool thread doing
2125         this will not end up printing the exception. Fixes bug #74817.
2127 2005-05-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2129         * ServicePoint.cs: HostEntry needs to be thread safe.
2131 2005-05-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2133         * WebConnection.cs: removed a 'slightly' important line by mistake.
2134         * WebConnectionStream.cs: if the transfer encoding is chunked, ignore
2135         content-length header if present.
2137 2005-05-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2139         * WebConnection.cs: no need to use an AutoResetEvent.
2140         * WebConnectionStream.cs: don't start any more reads on the socket
2141         after getting a 0 signalling the end. This fixes Ben's infamous foo.cs
2142         test.
2144 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2146         * BasicClient.cs: firefox/IE just send latin1, stripping the high byte
2147         from unicode >= 256 characters.
2149 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2151         * BasicClient.cs: use latin1 when encoding the username/domain/password.
2152         Fixes bug #74745.
2154 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2156         * WebConnectionStream.cs: if the BeginRead/BeginWrite is completed
2157         synchronously, no need to create the ManualResetEvent to wait on.
2159 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2161         * WebConnectionStream.cs: call SetComplete in EndWrite when we're not
2162         buffering the request body. Fixes bug #74637.
2164         * WebAsyncResult.cs: renamed field.
2166 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2168         * WebConnectionStream.cs:
2169         * WebAsyncResult.cs: ensure we only call EndRead once per async. result.
2170         Update total before invoking the callback when present.
2172 2005-04-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2174         * WebConnection.cs:
2175         * WebConnectionStream.cs: don't start reading until we've sent at least
2176         the headers. This way we ensure that a Write happens before any Read,
2177         which is needed by the SSL code.
2179 2005-04-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2181         * HttpWebRequest.cs: ensure we read everything before redirecting.
2183 2005-04-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2185         * WebConnectionStream.cs: provide a default callback when doing async.
2186         read/write and waiting for a timeout so that the callback sets the
2187         event and we don't block forever. Fixes bug #74539 take 3.
2189 2005-04-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2191         * WebConnection.cs:
2192         * HttpWebRequest.cs: now Abort() works properly. Fixes bug #74177.
2194 2005-04-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2196         * WebConnection.cs: fix some breakage from my last patch.
2197         * WebConnectionStream.cs: invoke the callback when done even in EndRead.
2199 2005-04-10  Sebastien Pouliot  <sebastien@ximian.com>
2201         * WebConnection.cs: Added support for TrustFailure when throwing a
2202         WebException. Fix bug #74286.
2204 2005-04-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2206         * HttpWebRequest.cs: 
2207         * WebConnectionStream.cs: implemented support for ReadWriteTimeout.
2209 2005-04-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2211         * WebConnection.cs: if we're reading chunked data and didn't use the
2212         stream to read, we gotta set the async. result as complete and invoke
2213         the callback. Don't call nstream.EndRead with the wrong IAsyncResult.
2215         * WebConnectionStream.cs: in EndRead, pass the correct IAsyncResult to
2216         cnc.EndRead. Lock on a field instead of 'this'.
2218 2005-04-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2220         * HttpWebRequest.cs: throw the exception if we got an error, as now
2221         it's catched in the redirection handling code.
2223 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2225         * HttpWebRequest.cs: moved redirection handling to a proper place.
2227 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2229         * WebHeaderCollection.cs: added if-modified-since to the list of
2230         restricted headers.
2232         * ServicePoint.cs: use a field object when locking.
2234 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2236         * WebConnectionStream.cs: ForceCompletion actually calls NextRead. No
2237         need to wait for a Close/ReadAll when we have no content.
2239 2005-04-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2241         * NtlmClient.cs: fix typo in assembly name.
2243 2005-03-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2245         * CookieContainer.cs: adding to a CookieCollection might not increment
2246         the number of items if the cookie is replaced. Now Count works properly.
2247         Fixed an array index exception (typo).
2249         * CookieCollection.cs: also compare the version.
2251         * HttpWebResponse.cs: when we have cookies, add them to the request
2252         container.
2254         * HttpWebRequest.cs: changed last parameter of HttpWebResponse ctor.
2256 2005-03-30  Miguel de Icaza  <miguel@novell.com>
2258         * Cookie.cs: Compare using the InvariantCulture, to match the
2259         behavior of CookieContainer that already did this.
2261 2005-03-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2263         * WebConnection.cs: we don't need to trigger the next queued request
2264         until the response is closed.
2266 2005-03-29  Miguel de Icaza  <miguel@novell.com>
2268         * HttpWebResponse.cs: Handle quotations in the cookies values, per
2269         the spec http://www.faqs.org/rfcs/rfc2109.html, it is allowed to
2270         have quotations.
2272 2005-03-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2274         * BasicClient.cs:
2275         * DigestClient.cs: check that GetCredential() does not return null.
2277 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2279         * BasicClient.cs: ensure credentials are not null.
2281 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2283         * HttpWebResponse.cs: moved cookie parsing into its own class.
2284         * WebHeaderCollection.cs: remove (probably bogus) GetMultipleValues
2285         call.
2286         * HttpWebRequest.cs: don't let exception raised in the ctor of
2287         HttpWebResponse vanish.
2289         Fixes bug #73275.
2291 2005-03-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2293         * WebHeaderCollection.cs: handle commas inside quotes when splitting
2294         a multi-value header. Fixes bug #73151.
2296 2005-02-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2298         * DigestClient.cs: fix for digest auth. and URIs containing query. Patch
2299         by James Wilcox. Fixes bug #72571.
2301 2005-02-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2303         * HttpWebResponse.cs:
2304         * WebConnection.cs:
2305         * HttpWebRequest.cs:
2306         * WebConnectionStream.cs: don't read the entire response unless the
2307         user requests it. Fixes bug #72443.
2309 2005-02-08  Zoltan Varga  <vargaz@freemail.hu>
2311         * IPv6Address.cs: Fix endianess problems.
2313         * IPAddress.cs: Fix misleading comments.
2315 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2317         * HttpWebRequest.cs: send the headers when we're supposed to write
2318         a POST/PUT but call GetResponse before GetRequestStream.
2320         * WebConnectionStream.cs: new RequestWritten property.
2322 2005-01-20  Jonathan Pryor  <jonpryor@vt.edu>
2324         * EndpointPermission.cs: Fix IsSubsetof(hostname) so that the regression 
2325           tests work.  In particular, IsSubsetOf ("12.13.*.*", "12.13.14.*") failed
2326           because 14 wasn't a subset of * (which it is).  Fix: if part1 is we 
2327           continue to the next portion.
2329 2005-01-20  Jonathan Pryor  <jonpryor@vt.edu>
2331         * IPAddress.cs (ParseIPV4): Fix so that the regression tests work.  In
2332           particular, " foo" and ".1.1.6" weren't being caught (" foo" because it
2333           started with a space, and ".1.1.6" because the split string accepted a
2334           0-length portion, which would make 1...6 valid, but isn't valid based on
2335           similar test cases).
2337 2005-01-20  Jonathan Pryor  <jonpryor@vt.edu>
2339         * WebHeaderCollection.cs: Fix GetValues(string) to split the values on
2340           commas if the header is a Multi-Value header.  This matches
2341           MonoTests.System.Net.WebHeaderCollectionTest.
2343 2005-01-19  Sebastien Pouliot  <sebastien@ximian.com>
2345         * WebPermissionAttribute.cs: Fixed NET_1_1 behaviour.
2347 2004-12-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2349         * WebConnectionStream.cs: remove unneeded check. Write detects and
2350         triggers the exception now.
2352 2004-12-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2354         * AuthenticationManager.cs: don't lock on a public Type.
2355         * HttpWebRequest.cs: read the error response for auth. errors.
2357 2004-12-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2359         * HttpWebRequest.cs: set webResponse back to null when redirecting.
2360         Fix the previous patch so that it reads the whole response even if
2361         auto-redirect is not enabled. Closes bug #70484.
2363 2004-12-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2365         * HttpWebResponse.cs: added ReadAll method.
2367         * WebConnection.cs: in HandleError, set the response error after
2368         closing the socket. Use an async. delegate to finish reading any prior
2369         WebConnectionStream.
2371         * HttpWebRequest.cs: for error responses that allow content, read the
2372         stream immediately. Fixes bug #70483.
2374 2004-12-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2376         * CookieContainer.cs: quote the port number.
2378 2004-12-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2380         * WebConnection.cs:
2381         * WebConnectionStream.cs: removed TryReconnect. It's no longer needed.
2383 2004-12-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2385         * WebConnection.cs: set the event in Close so that if the queue is
2386         empty, we won't block forever on next request. The finalizer was
2387         removed because we're not implementing IDisposable pattern here.
2389 2004-12-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2391         * WebConnection.cs: handle errors on chunked streams. Fixes bug #66858.
2392         * ChunkStream.cs: added error checking all over.
2394         * HttpWebRequest.cs: throw the exception received in SetResponseError
2395         if we already have a response.
2396         (SetRequestData): Don't nest the exception if it's a WebException.
2398 2004-12-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2400         * WebConnection.cs: remove prevStream and don't set busy to false in
2401         HandleError. prevStream is not needed any more and setting 'busy' so
2402         early might let a request skip the queue.
2403         
2404         * WebConnectionGroup.cs: decrement the indexer when removing a dead
2405         reference from the arraylist.
2407         * WebConnectionStream.cs:
2408         (ReadAll): call NextRead if it has not been called before even when
2409         we have completed the request. Reuse the read buffer when reading a
2410         response of unknown size. Increase the buffer to 8kB.
2411         (BeginRead): increase pendingReads earlier and even when reading from
2412         the internal buffer.
2413         (EndRead): decrease pendingReads later and always.
2415 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2417         * CookieContainer.cs: style, fixed checks for properties, implemented
2418         the MonoTODOs for the method that take an Uri. GetCookies and
2419         GetCookieHeaders now really return only the cookies that are requested
2420         filtering by the Uri parameter.
2422         * Cookie.cs: style, added default values for Comment, Domain and Port.
2424 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2426         * CookieCollection.cs: reformatted, fixed Add by adding a new method to
2427         search across the arraylist, as list.IndexOf is not what we want.
2429 2004-11-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2431         * WebConnection.cs: check for FIN or RST on the socket before reusing.
2432         Fixes bug #69388.
2434 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2436         * ChunkStream.cs: simplified condition for WantMore property.
2438         * WebConnection.cs: in Connect(), finish any pending reads we might
2439         have for chunked data. Ignore possible blank lines at the very
2440         beginning of the server response. Honor user set KeepAlive in
2441         HttpWebRequest for HTTP/1.1 connections. Thanks to Eyal Alayuf for
2442         his suggestions and code.
2444 2004-11-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2446         * HttpWebResponse.cs: don't lock up when the cookie received ends with
2447         a semicolon. Patch by Darryl VanDorp. Fixes bug #68956.
2449 2004-10-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2451         * HttpWebRequest.cs: don't fail if the request has already been sent
2452         when accessing ContentType setter. Fixes bug #68848.
2454 2004-10-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2456         * ChunkStream.cs:
2457         (WantMore): we're not done until we get a 0 chunk size and the trailer.
2458         The 0 can be expressed as more than one character too (ie, 000000).
2460         * HttpWebRequest.cs: new argument in SetResponseError.
2461         * WebConnection.cs: added argument to HandleError as a hint for
2462         debugging.
2463         (Connect): make the chunked stream be in the expected state when
2464         reusing.
2466         * WebConnectionStream.cs: removed unused method (ResetWriteBuffer).
2468 2004-10-10 David Sheldon <dave-mono@earth.li>
2470         * HttpWebRequest.cs: Use RemoveAndAdd for AddRange. Fixes unittest.
2472 2004-10-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2474         * HttpWebRequest.cs: use RemoveAndAdd for headers multivalue headers.
2475         * WebHeaderCollection.cs: added RemoveAndAdd that behaves like the old
2476         SetInternal.
2478 2004-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2480         * HttpWebRequest.cs: ProxyQuery returns true when we use a proxy without
2481         tunneling a secure connection.
2483         * ServicePoint.cs: added UseConnect property.
2485         * ServicePointManager.cs: set the UseConnect property when we use a http
2486         proxy for a https connection.
2488         * WebConnection.cs: setup the tunnled connection when using a proxy and
2489         https.
2491 2004-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2493         * HttpWebResponse.cs: remove unused SplitValue method.
2495 2004-09-10  Sebastien Pouliot  <sebastien@ximian.com>
2497         * DnsPermission.cs: Updated to pass new unit tests.
2498         * DnsPermissionAttribute.cs: Cleanup.
2499         * SocketPermission.cs: Updated to pass new unit tests.
2500         * SocketPermissionAttribute.cs: Updated to pass new unit tests.
2501         * WebPermission.cs: Implemented some TODO - not complete yet.
2502         * WebPermissionAttribute.cs: Updated to pass new unit tests.
2504 2004-08-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2506         * Cookie.cs: don't fail when using default constructor. Fixes bug
2507         #62890.
2509 2004-08-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2511         * HttpWebResponse.cs: set-cookie and set-cookie2 can be present more
2512         than once and have multiple values. Don't rely on string.split when
2513         parsing cookie values.
2515         * WebHeaderCollection.cs: same thing for set-cookie and set-cookie2.
2516         Fixed GetValues (it was splitting values that contained a comma) and
2517         changed SetInternal to handle multi-value headers.
2519         Fixes bug #62744.
2521 2004-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2523         * WebProxy.cs: fix scheme detection. Patch by Konstantin Triger
2524         (kostat@mainsoft.com).
2526 2004-07-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2528         * HttpWebRequest.cs: detect changes in scheme or port when redirecting.
2529         Fixes las take on bug 61218.
2531 2004-07-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2533         * WebConnection.cs: moved loading of the ssl stream Type to its own
2534         method. Don't create a new ssl stream if we're reusing the connection.
2536         * WebConnectionStream.cs: ensure the number of bytes copied in ReadAll
2537         is the expected even if the dta from the server has extra bytes.
2539 2004-07-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2541         * WebConnection.cs:
2542         * WebConnectionStream.cs: when the status code is 1xx, 204 or 304,
2543         "responses MUST NOT include a message-body". We tried to read the
2544         stream even when getting those codes and considered the 0 length
2545         read as a failure.
2547 2004-07-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2549         * HttpWebRequest.cs: removed bogus Monitor.Exit.
2550         * WebConnection.cs: use Address instead of RequestUri when checking for
2551         the scheme in order to select the stream type. Fixes bug #61218.
2553 2004-06-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2555         * ChunkStream.cs: added ChunkLeft property.
2556         * WebConnection.cs:
2557         (EndRead): when using small byte arrays to read from a chunked stream,
2558         ensure we've read the chunk size and try to fulfill the request
2559         completely. fixes bug 59653.
2561 2004-05-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2563         * WebConnectionStream.cs: fixed CanRead property. Closes bug #59273.
2565 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2567         * DigestClient.cs: cache the sessions based on address and
2568         credentials, not only address. Added poor men's expiration to
2569         the session cache. Fixes bug #59202.
2571 2004-05-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2573         * IPAddress.cs:
2574         * IPEndPoint.cs:
2575         * IPv6Address.cs: no more warnings about IPAddress.Address.
2577 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2579         * WebException.cs: implemented serialization .ctor and
2580         GetObjectData().
2582 2004-05-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2584         * WebAsyncResult.cs: don't create the WaitHandle if not needed.
2586 2004-05-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2588         * HttpWebRequest.cs: added 3 missing properties for 1.1. They are not
2589         used yet.
2591         * NetConfig.cs: added MaxResponseHeadersLength field.
2593         * ServicePoint.cs:
2594         * ServicePointManager.cs: added missing properties for 1.1. 
2596 2004-05-03  Sebastien Pouliot  <sebastien@ximian.com>
2598         * WebConnection.cs: Use assembly name const to load Mono.Security.
2600 2004-05-03  Lluis Sanchez Gual <lluis@ximian.com>
2602         * NtlmClient.cs: Use assembly name const to load Mono.Security.
2604 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2606         * WebConnectionStream.cs: avoid the exception when getting the content
2607         length if possible.
2609 2004-03-29  Lluis Sanchez Gual <lluis@ximian.com>
2611         * HttpWebRequest.cs: Use a lock block instead of Monitor.Enter/Exit, so
2612         the lock is released in case of exception (for example, a 
2613         ThreadAbortException). This also "fixes" bug #52417.
2614         Beware, this requires a runtime update (due to a bug in Monitor.Exit).
2615         * ServicePoint.cs: Changed method from internal to private, since it
2616         is not called from outside the class.
2618 2004-03-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2620         * HttpWebRequest.cs: added the exception status to the error message.
2621         * WebConnection.cs: add headers using SetInternal instead of Add to
2622         bypass header name validation. Fixes bug #55994.
2623         * WebHeaderCollection.cs: added SetInternal (string header).
2625 2004-03-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2627         * WebConnection.cs:
2628         * WebConnectionGroup.cs: the requests queue is now shared for all the
2629         connections belonging to the same connection group.
2631 2004-02-26  Sebastien Pouliot  <sebastien@ximian.com>
2633         * DefaultCertificatePolicy.cs: New. Certificate validation
2634         policy compatible with the documented one present in Fx. It
2635         allows valid certificates and expired certificates to be used
2636         for SSL connections.
2637         * ServicePointManager.cs: Removed the DummyPolicy. Now creates
2638         a DefaultCertificatePolicy to validate certificates. 
2640 2004-02-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2642         * ServicePoint.cs: SendContinue is always false for HTTP/1.0
2644         * WebConnection.cs: get rid of WaitForContinue() (yes!) and prevent
2645         calling more the ContinueDelegate more than once when we get the
2646         headers in several packets.
2648         * WebConnectionStream.cs: removed call to WaitForContinue.
2650 2004-02-25  Sebastien Pouliot  <sebastien@ximian.com>
2652         * WebConnection.cs: Update previous patch to use HttpsClientStream
2653         (internal in Mono.Security assembly) in place of SslClientStream.
2654         This will reduce reflection and allow to use ICertificatePolicy.
2656 2004-02-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2658         * DigestClient.cs: fix quote handling. Reordered attributes in response.
2659         Fixed typo (QOP->CNonce). Now Digest works with apache2.
2661 2004-02-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2663         * DigestClient.cs: removed Console.
2664         * HttpWebRequest.cs: 401/407 were hanging for GET. Fixed.
2666 2004-02-24  Sebastien Pouliot  <sebastien@ximian.com>
2668         * DigestClient.cs: Fixed issue with Apache server which do not use "
2669         for specifying the digest algorithm (.e.g. algorithm=MD5 not ="MD5").
2671 2004-02-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2673         * HttpWebRequest.cs: arghhh. I used the server response headers instead
2674         of what the client is supposed to send. Thanks to Helge Hess.
2676 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2678         * AuthenticationManager.cs: implemented PreAuthenticate().
2680         * HttpWebRequest.cs: once we know the version of the server, use it if
2681         below the requested one. Remove 'Expect', 'Content-Length' and /or 
2682         'Transfer-Encoding' if appropiate due to changes in version. Fixed 
2683         'Host' header for non-standard ports. Support preauthentication. Closes
2684         bug #50530.
2686 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2688         * HttpWebRequest.cs: check for missing or wrong URI in Location header
2689         when redirecting.
2691         * WebConnection.cs: if the data read does not contain all the headers,
2692         keep it around and read the rest until we get to the response body.
2693         Allow response code with no description. Fixed bug #54543.
2695 2004-02-18  Sebastien Pouliot  <sebastien@ximian.com>
2697         * SecurityProtocolType.cs: Added missing [Serializable] to enum. Added 
2698         Default and Ssl2 to NET_2_0 profile. Enum is now internal for NET_1_0
2699         profile (as we need it for SslClientStream).
2700         * ServicePoint.cs: Added internal SetCertificates(client,server).
2701         * ServicePointManager.cs: Added CheckCertificateRevocationList and
2702         CheckCertificateRevocationList static properties (public in 1.1, 
2703         internal for 1.0).
2704         * WebConnection.cs: Dynamically creates a SslClientStream (from 
2705         Mono.Security assembly) in case of https. Changed NetworkStream to 
2706         Stream everywhere.
2708 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2710         * HttpWebRequest.cs: send the 'Connection: keep-alive' header when we
2711         don't know the server version or it's 1.0.
2713         * ServicePoint.cs: added SetVersion.
2715         * WebAsyncResult.cs: remove ChunkAsyncResult.
2717         * WebConnection.cs: set the ServicePoint version when getting a response
2718         from the server.
2720         * WebConnectionStream.cs: when posting chunked content, send the head,
2721         body and trailer of the chunk at once instead of doing 3 separate
2722         writes, which may cause troubles.
2724 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2726         * WebConnection.cs: if we get a 100 when we're not waiting for it, set
2727         that information in the ServicePoint.
2729         * WebConnectionStream.cs: send headers in the right order for
2730         non-chunked POST.
2732 2004-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2734         * WebConnectionStream.cs: fixed nullrefs in BeginWrite/EndWrite.
2736 2004-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2738         * HttpWebRequest.cs: on second and sucesive tries when authenticating,
2739         don't use chunked encoding for POST, as we know the content length and
2740         have the body. Nullify bodyBuffer always in CheckFinalStatus.
2742         * WebAsyncResult.cs: added ChunkAsyncResult property. It holds the
2743         IAsyncResult when writing CRLF at the end of a chunk.
2745         * WebConnectionStream.cs: support sending chunked data.
2747 2004-01-24  Lluis Sanchez Gual <lluis@ximian.com>
2749         * HttpWebRequest.cs: When retrying a POST request after an
2750         authentication failure, resend the body. This fixes bug #51841.
2751         * WebConnectionStream.cs: Added properties for getting what's been
2752         written.
2754 2004-02-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2756         * HttpWebRequest.cs: don't send 'Expect: 100-continue' for 1.0 version.
2758 2004-02-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2760         * HttpWebRequest.cs: support proxy authentication.
2762 2004-02-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2764         * BasicClient.cs:
2765         * DigestClient.cs: use IndexOf instead of StartsWith to deal with
2766         servers that provide several authentication schemas.
2768 2004-02-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2770         * ChunkStream.cs: use an array of buffers instead of a MemoryStream for
2771         storing the chunks. This way, we won't miss traling data from the
2772         previous chunk when a new one is received before the other is fully
2773         read.
2775 2004-01-27  Nick Drochak <ndrochak@ieee.org>
2777         * DigestClient.cs:
2778         * HttpWebRequest.cs:
2779         * IPv6Address.cs:
2780         * WebClient.cs:
2781         * WebConnection.cs:
2782         * WebConnectionStream.cs: Remove unused variables thus eliminating some
2783         build warnings.
2785 2004-01-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2787         * WebConnection.cs: patch by Yaacov Akiba Slama that fixes 100-continue
2788         handling for the case when the same packet also contains the actual
2789         [2-5]xx response.
2791 2004-01-24  Lluis Sanchez Gual <lluis@ximian.com>
2793         * HttpWebRequest.cs: Added missing property.
2795 2004-01-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2797         * Dns.cs: don't block forever in EndResolve and EndGetHostByName. Fixes
2798         bug #53222.
2800 2004-01-16  Lluis Sanchez Gual <lluis@ximian.com>
2802         * ChunkStream.cs: The "size" parameter of Write is not the number of
2803         bytes to write, but the last offset to be written. Thus, in WriteAndRead
2804         Back, since "read" is not an offset but the number of bytes, it must be 
2805         added to the offset. Maybe it would be a good idea to change the name of
2806         the parameter, since it is confusing. This should fix bug #52591.
2808 2004-01-12  Lluis Sanchez Gual <lluis@ximian.com>
2810         * WebConnection.cs: Yet another fix for WebConnection. This fixes 
2811         bug #52169.
2813 2004-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2815         * WebConnection.cs: Data.Init is a bad boy. Lluis realized. He also
2816         tidied up the end of ReadDone. Disabled relaunching the request if 2
2817         InitRead are called, since now we don't throw everything into
2818         RegisterWaitForSingleObject but one request at a time.
2820         * WebConnectionGroup.cs: when checking available connections, allow them
2821         not to be Connected but allocated to honor the connection limit.
2822         
2823         * WebConnectionStream.cs: CheckComplete() now checks for nextReadCalled
2824         too. ReadAll don't mess contentLength if it's provided in the headers.
2826         BIG thanks to Lluis. Turns out that we were debugging the same stuff and
2827         his Data.Init discovery was THE thing I was missing.
2829         Fixes bug #51277.
2831 2004-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2833         * ServicePointManager.cs: use GetMaxConnections to get the appropiate
2834         number of connections limit.
2836 2004-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2838         * MonoHttpDate.cs: use the invariant culture, not en-US. Suspected
2839         guilty for bug 52629.
2841 2003-12-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2843         * CredentialCache.cs: return null instead of throwing NotImplemented.
2845 2003-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2847         * HttpWebRequest.cs: fixed checking if method allows a body. Patch by
2848         Benjamin Jemlich (pcgod@gmx.net).
2850 2003-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2852         * HttpWebRequest.cs: deal with authentication schemes that have more
2853         than 1 round trip (Ntlm).
2855 2003-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2857         * NtlmClient.cs: new class that actually uses one from Mono.Http to do
2858         the authentication.
2860 2003-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2862         * HttpWebRequest.cs: when building the redirect URI, use the previous
2863         one as the base URI, which makes relative URIs work.
2865 2003-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2867         * DigestClient.cs: merged in code from Sebastien Pouliot and Greg
2868         Reinacker that Supports cnonce and preauthentication.
2870 2003-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2872         * DigestClient.cs: initial Digest authentication. Works with apache
2873         mod_digest.
2875 2003-11-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2877         * HttpWebRequest.cs: removed unneeded StringBuilder.
2878         * WebConnection.cs: default to keep the connection open for HTTP/1.1
2879         only or HTTP/1.0 + (Proxy-)Connection header. Fixes bug #51208.
2881 2003-11-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2883         * WebConnection.cs: turns out that socket.Connected is not useful until
2884         we actually try to send/receive data, even if the other end has already
2885         closed the socket. Added TryReconnect() and Connected.
2887         * WebConnectionData.cs: default value for StatusCode is 0 now.
2889         * WebConnectionGroup.cs: reuse the connection since the beginning,
2890         instead of opening up to ConnectionLimit and then reusing.
2892         * WebConnectionStream.cs: reopen the socket if we're trying to reuse
2893         one which fails on first write.
2895 2003-11-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2897         * WebConnectionStream.cs: when a callback is passed to BeginRead/Write,
2898         wrap it and do our job before calling it. Fixes bug #48497.
2900 2003-11-12  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
2902         * WebExceptionStatus.cs: Restyled, Added .Net 1.1 members
2903         * SecurityProtocolType.cs: Added and implemented
2905 2003-11-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2907         * HttpWebRequest.cs: fixed redirects when they target another host.
2909 2003-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2911         * IPAddress.cs: prevent exceptions when trying to parse the static IPv6
2912         addresses.
2914 2003-10-17  Pedro Martinez Julia  <yoros@wanadoo.es>
2916         * WebClient.cs: use Path.DirectorySeparator instead of "/" for
2917         windows compatibility. Add some checks for file paths like
2918         "C:/xxx/yyy/..." and like "/home/xxx/...".
2920 2003-10-16  Pedro Martinez Julia  <yoros@wanadoo.es>
2922         * WebClient.cs: added a slash between directory and file names.
2924 2003-10-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2926         * HttpWebRequest.cs:
2927         * HttpWebResponse.cs: better abort handling and leave the stream in a
2928         stable status on abort.
2930 2003-10-12  Pedro Martinez Julia  <yoros@wanadoo.es>
2932         * WebClient.cs: refine reading of local files (like MS.NET).
2934 2003-10-10  Pedro Martinez Julia  <yoros@wanadoo.es>
2936         * WebClient.cs: MS.NET works right when we try OpenRead("file.txt")
2937         but we didn't. Now, when Uri fails with an exception, it adds
2938         "file://" before the URI and tries again.
2940 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2942         * ServicePoint.cs: preparing for recycling. Not yet finished.
2943         * ServicePointManager.cs: this is the one that reads config.
2944         * WebConnectionGroup.cs: don't read config here.
2945         * WebConnection.cs: added the queue again. Launch queued requests on
2946         error.
2948 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2950         * WebConnection.cs: the queue is now handled by the threadpool.
2951         Initialize the connection data in a place where it does not depend on
2952         the execution order of the requests in threadpool. More error handling.
2954         * WebConnectionGroup.cs: use the limits in the config file and reuse
2955         connections when the limit is reached.
2957 2003-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2959         * HttpWebRequest.cs: handle 304 a la MS.
2960         * WebConnection.cs: set the response data when reading 0 bytes.
2962 2003-09-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2964         * WebConnectionStream.cs: fix by Lluis to avoid the stream being in an
2965         invalid state.
2967 2003-08-14  Nick Drochak <ndrochak@gol.com>
2969         * WebRequest.cs: Check lower case string since that is what we will add.
2971 2003-08-04  Jerome Laban <jlaban@wanadoo.fr>
2973         * IPHostEntry.cs: Default contructor must not initialize members.
2974         (Fixes bug #45575).
2976 2003-07-27  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
2978         * CredentialCache.cs: Removed undefined serializable attribute
2980 2003-07-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2982         * ChunkStream.cs:
2983         (WantMore): true if we've not received the last chunk yet. Fixes
2984         bug #45463. Thanks to Miguel for tracking this down and providing a
2985         test case.
2986         
2987         * WebConnection.cs: removed bogus ^M's.
2988         
2989         * WebHeaderCollection.cs: provide more info when the header or value is
2990         wrong.
2992 2003-07-15  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
2994         * ChunkStream.cs: Removed unused members
2995         * IPAddress.cs: Removed unused exception variable, fixes compiler
2996         warning.
2997         * WebConnection.cs: Removed unused exception variables, fixes compiler
2998         warnings.
3000 2003-07-14  Lluis Sanchez Gual <lluis@ximian.com>
3002         * NetConfig.cs: If Clone method is not public, then it must use
3003           explicit interface method implementation syntax.
3005 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
3007         * Dns.cs: Reworked indentation.
3008         Added IPv6 support.
3009         Added literal address checking in GetHostByAddress.
3010         Changed Dns.Resolve behavior.
3011         * IPAddress.cs:
3012         * IPEndPoint.cs: Added IPv6 support.
3013         * IPv6Address.cs: Added address compression.
3014         * NetConfig.cs: Added configuration section.    
3016 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
3018         * ServicePoint.cs: Removed Connect and GetEndPoint methods.
3019         Removed reverse resolution when uri is literal IP address. 
3020         * WebConnection.cs: IPv6 compatibility update: Try to connect
3021         to all addresses returned by IPHostEntry.
3022         * WebConnectionGroup.cs: Removed unused parameter. 
3024 2003-07-13  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
3026         * WebProxy.cs: Add serialization/ deserialization support
3028 2003-07-10  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
3030         * ProxyUseType.cs:
3031         * WebStatus.cs: Deleted (do not exist in this assembly)
3032         * IPv6Address.cs: Made internal
3034 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3036         * HttpWebRequest.cs:
3037         * ServicePointManager.cs:
3038         * WebConnection.cs: added support for proxies.
3040 2003-07-05  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
3042         * DnsPermissionAttribute.cs:
3043         * SocketPermissionAttribute.cs: Fixed wrong AttributeUsageAttribute
3045 2003-07-05  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
3047         * WebPermission.cs: Added and partially implemented
3048         * WebPermissionAttribute.cs: Added and implemented
3050 2003-07-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3052         * WebClient.cs: fixed bug #45651.
3054 2003-06-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3056         * WebClient.cs: Small fix by Sebastian <scut@nb.in-berlin.de>.
3058 2003-06-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3060         * WebConnection.cs: fixed header writing the reusing a connection and
3061         the server does not send 100-continue response.
3063 2003-06-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3065         * WebConnection.cs: close the socket and connection when disposing.
3066         * WebRequest.cs: removed setter for RequestUri. Allow non-public ctors
3067         when creating instances.
3069         * HttpWebRequest.cs:
3070         * HttpWebResponse.cs:
3071         * FileWebRequest.cs: support serialization.
3073         * FileWebResponse.cs: support serialization and fixed dispose checks.
3075         * FileWebRequestCreator.cs:
3076         * HttpRequestCreator.cs: added internal .ctor.
3078 2003-06-24  Lluis Sanchez Gual <lluis@ximian.com>
3080         * HttpWebRequest.cs: SetWriteStream(): SendRequestHeaders should be
3081         called before asyncWrite.SetCompleted, to make sure that the waiting
3082         thread does not start to send more information before
3083         SendRequestHeaders has finished.
3085 2003-06-22  Lluis Sanchez Gual <lluis@ximian.com>
3087         * WebConnectionStream.cs: Only increment pendingReads if an asynchronous
3088         read is really needed.
3090 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3092         * WebHeaderCollection.cs: prevent duplication headers used niternally.
3094 2003-06-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3096         * HttpWebRequest.cs: if CookieContainer has not been set, make
3097         HttpWebResponse ignore Set-Cookie* headers.
3099         * HttpWebResponse.cs: Set-Cookie and Set-Cookie headers removed if
3100         CookieContainer have been provided to the request.
3102 2003-06-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3104         * AuthenticationManager.cs: get the list of authentication modules from
3105         the configuration files. Added Clear and fixed Unregister.
3107         * BasicClient.cs: fully implemented.
3109         * HttpWebRequest.cs: added support for Basic authentication when
3110         credentials are set.
3112         * NetworkCredential.cs: fixed GetCredential.
3114 2003-06-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3116         * HttpWebRequest.cs: *really* take care of requestSent to prevent
3117         sending the same request twice.
3118         * WebAsyncResult.cs: don't close the handle. Just Reset.
3119         * WebConnectionStream.cs: removed unneeded line.
3121 2003-06-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3123         * HttpWebRequest.cs: use InternalClose when we are not going to send the
3124         rest of the request stream because of an error after sending the
3125         headers.
3127         * WebConnection.cs: check for completion after setting the response.
3128         Enable reading in NextRead.
3130         * WebConnectionStream.cs: re-fixed the count for partially buffered
3131         reads. If the network stream returns 0 bytes, we're done.
3133 2003-06-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3135         * WebClient.cs: implemented UploadFile. Fixed SetupRequest to set the
3136         special headers *after* the others.
3138 2003-06-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3140         * WebConnectionStream.cs: when the read is partially filled from the
3141         initial buffer, add those bytes too. Thanks to Lluis for debugging this.
3143 2003-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3145         * HttpWebRequest.cs: added ExpectContinue property.
3146         * WebConnection.cs: allow 100 Continue to be delayed after waiting for
3147         it.
3149 2003-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3151         * HttpWebRequest.cs: don't send "Expect: 100-continue" is the server
3152         is known not to respond to that.
3154         * ServicePoint.cs: added SendContinue property.
3156         * WebConnection.cs: only wait 2 seconds for a continue reply. If it
3157         timeouts, set SendContinue to false and proceeed sending data.
3159         * WebConnectionStream.cs: if 100-continue is not received and instead we
3160         get a 417 or anything else, don't send the data.
3162         * WebClient.cs: implemented all missing properties and methods except
3163         UploadFile.
3165 2003-06-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3167         * FileWebRequestCreator.cs: splitted from WebRequest.
3168         * HttpRequestCreator.cs: splitted fromWebRequest.
3169         * WebRequest.cs: added methods that are used by the new configuration
3170         handler to set prefix/type name requests creators.
3172 2003-06-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3174         * AuthenticationManager.cs:
3175         * Authorization.cs:
3176         * BasicClient.cs: new file.
3177         * ChunkStream.cs: new file.
3178         * Cookie.cs:
3179         * CookieContainer.cs:
3180         * GlobalProxySelection.cs:
3181         * HttpWebRequest.cs:
3182         * HttpWebResponse.cs:
3183         * IAuthenticationModule.cs:
3184         * ServicePoint.cs:
3185         * ServicePointManager.cs:
3186         * WebAsyncResult.cs: new file.
3187         * WebConnection.cs: new file.
3188         * WebConnectionData.cs: new file.
3189         * WebConnectionGroup.cs: new file.
3190         * WebConnectionStream.cs: new file.
3191         * WebException.cs:
3192         * WebHeaderCollection.cs:
3193         * WebProxy.cs:
3194         * WebResponse.cs:
3196         Reworked HttpWebRequest and related classes.
3198 2003-05-30  Miguel de Icaza  <miguel@ximian.com>
3200         * HttpWebRequest.cs (EndGetResponse): Do not throw exceptions on
3201         InternalServerError (500)
3203 2003-05-29  Miguel de Icaza  <miguel@ximian.com>
3205         * HttpWebRequest.cs (Close): Move the code that accumulates the
3206         output to Close from Flush.  Flush could have been called in the
3207         middle of the processing, and would have generated invalid results
3208         (which it did).
3210 2003-05-23  Zoltan Varga  <vargaz@freemail.hu>
3212         * Dns.cs (GetHostByAddress): Return the local host when called with
3213         IF_ANY.
3215 2003-04-29  Miguel de Icaza  <miguel@ximian.com>
3217         * WebClient.cs (DownloadData): Close the underlyng stream.
3218         (DownloadFile): Use using, so the file gets closed.
3220 2003-04-24  Miguel de Icaza  <miguel@ximian.com>
3222         * WebClient.cs (DownloadData): Instead of using a MemoryStream,
3223         keep track of all the small chunks in an ArrayList.  The
3224         MemoryStream had the property of reallocating itself, and the
3225         problem was that MemoryStream.GetBuffer would return the buffer
3226         (correctly), but not something of the right size.  So clients of
3227         DownloadData would get the extra unused bytes as part of the
3228         result.
3230         The solution would have been to make another copy at this point,
3231         instead, we only keep the small allocations around in the
3232         ArrayList, and we only do one large allocation at the end.
3234         * HttpWebResponse.cs: If there is a Content-Length header, pass
3235         this information to our HttpWebResponseStream, so it knows when to
3236         stop, instead of waiting for the stream to be shut down by the
3237         other end.
3239         * HttpWebRequest.cs: Only set the `delay-header-writing' mode on
3240         the underlying stream if the method will do a content transfer and
3241         no Content-Length was provided. If not (HEAD and GET or
3242         Content-Length provided), keep going.
3243         
3244 2003-04-23  Miguel de Icaza  <miguel@ximian.com>
3246         * HttpWebRequest.cs: .NET Allows the HttpWebRequest to not have
3247         the ContentLength specified on the request.  If that happens, we
3248         have to accumulate all the data written, and once we accumulate
3249         the data, we send it off.  
3251         Notice that the documentation in .NET is actually incorrect, they
3252         state that setting ContentLength is mandatory.  It is not.
3254 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3256         * HttpWebResponse.cs: fixes bug #41180.
3258 2003-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3260         * HttpWebRequest.cs: throw an exception is the response code is >= 300.
3262 2003-03-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3264         * HttpWebRequest.cs: implemented IDisposable, make the request stream
3265         read only. Changed the way of disposing the socket.
3267         * HttpWebResponse.cs: wrapped the socket in a write-only NetworkStream,
3268         handle chunked transfer encoding (no more hangs), added serialization
3269         stuff, call CheckDisposed at the beginning of methods/properties (not
3270         in a finally clause).
3272 2003-02-17  Nick Drochak <ndrochak@gol.com>
3274         * WebClient.cs : Implemented Credentials property.
3276 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3278         * SocketAddress.cs: byte 1 of the data is the high byte of the family,
3279         not the size.
3281 2003-01-29  Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
3283         * WebClient.cs : hacked OpenRead, DownloadData and DownloadFile.
3285 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3287         * HttpWebRequest.cs: applied patch from Tim Haynes
3288         (thaynes@openlinksw.com).
3290         Avoided double-sending of the request to the server when both
3291         GetRequestStream() and GetResponse() are called.
3292         System Header attributes survive the Headers attribute set.
3293         Added handling of Connection: KeepAlive/Close
3295 2002-10-03  Dick Porter  <dick@ximian.com>
3297         * Dns.cs: Fixed GetHostName()
3299 2002-09-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3301         * HttpWebRequest.cs:
3302         * HttpWebResponse.cs: applied another patch from Shahms E. King
3303         (shahms@shahms.com).
3305 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3307         * HttpWebRequest.cs:
3308         * HttpWebResponse.cs: applied patch from Shahms E. King
3309         (shahms@shahms.com).
3311 2002-05-29  Lawrence Pit <loz@cable.a2000.nl>
3313         * MonoHttpDate.cs: added
3314         * HttpWebRequest.cs: using MonoHttpDate
3315         * HttpWebResponse.cs: using MonoHttpDate
3316         * DnsPermission.cs: correct XML output
3317         * SocketPermission.cs: correct XML output
3319 2002-05-21  Lawrence Pit <loz@cable.a2000.nl>
3321         * WebClient.cs: stubbed
3322         * WebProxy.cs: fixed bug; had to change internal representation
3323         of bypasslist to ArrayList, different implementation of checking
3324         regex's.
3326 2002-05-20  Lawrence Pit <loz@cable.a2000.nl>
3328         * WebProxy.cs: added, implemented
3329         * ServicePoint.cs: implemented most
3330         * ServicePointManager.cs: implemented
3331         * HttpWebRequest.cs: started implementation
3332         * HttpWebResponse.cs: improved disposable routines
3333         * FileWebRequest.cs: slight improvement of Close method
3334         
3335 2002-05-19  Lawrence Pit <loz@cable.a2000.nl>
3337         * FileWebRequest.cs: finished implementation of async methods.
3338         * FileWebResponse.cs: improved disposable routines.
3339         * IPEndPoint.cs: fixed bug #24666 in Serialize and Create methods, 
3340         byte ordering of address was backwards.
3342 2002-05-13  Lawrence Pit <loz@cable.a2000.nl>
3344         * Dns.cs: Reimplemented (simplified and fixed) asynchronous methods by
3345         relying on standard asynchronous delegate features. Added checks for
3346         null strings.
3347         * HttpWebResponse.cs: implemented properties
3348         * FileWebResponse.cs: improved the way resources are disposed.
3349         * FileWebRequest.cs: started implementation of asynchronous methods
3350         * ServicePointManager.cs: implemented properties
3352 2002-05-12  Lawrence Pit <loz@cable.a2000.nl>
3354         * HttpWebRequest.cs: properties implemented
3355         * HttpWebResponse.cs: added
3356         * GlobalProxySelection.cs: implemented
3357         * FileWebResponse.cs: added
3358         * FileWebRequest.cs: some methods implemented
3360 2002-05-11  Lawrence Pit <loz@cable.a2000.nl>
3362         * WebHeaderCollection.cs: implemented
3363         * WebRequest.cs: implemented
3364         * FileWebRequest.cs and HttpWebRequest.cs stubs added
3366 2002-05-09  Lawrence Pit <loz@cable.a2000.nl>
3368         * Rewrote IPAddress.Parse method, passing all unit tests
3370 2002-05-09  Lawrence Pit <loz@cable.a2000.nl>
3372         * fixed bug in IPEndPoint.Equals method
3373         * fixed bug in IPAddress.Parse method
3374         * fixed bug in IPAddress.SwapLong method
3375         * fixed several bugs in Cookie.cs
3377 2002-05-06  Lawrence Pit <loz@cable.a2000.nl>
3379         * WebRequest.cs: added
3380         * WebResponse.cs: implemented
3381         * WebException.cs: implemented
3382         * WebHeaderCollection.cs: added
3383         * HttpVersion.cs: implemented
3384         * HttpContinueDelegate.cs: added
3385         * IWebProxy.cs: added
3386         * IWebRequestCreate.cs: added
3387         * ICertificatePolicy.cs: added
3388         * ServicePoint.cs: stubbed
3389         * ServicePointManager.cs: stubbed
3390         * CookieContainer.cs: added
3391         * Authorization.cs: implemented
3393 2002-05-05  Lawrence Pit <loz@cable.a2000.nl>
3395         * CredentialCache.cs: implemented
3397 2002-05-05  Lawrence Pit <loz@cable.a2000.nl>
3399         * IPAddress.cs: fixed IsLoopback, address was already in host order
3401 2002-05-05  Lawrence Pit <loz@cable.a2000.nl>
3403         * IPv6Address.cs: added (note: not part of .net spec)
3405 2002-05-01  Lawrence Pit <loz@cable.a2000.nl>
3407         * DnsPermission.cs: implemented
3408         * DnsPermissionAttribute.cs: implemented
3410 2002-04-28  Lawrence Pit <loz@cable.a2000.nl>
3412         * EndpointPermission.cs: implemented
3413         * SocketPermission.cs: implemented
3414         * SocketPermissionAttribute.cs: implemented
3415         * ProtocolViolationException.cs: implemented
3416         * Dns.c: passing w32 error code when no host found
3418 2002-04-27  Lawrence Pit <loz@cable.a2000.nl>
3420         * Cookie.cs: implemented
3421         * CookieCollection.cs: implemented
3422         * CookieException.cs: implemented
3424 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3426         * IPAddress.cs: initialize the read only fields with Parse().
3428 2002-04-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3430         * IPAddress.cs: little changes to behave as MS.
3432 2002-04-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3434         * Dns.cs (Resolve): behave as MS. Agreed with Mads.
3436 2002-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3438         * IPAddress.cs: the icalls for sockets are endianness-aware. So I
3439         changed a few things. Also included a workaround for bug #23547.
3441 2002-04-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3443         * IPAddress.cs: use System.BitConverter.IsLittleEndian (suggested
3444         by Paolo) instead of guessing the endianness.
3446         * SocketAddress.cs: implemented Equals() and GetHashcode().
3447         
3448 2002-04-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3450         * IPEndPoint.cs: modifications to constructors according to the
3451         specifications (suggested by Lawrence Pit).
3453 2002-04-15  Patrik Torstensson <patrik.torstensson@labs2.com>
3455         * IPEndPoint.cs: Fixed build breaker.
3457 2002-04-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3459         * IPEndPoint.cs: implemented Equals() and GetHashCode(). Now 100%
3460         complete.
3462 2002-04-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3464         * IPAddress.cs: finished all MonoTODO's. Use network order to store 
3465         the address. Check for max and min values in Address:set. IsLoopback()
3466         returns now true for all 127.x.y.z. Some more checks in Parse ().
3467         Some changes to behave as MS does.
3469 2002-02-24  Duncan Mak  <duncan@ximian.com>
3471         * ICredentialLookup.cs: Added the GetCredential method to the
3472         interface. The interface is named "ICredentials", should this file
3473         be renamed?     
3475         * NetworkCredential.cs: Added to CVS. Need to investigate on how
3476         GetCredential() works
3478 2002-01-23  Dick Porter  <dick@ximian.com>
3480         * SocketAddress.cs: Implemented.
3482         * IPEndPoint.cs: Turned 'Address' field into a real property.
3483         Implemented Create() and Serialize() methods.
3485         * IPAddress.cs: Fixed class constructor, turned 'Address' field
3486         into a real property. Removed undocumented "public
3487         IPAddress(string)" constructor.
3489         * EndPoint.cs: Implemented.  All methods return
3490         NotSupportedException to enforce subclass overriding.
3492         * Dns.cs: Replaced fixed-layout Hostent struct and cygwin
3493         P/Invokes with portable internal calls.
3495 2002-01-17  Miguel de Icaza  <miguel@ximian.com>
3497         * Dns.cs: Updated to API changes.
3499         * IPAddress.cs: Updated API.  Much left to implement.
3501         * Dns.cs: Remove IPToString method
3503 2002-01-06  Ravi Pratap  <ravi@ximian.com>
3505         * Dns.cs, AuthenticationManager.cs, SocketAddress.cs : MonoTODO
3506         attribute insertion.
3508 2001-11-22  Nick Drochak <ndrochak@gol.com>
3510         * IPAddress.cs: Fix constructor bug, properly name Address property,
3511         and use triple-slash for comments.
3513 2001-11-20  Miguel de Icaza  <miguel@ximian.com>
3515         * IPAddress.cs: Updated to contain Any, Broadcast, Loopback and
3516         None as suggested by Phillip.
3518 2001-09-26  Mads Pultz <mpultz@get2net.dk>
3519         * Dns.cs: Initial work on BeginGetHostByName and EndGetHostByName implemented.
3521 2001-09-24  Mads Pultz <mpultz@get2net.dk>
3523         * Dns.cs: Minor changes (some print statements removed)
3525 2001-09-23  Mads Pultz <mpultz@get2net.dk>
3527         * Dns.cs: Initial work submitted to repository.
3528         * IPHostEntry.cs: Initial work submitted to repository.
3530 2001-07-12  Sean MacIsaac  <macisaac@ximian.com>
3532         * Authorization.cs: Fixed compiler error.
3534         * IAuthenticationModule.cs: Changes for Beta2.
3536         * IPAddress.cs: Internal storage changed to be uint not int.
3538         * IPEndPoint.cs: Fixed compiler error.
3540         * EndPoint.cs: Fixed compiler error.
3542         * AuthenticationManager.cs: Fixed typo.