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