WCF服务应用程序后 asp.net 应用程序的工作速度非常慢
本文关键字:应用程序 工作 速度 非常 net 服务 asp WCF | 更新日期: 2023-09-27 18:32:31
我正在开发一个 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 应用程序非常快,但现在它的加载速度非常慢。所以我想知道它背后的原因以及如何摆脱这个问题?如何提高应用程序的性能?
我找不到你的配置文件有问题。正如您提到的,您的请求超时,您应该跟踪错误是什么。
我建议您启用 WCF 跟踪以获取详细信息,配置跟踪源以发出跟踪并设置跟踪级别,设置活动跟踪和传播以支持端到端跟踪关联,并设置跟踪侦听器以访问跟踪。
http://msdn.microsoft.com/en-us/library/ms733025.aspx
http://msdn.microsoft.com/en-us/library/ms751526.aspx
谢谢维沙尔·帕特尔