0

元のソースがない特定の COM オブジェクトの機能を公開する WCF サービスを構築しようとしています。コールバック (IAgent) を介して配信される特定の各インスタンスに関連付けられたイベントがあるため、各クライアントが独自のインスタンスを持つように、双方向バインディングを使用しています。最初のアクションの後、サービスが 2 番目のアクションのロックでブロックされるため、デッドロックか何かがあるようです。これらのカスタム STA 属性と操作の動作を実装しようとしました ( http://devlicio.us/blogs/scott_seely/archive/2009/07/17/calling-an-sta-com-object-from-a-wcf-operation. aspx ) しかし、私の OperationContext.Current は常に null です。どんなアドバイスでも大歓迎です。

サービス

コレクション:

private static Dictionary<IAgent, COMAgent> agents = new Dictionary<IAgent, COMAgent>();

最初のアクション:

    public void Login(LoginRequest request)
    {
        IAgent agent = OperationContext.Current.GetCallbackChannel<IAgent>();
        lock (agents)
        {
            if (agents.ContainsKey(agent))
                throw new FaultException("You are already logged in.");
            else
            {
                ICOMClass startup = new ICOMClass();

                string server = ConfigurationManager.AppSettings["Server"];
                int port = Convert.ToInt32(ConfigurationManager.AppSettings["Port"]);
                bool success = startup.Logon(server, port, request.Username, request.Password);

                if (!success)
                    throw new FaultException<COMFault>(new COMFault { ErrorText = "Could not log in." });

                COMAgent comAgent = new COMAgent { Connection = startup };
                comAgent.SomeEvent += new EventHandler<COMEventArgs>(comAgent_COMEvent);
                agents.Add(agent, comAgent);
            }
        }
    }

2 番目のアクション:

    public void Logoff()
    {
        IAgent agent = OperationContext.Current.GetCallbackChannel<IAgent>();
        lock (agents)
        {
            COMAgent comAgent = agents[agent];
            try
            {
                bool success = comAgent.Connection.Logoff();

                if (!success)
                    throw new FaultException<COMFault>(new COMFault { ErrorText = "Could not log off." });

                agents.Remove(agent);
            }
            catch (Exception exc)
            {
                throw new FaultException(exc.Message);
            }
        }
    }
4

1 に答える 1

0

この非常によく似た投稿を見てください: http://www.netfxharmonics.com/2009/07/Accessing-WPF-Generated-Images-Via-WCF

新しく生成されたスレッドから現在の OperationContext にアクセスするには、OperationContextScope を使用する必要があります。

System.Threading.Thread thread = new System.Threading.Thread(new System.Threading.ThreadStart(delegate
    {
        using (System.ServiceModel.OperationContextScope scope = new System.ServiceModel.OperationContextScope(context))
        {
            result = InnerOperationInvoker.Invoke(instance, inputs, out staOutputs);
        }
     }));
于 2010-10-12T09:01:16.890 に答える