Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

We are trying to get our .NET devs to use the built in VS2208 web server for web devlopment instaed of a local instance of IIS.

This is one of responses I received as to 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!

share|improve this question

2 Answers

up vote 7 down vote accepted

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.

share|improve this answer

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.