1

我是 WCF 的新手,我有使用 WCF 服务作为数据访问层的 Web 应用程序。我正在使用 wcf 服务库并在 IIS7 上托管它。它适用于少数初始服务调用,但会挂起应用程序以供进一步请求。当我重置 IIS 时,它又可以正常工作一段时间了。下面是 web app 的 web.config 中的服务配置

 <system.serviceModel>
<bindings>
  <wsHttpBinding>
    <binding name="WSHttpBinding_IRoaster" closeTimeout="00:10:00"
      openTimeout="00:01:00" receiveTimeout="00:02:00" sendTimeout="00:03:00"
      bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard"
      maxBufferPoolSize="524288" maxReceivedMessageSize="199999488" messageEncoding="Text"
      textEncoding="utf-8" useDefaultWebProxy="true" allowCookies="false">
               <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
        maxBytesPerRead="4096" maxNameTableCharCount="16384" />
               <reliableSession ordered="true" inactivityTimeout="00:10:00"
        enabled="false" />
               <security mode="Message">
        <transport clientCredentialType="Windows" proxyCredentialType="None"
          realm="" />
                    <message clientCredentialType="Windows" negotiateServiceCredential="true"
          algorithmSuite="Default" />
      </security>
    </binding>
  </wsHttpBinding>
</bindings>
<client>
  <endpoint address="http://asdf.com/RoasterService/RoasterService.Roaster.svc"
    binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IRoaster"
    contract="RoasterService.IRoaster" name="WSHttpBinding_IRoaster">
    <identity>
      <dns value="localhost" />
    </identity>
  </endpoint>
</client>

如果我评论所有的 wcf 调用,那么对于虚拟值应用程序是否可以正常工作。请提出适当的解决方案

4

1 回答 1

1

您可能没有在请求结束时释放 WCF 客户端实例。查看这篇文章,了解与 WCF 客户端合作时遇到的问题。

于 2012-11-15T13:32:44.343 回答