Moved chain building and validation from Mono.Security to System
[mono.git] / mcs / class / System / System.Net / ChangeLog
index eb928cb813548557afac803a64761be64aecee47..6c227732843b788a340f4c697639fa4a84a0452f 100644 (file)
@@ -1,3 +1,50 @@
+2010-03-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
+
+       * ServicePointManager.cs: perform the entire chain validation here.
+
+2010-03-09 Gonzalo Paniagua Javier <gonzalo@novell.com>
+
+       * HttpConnection.cs: set the right position when a CR is found.
+       Fixes bug #577891.
+
+2010-03-09 Gonzalo Paniagua Javier <gonzalo@novell.com>
+
+       * HttpListener.cs:
+       * HttpListenerRequest.cs:
+       * ListenerAsyncResult.cs:
+       * HttpConnection.cs: make sure there is no pending input when reusing
+       the connection.
+
+2010-03-08 Gonzalo Paniagua Javier <gonzalo@novell.com>
+
+       * HttpListenerContext.cs: split the auth header in 2 parts.
+       * HttpListener.cs: backported SelectAuthenticationScheme and
+       added new InternalEndGetContext used for connections that require
+       authentication.
+       * ListenerAsyncResult.cs: allow this object to be just a forwarder
+       when nesting connections for authentication purposes.
+       Fixes bug #585455.
+
+2010-03-06 Gonzalo Paniagua Javier <gonzalo@novell.com>
+
+       * WebClient.cs: fix for UploadStringAsync(). Closes bug #577818.
+       Patch by Atsushi.
+
+2010-03-04  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * HttpListenerContext.cs : WWW-Authenticate header should not be
+         limited to Basic.
+
+2010-03-04  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * HttpListenerContext.cs : The header line here is already trimmed
+         "Authorization:" , so do not try to remove it.
+
+2010-03-04  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * HttpListener.cs, ListenerAsyncResult.cs : fix authentication
+         scheme selection mismatch.
+
 2010-03-03  Atsushi Enomoto  <atsushi@ximian.com>
 
        * HttpListenerContext.cs, HttpListener.cs :