Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to use visual studio development server in VS2015

How to test WCF service/Website with the help of "Visual Studio Development Server" instead of local IIS in Visual Studio 2015? Following image is of property page of WCF service project which dont have option to use Visual Studio Development Server. I am using Enterprise edition of VS2015. enter image description here

like image 585
Ankush Madankar Avatar asked Mar 10 '16 13:03

Ankush Madankar


People also ask

What is Visual Studio development server?

The Visual Studio Development Server is a web server that runs locally on Windows operating systems. As with IIS Express, it is specifically built to run ASP.NET on the local computer. It will not serve requests to another computer. Additionally, it will not serve files that are outside the application scope.

Does Visual Studio have a web server?

Visual Studio lets you test with different web servers, including IIS Express, Internet Information Services (IIS), External Hosts, or Custom Web Servers. You can use any of these web servers with a file-based web application project.


1 Answers

The "Visual Studio Development Server" is no longer available in Visual Studio 2015, it has been replaced by IIS Express (as you see in your screenshot). This is not the same as installing the version of IIS that comes with Windows. But functions almost identically, so your development/testing environment is much closer to what it would [likely] look like in production.

like image 192
CodingGorilla Avatar answered Sep 30 '22 16:09

CodingGorilla