WCF 无法不时找到终结点

本文关键字:结点 WCF | 更新日期: 2023-09-27 18:35:52

找不到引用协定的默认终结点元素 ServiceModel 客户端中的"XXXServiceReference.XXXService" 配置部分。这可能是因为没有配置文件 为您的应用程序找到,或者因为没有匹配的端点元素 此协定可以在客户端元素中找到。

异常,但是我不时收到此错误(1/3失败)这里可能遇到的问题是我的配置文件

 <system.serviceModel>
    <client>
      <endpoint address="http://address:8091/XXXService.svc"
        binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IXXXService"
        contract="XXXServiceReference.IXXXService" name="BasicHttpBinding_IXXXService" />
    </client>
    <bindings>
      <basicHttpBinding>
        <binding name="BasicHttpBinding_IXXXService" />
      </basicHttpBinding>
    </bindings>
  </system.serviceModel>

我定义我的服务是这样的

private XXXServiceClient sClient;
 bool success = false;
 int numOfEntrance = 0;
 while (!success && (numOfEntrance < 20))
 {
      numOfEntrance++;
      try
      {
           sClient = new XXXServiceClient();
           success = true;
      }
      catch (Exception)
      {
          success = false;
          Thread.Sleep(500);
          if (numOfEntrance == 19)
          MessageBox.Show("Connection Problem");
      }
  }

我试过这个,因为它不时进入。我想虽然可能是摆脱这个问题的机会,但事实并非如此。可能有什么问题?可能是因为服务提供商。顺便说一句,我试图从合同中删除"XXXServiceClient"部分,但它不起作用。

WCF 无法不时找到终结点

我怀疑这是由于 IIS 托管商不稳定或托管站点空闲然后必须在下一次调用时预热引起的。 以下帖子介绍了如何将 IIS applicationHost.config配置为自动启动:

http://weblogs.asp.net/scottgu/auto-start-asp-net-applications-vs-2010-and-net-4-0-series