26

Currently our dev team set up all the websites they're working on in IIS on their local machine. We're thinking of switching to using the built in ASP.NET development server instead.

Is this a good idea? What are the pros / cons of using the ASP.NET dev Server? Are there any gotchas we should be aware of?

Thanks.

NB: Running on Win XP / IIS 5 / VS2005

Edit:

Didn't realise it was called Cassini.. More answers for Cassini v IIS here.

Community
  • 1
  • 1
Nick
  • 5,498
  • 9
  • 50
  • 72
  • Cassini was the old name when it was still in development. Cassini is to ASP.NET Development server what Atlas is to MS ASP.NET AJAX – Darko Z Jul 21 '09 at 03:10
  • I am leaving this link over here so that it may be helpful for anybody in future, as it outlines the differences - http://www.asp.net/web-forms/tutorials/deployment/deploying-web-site-projects/core-differences-between-iis-and-the-asp-net-development-server-cs – Bibhu Sep 19 '14 at 02:38

11 Answers11

32

There is nothing that the ASP.NET Dev WebService can do that IIS can't (You can set breakpoints etc, just attach the VS debugger to the ASP.NET runtime).

However, the ASP.NET Dev WebService does not represent a true production environment, and as such you can get caught by gotchas that you wouldn't expect when you deploy to production.

Because of that, I mandate that all development is done using IIS on a local machine. It doesn't take much work to configure a site in IIS.

FlySwat
  • 160,042
  • 69
  • 241
  • 308
  • 2
    Agreed. I've hit several gotcha's with running a project that way. You should always use local IIS. – EndangeredMassa Nov 11 '08 at 18:08
  • +1 absolutely, local IIS is the best for avoiding (and picking up before release) any problems – Darko Z Jul 21 '09 at 03:11
  • 3
    local IIS doesn't give you the advantage of edit & continue. It would be ideal to have IIS7 as a replacement for the old Cassini – Jaap Aug 10 '09 at 20:40
  • 1
    Coming soon (or may be available by the time you read this) is IIS Express, bringing IIS 7.5 to non-admin users and allowing developers to use IIS 7.x features even when the host OS is XP. See http://weblogs.asp.net/scottgu/archive/2010/06/28/introducing-iis-express.aspx – Tim Trout Aug 11 '10 at 20:26
  • 1
    -1 because you said *There is nothing that the ASP.NET Dev WebService can do that IIS can't*. I don't think you're correct. (See @Jaap's comment.) – Sam May 30 '13 at 05:21
  • Probably a happy compromise is to use checkin builds deploy to IIS test server. So while developing you use developement server locally, but after checking in do final integration testing on the IIS test server. – AaronLS Oct 29 '13 at 22:37
25

It's a very good idea. Here are some reasons for:

  • You no longer need admin access to your machine for web development (it can still be helpful).
  • It's much easier to test a quick change and continue work, and faster iteration cycles are good.
  • It can simplify setup and deployment of your development environments.
  • The XP version of IIS has limitation that are not present in the Server version that Cassini side-steps.

The only argument I know against is that there are a couple very rare edge cases where the Cassini built-in server doesn't exactly mimic IIS because you're using odd port numbers. I doubt you'll ever run into them, and using Cassini as the primary dev environment does not preclude developers from also having access to IIS on the machine. In fact, my preferred setup is Cassini first for most small work, then deploy to my local IIS for more in-depth testing before moving code back to the shared source repository.

[Edit]
Forgot about url re-writing. You do need IIS for that. And an example of a limitation of the built-in XP IIS is that you are limited to one site in XP (can have multiple applications, but that's a different thing).

Joel Coehoorn
  • 362,140
  • 107
  • 528
  • 764
  • 7
    Cassini pipes every request to the ASP.NET runtime, IIS doesn't. Cassini cannot use ISAPI...IIS does. You can configure Visual Studio to launch your localhost on IIS when launching the app, and it will startup faster than loading cassini. – FlySwat Nov 11 '08 at 18:10
  • 1
    I'm with Joel on this one. Unless I bump into something that Cassini flat can't do (URL rewriting) I don't have any trouble with Cassini and find it very handy. – rp. Nov 11 '08 at 18:14
  • 1
    It's interesting that an answer like this gets voted down. I think the opinion presented has merit--but even if I did disagree with it voting it down isn't the way do that. – rp. Nov 11 '08 at 18:18
  • do you need admin to run iis? – missaghi Jan 28 '09 at 22:02
  • Just to run it, no. To use it for development, where you may need to adjust settings or add a virtual directory now and then, yes. – Joel Coehoorn Jan 29 '09 at 00:04
  • why is needing admin a problem? I have never ever worked for a company that didn't give me admin access nor would I... Also changes get picked up on IIS just as fast. Also how does a dev server simplify deployment? What odes the server have to do with deployment? Agreed on last point - non server IIS is always gimped in some way. – Darko Z Jul 21 '09 at 03:17
  • -1 ! I'd give you -100 if only I could. Why do people upvote this ? It can only be the lack of better judgement. Developing elsewhere is always bad. And THIS is an especially very very bad idea. And not having admin access for a developer is a very bad idea, too. The differences between development server (classic mode default) and IIS 7 (integrated mode default) are staggering. If you do development on the ASP.NET development server, you will get screwed in no time at all, especially when using AJAX or impersonation or external shell processes. Or SSL. Or Virtual Directories, etc. etc. etc. – Stefan Steiger Aug 10 '12 at 08:17
  • 2
    @Quandary note that when I first wrote this, neither Windows 7 or IIS 7 were out yet. Cassini solved some real problems for developers with the Windows XP version of IIS. – Joel Coehoorn Aug 10 '12 at 13:18
5

I had to switch (back) to IIS for one project, because I needed to set some virtual directories which is not possible on the ASP.NET Development Web Server.

splattne
  • 100,048
  • 51
  • 202
  • 247
5

As I stated here: https://stackoverflow.com/questions/103785/what-are-the-disadvantages-of-using-cassini-instead-of-iis your developers need to be aware that Cassini runs as the local user, which is typically an admin account for developers. The development will be able to access any file or resource that their account can, which is quite different from what they will see on an IIS 6 server.

The other thing that's a pretty big gotcha is debugging web services is much easier using IIS and vdirs rather than separate Cassini instances.

Community
  • 1
  • 1
Christopher G. Lewis
  • 4,638
  • 1
  • 24
  • 42
2

I know at one point I had an issue with Authentication not working as expected on Cassini (built in development server)

Also, if you need to test things like ISAPI plugins (a re-writer for example) I'm not sure how that's done on Cassini.

The constantly changing port is also rather disconcerting to me. Also, for each web project in your solution it fires up another instance of a Casini server, and each one takes anywhere from 20 to 50 MB of memory.

I use IIS all the time, it's pretty easy to setup, and you guys are already doing that...

CubanX
  • 5,089
  • 2
  • 26
  • 42
  • Agree re. port numbers. We currently generate an RSS feed for links to our dev websites, don't think I'll be able to make it work with Cassini – Nick Nov 11 '08 at 18:42
  • 2
    On the "Web" tab of your web projects properties screen, you can specify a static port. For Web Site projects, this is in the standard property window. – JasonS Nov 11 '08 at 19:15
2

I've used both methods and I prefer having IIS locally vs. using the built-in server. At very least you're more consistent with the final deployment setup.

Jeremy Bade
  • 521
  • 5
  • 11
1

I have run into the following limitations with the asp.net dev server:

  1. does not support virtual dirs. If you need them in your app, IIS seems to be your only choice

  2. Classic asp pages dont run in dev server. So if you have a mixed web app (like I have at my client right now), IIS seems to be the solution

  3. If you need an admin UI to configure settings, IIS works better

Of course IIS requires that you be a local admin.

1

Another distinction I noticed is that Cassini runs as a 32-bit process and you have no control over it, whereas you can control the application pool of your IIS app to disallow 32-bit (assuming your IIS is running on a 64-bit server). This becomes especially important if your web application is going to call APIs in 64-bit processes such as SharePoint Foundation/Server 2010. When you debug your web app with Cassini as your debug server, you'll get "The Web application at url could not be found. Verify that you have typed the URL correctly" type errors when instantiating objects. If you debug using IIS with the app running in an app pool that runs as 64-bit with an identity that allows access to sharepoint database then you'll be able to debug properly.

VVPG
  • 11
  • 1
1

In VS12 the development server is way slow, takes a few seconds to download a 2kbyte file. This did not happen in vs10. When you have a bunch of jquery files and css this is a real problem. Also every page requeries all the css/js files. Very very slow regression testing.

user965445
  • 105
  • 1
  • 10
  • I've never noticed any such delays. There must be something wrong with your installation or your browser settings. (I remember something strange happening with Firefox and using either `localhost` or `127.0.0.1`, but I don't remember what it was and what fixed it) – Andrew Barber Nov 28 '12 at 23:07
1

Also, when using IIS 5.1, be sure to get JetStat IIS Admin, it adds functionality that is disabled out of the box on IIS 5, such as being able to setup multiple sites.

FlySwat
  • 160,042
  • 69
  • 241
  • 308
0

The main issue I've run into with the dev server is SerializationExceptions with custom security principals stored on the thread context. Details here.

Rich Rodriguez
  • 116
  • 1
  • 4