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?
+1
A:
This article Using Visual Studio 2008 with IIS 7.0, gives an overview of using Visual Studio 2008 Web development features with IIS 7.
Mitch Wheat
2009-09-10 06:18:53
+1
A:
Yes, you may set IIS as the debugging server by clicking Properties
on the project, (waiting patiently while it slowly loads), then go to the Web
tab and choose Use IIS Web server
instead of Use 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
.
Noon Silk
2009-09-10 06:28:11
using an #if DEBUG is a good idea ... I'll give that a shot, thanks.
Jess
2009-09-10 18:38:34