2010-04-06 Atsushi Enomoto <atsushi@ximian.com>
authorAtsushi Eno <atsushieno@gmail.com>
Tue, 6 Apr 2010 11:13:49 +0000 (11:13 -0000)
committerAtsushi Eno <atsushieno@gmail.com>
Tue, 6 Apr 2010 11:13:49 +0000 (11:13 -0000)
* HttpRequestChannel.cs : add commented note.

svn path=/trunk/mcs/; revision=154838

mcs/class/System.ServiceModel/System.ServiceModel.Channels/ChangeLog
mcs/class/System.ServiceModel/System.ServiceModel.Channels/HttpRequestChannel.cs

index cd3e77a98cdc44c0cae83da57440af06848f7991..4eb313f0161190ee467a5f052f9248c67491f04b 100755 (executable)
@@ -1,3 +1,7 @@
+2010-04-06  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * HttpRequestChannel.cs : add commented note.
+
 2010-04-06  Atsushi Enomoto  <atsushi@ximian.com>
 
        * HttpReplyChannel.cs : fill To header only if it does not exist.
index c6a9e6f80ff24aab26eb4f64632fb269a4b4bae3..4bae6026237252bad1bf95b9c5ccf720bea05541 100644 (file)
@@ -146,6 +146,13 @@ namespace System.ServiceModel.Channels
                        }
 #endif
 
+/*
+// FIXME: this causes invalid message security.
+var mb = message.CreateBufferedCopy (0x10000);
+message = mb.CreateMessage ();
+Console.WriteLine (mb.CreateMessage ());
+*/
+
                        if (!suppressEntityBody && String.Compare (web_request.Method, "GET", StringComparison.OrdinalIgnoreCase) != 0) {
                                MemoryStream buffer = new MemoryStream ();
                                Encoder.WriteMessage (message, buffer);