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