ASP.net 在本地主机上调试 https

发布于 2024-08-03 08:16:54 字数 90 浏览 1 评论 0原文

我必须在我的 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 技术交流群。

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

发布评论

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

评论(2

方觉久 2024-08-10 08:16:54

您可以创建一个自签名 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

风蛊 2024-08-10 08:16:54

是的,为自己获取一个自签名证书并安装它。不过,一般来说,我只是在本地开发环境中禁用 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.

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