在 Visual Studio 2008 中调试 HTTPS ASP.NET 站点?
其他人如何从 Visual Studio 2008 调试 HTTPS 站点? 此链接似乎表明 Visual Studio 的内置的 Web 服务器不支持 HTTPS,但必须有某种方法来调试这些站点,对吗?如果不是集成服务器,IIS7可以设置为调试Web服务器吗?
How do other people debug HTTPS sites from Visual Studio 2008? This link seems to indicate that Visual Studio's built in web server does not support HTTPS, but there must be some way to debug these sites, right? If not the integrated server, can IIS7 be set as the debugging web server?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,您可以通过单击项目上的
属性
将IIS设置为调试服务器(耐心等待缓慢加载),然后转到Web
选项卡并选择使用 IIS Web 服务器
,而不是使用 Visual Studio 开发服务器
。-- 编辑
更一般地说,为了回答这个问题,我通常只是在调试时禁用 SSL。我很少需要测试如何通过 SSL 处理事物,并且根据我创建 SSL 链接的方式,可以使用
#if DEBUG
非常简单地对其进行修改。Yes, you may set IIS as the debugging server by clicking
Properties
on the project, (waiting patiently while it slowly loads), then go to theWeb
tab and chooseUse IIS Web server
instead ofUse Visual Studio Development Server
.-- Edit
More generally, to answer the question, I typically just disable SSL while debugging. It's rare that I need to test how I'm dealing with things via SSL, and depending on how I'm creating the SSL links, it can be modified pretty simply, with an
#if DEBUG
.