如何调试 ASP.NET 2.0 Web 服务应用程序中的泄漏连接?
我有一个应用程序,它是一堆 C# Web 服务,位于 Win2k3 上 IIS7 中的 ASP.NET 2.0 之上。 在上一个版本之后,我们不断遇到连接超时问题。 使用 Perfmon 进行的快速调查证实我们的应用程序正在泄漏连接。
然而上一个版本的代码改动实在是太多了,仅仅通过查看代码改动确实很难确定问题出在哪里。
有没有办法调试实际发生连接泄漏的位置?
I have an app, which is a bunch of c# web services sitting on top of ASP.NET 2.0 in IIS7 on Win2k3. Following the last release, we keep getting connection timeouts. A quick investigation using Perfmon confirmed that our application is leaking connections.
However, there have been so many code changes in the last release, that it is really difficult to determine where the problem is just by looking at code changes.
Is there a way to debug where the connection leaks are actually occurring?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用性能计数器来检查内存泄漏。
请参阅此链接:
http://msdn.microsoft.com/en-us/library/fxk122b4。 aspx
它可以判断你的应用程序是否存在内存泄漏? 但它不会找到
导致这些事情的代码。 为此,您必须调试应用程序。
You can use performance counters to check the memory leaks.
See this link:
http://msdn.microsoft.com/en-us/library/fxk122b4.aspx
It can say whether your application is having memory leaks or not? But it will not find
the code which is causing that things. For that you have to debug the application.