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