如何指定 Visual Studio 调试工作进程的身份?
在具有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为如果您使用 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..."