Acaz Souza
Acaz Souza

Reputation: 8631

Is there a good reason to use CassiniDev instead of VS WebServer?

I discover this WebServer to use with Visual Studio (http://cassinidev.codeplex.com/)

Anyone know if this is better than VS WebServer?

Upvotes: 1

Views: 1569

Answers (5)

Chris McGrath
Chris McGrath

Reputation: 1757

IIS Express is 100% the best option if you are using VS 2010 or later, i still use CassiniDev when i need a quick ad-hoc server ie serving up html/docs quickly that use features that cant be run directly from the file system otherwise use IIS Express for .net based sites or Full IIS if absolutely needed.

Any .net functionality based on versions that incompatible with 4.0 will soon start to break ie. vNext, much of the upcoming rosalyn features in the new .net compilers, anything requiring C#6 features etc. as these all require 4.6

Upvotes: 0

Adam Tuliper
Adam Tuliper

Reputation: 30152

Use neither - instead use IIS express which is built upon the actual IIS binaries.

http://learn.iis.net/page.aspx/868/iis-express-overview/

Its far better than either.

Upvotes: 6

Nicholas Riley
Nicholas Riley

Reputation: 44321

It looks to resolve some issues with the VS development server, but you should also investigate IIS Express if you're going to be deploying on IIS. I've found it a pleasure to use, it solves many of the same issues and is integrated with Visual Studio.

Upvotes: 5

Icarus
Icarus

Reputation: 63956

CassiniDev is based off of the integrated VS Web Server (called Cassini). The CodePlex version has many improvements but the question is whether you need those or not. Simply read the codeplex page and decide for yourself.

Upvotes: 1

Davide Piras
Davide Piras

Reputation: 44595

From project's web site:

The goal of the CassiniDev project is to provide an open platform for developing a robust ASP.Net web server implementation that addresses many of the limitations and difficulties encountered when using Cassini and/or Visual Studio Development Server.

CassiniDev is packaged as a standalone WinForms GUI application, a console application and library assembly suitable for self hosting and in automated testing scenarios including continuous integration and as a 100% compatible drop-in replacement for the Visual Studio 2008/2010 development server.

so it should be at least as good as the default VS web server or better.

Being open source is an advantage but this also depends on how often it's updated and extended and on how big is the dev community...

Upvotes: 1

Related Questions