Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJb Evain <jbevain@gmail.com>2008-08-21 01:25:05 +0400
committerJb Evain <jbevain@gmail.com>2008-08-21 01:25:05 +0400
commit982e3b35a4b715fa86ef2037501bfa1c89dd5038 (patch)
tree1ba1f442ea12faa4ffbb8fca8c6e429a53f6cfc9 /mcs/class/System.ServiceModel.Web/System.ServiceModel.Dispatcher/ChangeLog
parentbdd0809c70020fc9c381c4310c346368e195fe76 (diff)
move to from olive to mcs
svn path=/trunk/mcs/; revision=111188
Diffstat (limited to 'mcs/class/System.ServiceModel.Web/System.ServiceModel.Dispatcher/ChangeLog')
-rw-r--r--mcs/class/System.ServiceModel.Web/System.ServiceModel.Dispatcher/ChangeLog81
1 files changed, 81 insertions, 0 deletions
diff --git a/mcs/class/System.ServiceModel.Web/System.ServiceModel.Dispatcher/ChangeLog b/mcs/class/System.ServiceModel.Web/System.ServiceModel.Dispatcher/ChangeLog
new file mode 100644
index 00000000000..eb919ace3b2
--- /dev/null
+++ b/mcs/class/System.ServiceModel.Web/System.ServiceModel.Dispatcher/ChangeLog
@@ -0,0 +1,81 @@
+2008-04-16 Atsushi Enomoto <atsushi@ximian.com>
+
+ * WebMessageFormatter.cs : now that ReadObject() verifies
+ by default, it broke deserialization. Fixed it.
+
+2008-02-18 Atsushi Enomoto <atsushi@ximian.com>
+
+ * JsonQueryStringConverter.cs : implemented.
+
+2008-02-17 Atsushi Enomoto <atsushi@ximian.com>
+
+ * WebMessageFormatter.cs : implement WebOperationContext support.
+
+2008-02-16 Atsushi Enomoto <atsushi@ximian.com>
+
+ * WebHttpDispatchOperationSelector.cs : some code cleanup.
+
+2008-02-16 Atsushi Enomoto <atsushi@ximian.com>
+
+ * WebMessageFormatter.cs : fixed content-type typo.
+
+2008-02-16 Atsushi Enomoto <atsushi@ximian.com>
+
+ * WebMessageFormatter.cs : implemented DeserializeReply().
+ It was wrong to have one MessageDescription in a formatter, as
+ they are different between serialization and deserialization.
+
+2008-02-16 Atsushi Enomoto <atsushi@ximian.com>
+
+ * WebMessageFormatter.cs : oops oops. not "encoding" but "charset".
+
+2008-02-15 Atsushi Enomoto <atsushi@ximian.com>
+
+ * WebMessageFormatter.cs : hack SerializeReply().
+ Add WebBodyFormat property
+
+2008-02-15 Atsushi Enomoto <atsushi@ximian.com>
+
+ * WebMessageFormatter.cs : implement DeserializeRequest().
+
+2008-02-15 Atsushi Enomoto <atsushi@ximian.com>
+
+ * WebMessageFormatter.cs : attach a HttpRequestMessageProperty when
+ creating a request Message.
+
+2008-02-15 Atsushi Enomoto <atsushi@ximian.com>
+
+ * WebHttpDispatchOperationSelector.cs : implemented large part of it.
+ * WebMessageFormatter.cs : moved BuildUriTemplate to WebAttributeInfo.
+
+2008-02-14 Atsushi Enomoto <atsushi@ximian.com>
+
+ * WebMessageFormatter.cs : pass WebHttpBehavior too.
+
+2008-02-14 Atsushi Enomoto <atsushi@ximian.com>
+
+ * WebMessageFormatter.cs : pass QueryStringConverter which is used to
+ convert parameter objects to the components of the request URI.
+
+2008-02-14 Atsushi Enomoto <atsushi@ximian.com>
+
+ * WebMessageFormatter.cs : new message formatter that is created
+ from WebHttpBehavior and handles [WebGet] or [WebInvoke]. Not done.
+
+2008-02-13 Atsushi Enomoto <atsushi@ximian.com>
+
+ * QueryStringConverter.cs : I could just check null parameter.
+
+2008-02-13 Atsushi Enomoto <atsushi@ximian.com>
+
+ * QueryStringConverter.cs: CanConvert() supports cpl more types.
+ Implemented ConvertStringToValue() and ConvertValueToString().
+
+2008-02-12 Atsushi Enomoto <atsushi@ximian.com>
+
+ * WebHttpDispatchOperationSelector.cs : stubbed members.
+
+2008-02-07 Atsushi Enomoto <atsushi@ximian.com>
+
+ * JsonQueryStringConverter.cs, QueryStringConverter.cs,
+ WebHttpDispatchOperationSelector.cs : mostly stubs.