3

我正在努力在RoutingService上设置 OperationTimeout

问题是消息转发到的服务需要超过 1 分钟才能做出响应。这会导致 RoutingService 上出现 OperationTimeout 异常。

我试图在 RoutingService 的客户端代理上设置 OperationTimeout,但没有成功。

我所做的是添加一个端点行为并在 ApplyClientBehavior 方法中添加一个自定义 IClientMessageInspector。

在自定义 ClientMessageInspector 中,我设置了 OperationTimeout,就像您在此代码片段中看到的那样。

    public object BeforeSendRequest(ref Message request, IClientChannel channel)
    {
        var contextChannel = channel as IContextChannel;
        contextChannel.OperationTimeout = new TimeSpan(0, 10, 0);

        return request;
    }

对我来说,此时我似乎为时已晚,因此 RoutingService 生成的代理并不关心这个设置,可能是这样吗?

有什么建议么?

4

2 回答 2

1

在 web.config 中设置 SendTimeout 在下面

<binding name="myBindingName" sendTimeout="00:10:00"
                 closeTimeout="00:10:00" openTimeout="00:10:00" receiveTimeout="00:10:00" 
                 maxBufferSize="2147483647"
                 maxBufferPoolSize="2147483647"
                 maxReceivedMessageSize="2147483647"
                 crossDomainScriptAccessEnabled="true" />
于 2012-12-17T14:22:01.653 回答
1

我找到了如何解决这个问题的解决方案。

您只需要在路由器的客户端端点的绑定上设置 SendTimeout。创建代理时,路由器将在其通道上设置 OperationTimeout=SendTimeout。

            // add the endpoint the router uses to receive messages
            serviceHost.AddServiceEndpoint(
                 typeof(IRequestReplyRouter),
                 new BasicHttpBinding(), 
                 "http://localhost:8000/routingservice/router");

            // create the client endpoint the router routes messages to
            var client = new ServiceEndpoint(
                                            ContractDescription.GetContract(typeof(IRequestReplyRouter)), 
                                            new NetTcpBinding(),
                                            new EndpointAddress("net.tcp://localhost:8008/MyBackendService.svc"));

            // Set SendTimeout, this will be used from the router generated proxy as OperationTimeout
            client.Binding.SendTimeout = new TimeSpan(0, 10, 0);
于 2012-12-18T10:13:57.710 回答