调试使用混合 ASP.NET 版本构建的应用程序

发布于 2024-08-21 18:05:34 字数 227 浏览 10 评论 0原文

我正在开发一个使用 ASP.NET 1.1 构建的应用程序,但它调用 ASP.NET 2.0 中构建的服务。

尝试通过设置断点并附加 w3wp.exe 进程来调试代码失败,因为 IIS 在 ASP.NET 2.0 下运行。

如果我选择 ASP.NET 1.1 作为 IIS 中的版本,则可以进行调试,但对 2.0 服务(无处不在)的调用会导致页面崩溃。

有人对这个问题有解决方案/解决方法吗?

I am working on an application built using ASP.NET 1.1 but that invokes services built in ASP.NET 2.0.

Attempts to debug my code by setting a breakpoint and attaching the w3wp.exe process fail because IIS is running under ASP.NET 2.0.

If I select ASP.NET 1.1 as the version in IIS then debugging works, but the calls to the 2.0 services (which are everywhere) causes the page to crash.

Does anyone have a solution/workaround to this problem?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

婴鹅 2024-08-28 18:05:34

.NET 1.1 和 2.0 不能同时存在于同一进程中,因此必须将它们分开。

由于您谈论的是 w3wp.exe,看来您正在使用 Windows 2003 Server,这将使事情变得更容易。

确保您的服务器上有两个应用程序池。
将 1.1 应用程序放入一个池中,将 2.0 Web 服务放入另一个池中。

它会创建两个进程,你可以分别调试它们

.NET 1.1 and 2.0 can't live both in the same process, so you must separate them.

Since you're speaking about w3wp.exe, it seems you're using Windows 2003 Server, which will make things easier.

Make sure there are two application pools on your server.
Put your 1.1 app in one pool, and the 2.0 web service in the other.

It will create two process, and you can debug them separately

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