0

我正在开发一个 asp.net 应用程序,我正在使用一个 WCF 服务应用程序从该应用程序的数据库中获取数据。客户端应用程序的 webconfig 配置是这样的。

    <system.serviceModel>
   <bindings>
     <wsHttpBinding>
       <binding name="WSHttpBinding_IServicePaymentControllerUIClient"
        closeTimeout="00:01:00" openTimeout="00:01:00" receiveTimeout="00:10:00"
        sendTimeout="00:01:00" bypassProxyOnLocal="false" transactionFlow="false"
        hostNameComparisonMode="StrongWildcard" maxBufferPoolSize="2147483647"
        maxReceivedMessageSize="2147483647" messageEncoding="Text" textEncoding="utf-8"
        useDefaultWebProxy="true" allowCookies="false">
         <readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" maxArrayLength="2147483647"
          maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" />
         <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://localhost:63796/ServicePaymentControllerUIClient.svc"
    binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IServicePaymentControllerUIClient"
    contract="ServiceReferencePaymentControllerUI.IServicePaymentControllerUIClient"
    name="WSHttpBinding_IServicePaymentControllerUIClient">
    <identity>
     <dns value="localhost" />
    </identity>
   </endpoint>
  </client>
 </system.serviceModel>

在使用 WCF 服务之前,我的 asp.net 应用程序非常快,但现在它的加载速度非常慢。所以我想知道它背后的原因以及如何摆脱这个问题?如何提高我的应用程序的性能?

4

1 回答 1

1

我找不到您的配置文件有什么问题。正如您提到的您的请求超时,您应该跟踪错误是什么。

我建议您启用 WCF 跟踪以获取详细信息,配置跟踪源以发出跟踪并设置跟踪级别,设置活动跟踪和传播以支持端到端跟踪关联,并设置跟踪侦听器以访问跟踪。

http://msdn.microsoft.com/en-us/library/ms733025.aspx

http://msdn.microsoft.com/en-us/library/ms751526.aspx

谢谢你,维沙尔·帕特尔

于 2013-10-16T12:01:15.157 回答