Web Service调用如何等待N秒并中止

时间:2012-09-01 22:26:52

标签: web-services c#-3.0

我们有一个SLA,第三方RESTfull Web服务必须在5秒内返回响应。否则,我们需要中止服务调用并执行业务逻辑的其他部分。

有人可以帮助我了解如何使用C#.Net。

2 个答案:

答案 0 :(得分:1)

如果您使用WCF调用外部Web服务,则只需将客户端端点绑定配置中的sendTimeout值配置为5秒。然后,如果客户端代理对象没有从外部服务获得回复,则将抛出TImeoutException,您可以处理并继续。示例绑定配置如下所示:

<system.serviceModel>
  <bindings>
    <basicHttpBinding>
      <binding name="myExternalBindingConfig"
               openTimeout="00:01:00"
               closeTimeout="00:01:00"
               sendTimeout="00:05:00"
               receiveTimeout="00:01:00">
       </binding>
    </basicHttpBinding>
  </bindings>
</system.serviceModel>

答案 1 :(得分:0)

让我通过预先提供“标准免责声明”来解释我的答案,我将在这里提供的部分练习被视为 bad ,因为处理非托管代码的可能问题。话虽如此,这是一个答案:

void InitializeWebServiceCall(){

    Thread webServiceCallThread = new Thread(ExecuteWebService);
    webServiceCallThread.Start();
    Thread.Sleep(5000); // make the current thread wait 5 seconds
    if (webServiceCallThread.IsAlive()){
      webServiceCallThread.Abort(); // warning for deprecated/bad practice call!!
    }
}

static void ExecuteWebService(){

    // the details of this are left to the consumer of the method
    int x = WebServiceProxy.CallWebServiceMethodOfInterest();
    // do something fascinating with the result

}

自.NET 2.0以来,调用Thread.Abort()已被弃用,并且通常被认为是一种糟糕的编程习惯,主要是因为可能会与非托管代码发生负面交互。当然,使用代码的风险可供您评估。