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:
Diffstat (limited to 'mcs/class/System.ServiceModel/System.ServiceModel.Channels/ChangeLog')
-rwxr-xr-xmcs/class/System.ServiceModel/System.ServiceModel.Channels/ChangeLog60
1 files changed, 60 insertions, 0 deletions
diff --git a/mcs/class/System.ServiceModel/System.ServiceModel.Channels/ChangeLog b/mcs/class/System.ServiceModel/System.ServiceModel.Channels/ChangeLog
index 14baa1af374..c77856f29d6 100755
--- a/mcs/class/System.ServiceModel/System.ServiceModel.Channels/ChangeLog
+++ b/mcs/class/System.ServiceModel/System.ServiceModel.Channels/ChangeLog
@@ -1,3 +1,63 @@
+2009-08-17 Atsushi Enomoto <atsushi@ximian.com>
+
+ * ReplyChannelBase.cs, DuplexChannelBase.cs, RequestChannelBase.cs:
+ implement GetProperty<T>() and return its channel manager.
+
+2009-08-17 Atsushi Enomoto <atsushi@ximian.com>
+
+ * PeerDuplexChannel.cs : ongoing implementation. Fix wrong peer
+ destination address in Connect() request. To repeat sending
+ request, use buffered copy. Set some peer-channel specific
+ header items. (todo: and consume them.)
+
+2009-08-17 Atsushi Enomoto <atsushi@ximian.com>
+
+ * Message.cs : state is set only after WriteBodyContents().
+
+2009-08-17 Atsushi Enomoto <atsushi@ximian.com>
+
+ * MessageHeaders.cs : eliminate wrong use of
+ ReadElementContentAsString() (it is not always simple string).
+
+2009-08-17 Atsushi Enomoto <atsushi@ximian.com>
+
+ * MessageHeaders.cs : when the value is null, do not try to
+ deserialize EndpointAddress.
+
+2009-08-17 Atsushi Enomoto <atsushi@ximian.com>
+
+ * MessageHeader.cs : add Value property. (Forgot dependent change.)
+
+2009-08-17 Atsushi Enomoto <atsushi@ximian.com>
+
+ * MessageHeaders.cs : GetHeader<T>() could mostly skip extra
+ serialization and deserialization of values.
+
+2009-08-14 Atsushi Enomoto <atsushi@ximian.com>
+
+ * PeerDuplexChannel.cs : handle Welcome and Refuse at client side.
+ Now simply use connector contract.
+
+2009-08-14 Atsushi Enomoto <atsushi@ximian.com>
+
+ * PeerDuplexChannel.cs : handle Disconnect(). Fix URLs a bit.
+
+2009-08-14 Atsushi Enomoto <atsushi@ximian.com>
+
+ * TcpChannelListener.cs : do not try to compare dead connection's
+ IPEndPoint (it raises an error).
+
+2009-08-14 Atsushi Enomoto <atsushi@ximian.com>
+
+ * MessageHeaders.cs : allow null header value on each specific setter.
+
+2009-08-14 Atsushi Enomoto <atsushi@ximian.com>
+
+ * DuplexChannelBase.cs, TcpDuplexSessionChannel.cs :
+ get local and remote address of connected counterpart to get
+ callback channel connected.
+ * PeerDuplexChannel.cs : remove FIXME wrt above.
+
2009-08-07 Atsushi Enomoto <atsushi@ximian.com>
* PeerDuplexChannel.cs : add fixme comment and remove extra FIXME.