ASP.net 在本地主机上调试 https
我必须在我的 asp.net 应用程序上测试一个应该在 https 上工作的方法。有没有一种方法可以让我在 https 上的本地主机上运行应用程序,以便我可以调试它?
I have to test a method out on my asp.net application that should work on https. Is there a way where I can run the application on localhost on https so I can debug it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以创建一个自签名 SSL 证书,然后在 IIS 中的本地计算机上使用 SSL 和您的自签名证书创建一个 Web 应用程序(使用类似 http://dummy.test并将其添加到c:\windows\system32\drivers\etc文件夹中的hosts文件中,使其指向127.0.0.1),然后启动VS,附加到w3wp .exe进程就可以调试了。
使用 IIS 6.0 资源工具包 SelfSSL 创建自签名 SSL 证书
YOu could create a self signed SSL certificate and then create a web app with SSL and your self signed certificate on your local machine in IIS (use a URL like http://dummy.test and add that to the hosts file in the c:\windows\system32\drivers\etc folder, have it point to 127.0.0.1), then start VS, attach to the w3wp.exe process and you can debug.
Create a self-signed SSL certificate with IIS 6.0 Resource Kit SelfSSL
是的,为自己获取一个自签名证书并安装它。不过,一般来说,我只是在本地开发环境中禁用 SSL 需求。
Yep, get yourself a self-signed cert and install it. Generally, though, I'd just disable the need for SSL in the local dev environment.