如何调试 ASP.NET 2.0 Web 服务应用程序中的泄漏连接?

发布于 2024-07-20 04:21:43 字数 211 浏览 3 评论 0原文

我有一个应用程序,它是一堆 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

糖果控 2024-07-27 04:21:44

您可以使用性能计数器来检查内存泄漏。

请参阅此链接:
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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文