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