ASP.NET Development Server or Localhost IIS?
Asked Answered
C

11

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.

Canakin answered 11/11, 2008 at 17:59 Comment(2)
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 AJAXCozart
I am leaving this link over here so that it may be helpful for anybody in future, as it outlines the differences - asp.net/web-forms/tutorials/deployment/…Luciano
K
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.

Keniakenilworth answered 11/11, 2008 at 18:5 Comment(6)
Agreed. I've hit several gotcha's with running a project that way. You should always use local IIS.Royden
+1 absolutely, local IIS is the best for avoiding (and picking up before release) any problemsCozart
local IIS doesn't give you the advantage of edit & continue. It would be ideal to have IIS7 as a replacement for the old CassiniRecaption
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 weblogs.asp.net/scottgu/archive/2010/06/28/…Liquidation
-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.)Dominican
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.Raila
C
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).

Colossae answered 11/11, 2008 at 18:6 Comment(8)
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.Keniakenilworth
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.Mandamandaean
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.Mandamandaean
do you need admin to run iis?Decennary
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.Colossae
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.Cozart
-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.Con
@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.Colossae
H
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.

Hypoderm answered 11/11, 2008 at 18:10 Comment(0)
T
5

As I stated here: https://mcmap.net/q/337430/-what-are-the-dis-advantages-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.

Twentyfourmo answered 14/11, 2008 at 3:32 Comment(0)
T
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...

Truncheon answered 11/11, 2008 at 18:6 Comment(2)
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 CassiniCanakin
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.Incubation
Z
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.

Zug answered 11/11, 2008 at 18:7 Comment(0)
K
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.

Keniakenilworth answered 11/11, 2008 at 18:12 Comment(1)
Thanks, will take a look, it'll save having to add code to deal with the VDirs.Canakin
B
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.

Bilabiate answered 21/7, 2009 at 3:5 Comment(0)
R
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.

Reek answered 15/9, 2012 at 5:3 Comment(0)
G
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.

Gazebo answered 28/11, 2012 at 23:5 Comment(1)
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)Liverpudlian
E
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.

Edelstein answered 21/7, 2009 at 3:14 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.