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