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