English 中文(简体)
Asp.net 网上服务电话,在IIS制造许多深层
原标题:Asp.net webservice call creating lot of threads in IIS

我拥有一个网络服务,与一个服务台最高应用程序连接。 净重。 客户或用户正在利用这一网络服务,在数据基上插入或更新任何数据(经过一些处理后通过桌面上的应用)。 高峰时期面临的问题是,这意味着2000年——3 000次这一网络服务,在15至20分钟内插入/更新数据。 i 可以看出,校对数量在2000年左右有所增加。 (在湿重3.exe的任务管理中)。 创造这些深层的可能原因是什么? 由于能够看到其他网络服务只显示不到50条线。

NB:引起这一问题的网络服务是分散应用。

成就

问题回答

It means many calls are waiting for response. Since ASP.NET uses thread pool, you should use them for fast operations or instead use ASYNC handlers so the thread backs to the pool and ASP.NET assigns a new thread as soon as the result gets ready.

这可能是由于在<代码>BRL或或任何其他方面陷入僵局所致。 在网络服务守则中设置一个空白点,发现哪里被封锁。





相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Transaction handling with TransactionScope

I am implementing Transaction using TransactionScope with the help this MSDN article http://msdn.microsoft.com/en-us/library/system.transactions.transactionscope.aspx I just want to confirm that is ...

System.Web.Mvc.Controller Initialize

i have the following base controller... public class BaseController : Controller { protected override void Initialize(System.Web.Routing.RequestContext requestContext) { if (...

Microsoft.Contracts namespace

For what it is necessary Microsoft.Contracts namespace in asp.net? I mean, in what cases I could write using Microsoft.Contracts;?

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!