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