Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does the ASP.NET Development Server (a.k.a. Cassini) support SSL?

We are trying to get our .NET devs to use the ASP.NET Development Server (VS2008) for web development instead of a local instance of IIS.

I received this response as a reason why some of our devs can't use it: "Our XXXX Online Sales application uses SSL to protect passwords. While Visual Studio does permit some basic web application development without IIS, the light weight replacement does not support SSL."

Does this make sense? Is there a work-around?

Thanks!

like image 414
Doug Avatar asked Oct 09 '08 14:10

Doug


2 Answers

The web server built into VS doesn't not support SSL. It is meant to be a quick way to test an application. For SSL, you would need to use IIS and get a certificate.

like image 178
Tom Avatar answered Oct 10 '22 09:10

Tom


Actually there is a possible approach- if you just want to run ASP.NET programs with SSL, you can use Cassini + Apache Http Proxy/Nginx for Windows. But if you are on Windows XP beware there might have limitations on concurrent connections.

like image 36
William Yeung Avatar answered Oct 10 '22 07:10

William Yeung