如何指定 Visual Studio 调试工作进程的身份?

发布于 2024-12-21 20:36:43 字数 304 浏览 0 评论 0原文

在具有 IIS 的 Web 服务器上,您可以为应用程序池的标识指定域帐户。如何使用 Visual Studio 2010 调试器完成同样的事情?

在 Web 应用程序的 web.config 文件中,您可以为 processModel 指定用户名和密码:

<system.web>
<processModel enable="true"  userName="user" password="pwd" />
</system.web>

这要么不起作用,要么没有达到我的预期。

On a web server with IIS, you can specify a domain account for the identity of an application pool. How do you accomplish the same thing with the Visual Studio 2010 debugger?

In the web application's web.config file you can specify a username and password for processModel:

<system.web>
<processModel enable="true"  userName="user" password="pwd" />
</system.web>

That either didn't work or it's not doing what I'd hoped.

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

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

发布评论

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

评论(1

白鸥掠海 2024-12-28 20:36:43

我认为如果您使用 IIS Express 而不是带有 Visual Studio 的内置 Cassini Web 服务器,您所拥有的应该可以工作。

IIS Express 的行为与内置 Web 服务器完全相同(以及调试等),但具有更真实的测试环境。最简单的下载方法是使用Web 平台安装程序

安装后,在 Visual Studio 中右键单击您的项目,然后选择“使用 IIS Express...”

I think what you have should work if you use IIS Express instead of the built-in Cassini web server with Visual Studio.

IIS Express acts exactly like the built-in web server (along with debugging, etc), but with a more realistic environment in which to test. Easiest way to download it is with the Web Platform Installer.

After you install it, right click on your project within Visual Studio and select "Use IIS Express..."

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