* RemotingProxy.cs: On invoke, set the LogicalCallContext of the message.
authorLluis Sanchez <lluis@novell.com>
Thu, 14 Aug 2003 19:50:47 +0000 (19:50 -0000)
committerLluis Sanchez <lluis@novell.com>
Thu, 14 Aug 2003 19:50:47 +0000 (19:50 -0000)
svn path=/trunk/mcs/; revision=17341

mcs/class/corlib/System.Runtime.Remoting.Proxies/ChangeLog
mcs/class/corlib/System.Runtime.Remoting.Proxies/RemotingProxy.cs

index 31404bbf86720d122563b5ad0d70d0a7c046be6e..2fe3b95eeadcbf1909c482886dfe235314328312 100644 (file)
@@ -1,3 +1,7 @@
+2003-08-14  Lluis Sanchez Gual <lluis@ximian.com>
+
+       * RemotingProxy.cs: On invoke, set the LogicalCallContext of the message.
+
 2003-07-28  Duncan Mak  <duncan@ximian.com>
 
        * RealProxy.cs (GetProxiedType): Removed 'virtual' keyword.
index f8beeba62686347a5ed8810f74b55adbceeb63fb..d06f43320a87fe480a715132e745dad8a945d1ed 100644 (file)
@@ -48,6 +48,8 @@ namespace System.Runtime.Remoting.Proxies
                {
                        MonoMethodMessage mMsg = (MonoMethodMessage) request;
 
+                       mMsg.LogicalCallContext = CallContext.CreateLogicalCallContext ();
+
                        if (mMsg.MethodBase.IsConstructor)
                                return ActivateRemoteObject (mMsg);