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