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