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