Keith Adler
Keith Adler

Reputation: 21178

SSL with Visual Studio Development Server

Is it possible to use SSL with Visual Studio Development Server (a.k.a. Web Application project)? I don't want to have to deploy IIS locally if possible. I'm running Windows 7.

NOTE: I've seen this (http://connect.microsoft.com/VisualStudio/feedback/details/354576/add-https-support-to-visual-studio-asp-net-development-server) but I was still hoping there was a workaround.

Upvotes: 9

Views: 10030

Answers (4)

Guru Kara
Guru Kara

Reputation: 6462

We can use IIS Express with VS 2010 to develope and test web apps in SSL. Here is a complete article explaning how to use IIS Express and Visual Studion 2010 to develope websites in SSL

Working with SSL at Development Time is easier with IISExpress

Introducing IIS Express

Upvotes: 2

Dave
Dave

Reputation: 11

It can be done in VS2010, I'm not sure if VS2008 supports the following approach. Configure Visual Studio to use use Microsoft IIS Express instead of the web server built in to Visual Studio.

Upvotes: 1

Keith Adler
Keith Adler

Reputation: 21178

It cannot be done with VS 2008, so I've simply resorted to deploying my app to the local IIS as part of the start process with a generated cert.

Upvotes: 5

thmshd
thmshd

Reputation: 5847

this subject was covered here and it say's, you actually can't.

But you might take a look at this link, which might prove the contrary: (See link in comment, i'm not yet able to post more then 1 link per post ...doh)

Hope this helps.

Upvotes: 1

Related Questions