Tagged Questions

The Cassini Web Server is an open-source lightweight web server distributed with ASP.NET as an example of an ASP.NET web server written in C#.

learn more… | top users | synonyms

31
votes
28answers
6k views

What are the (dis)advantages of using Cassini instead of IIS?

I've found that on some occasions I can edit the source while debugging, are there any other advantages of using the Visual Studio built-in webserver instead of a virtual directory in IIS? I'm using ...
15
votes
2answers
3k views

Visual Studio ASP.NET MVC project: setting the start URL

Consider an ASP.NET MVC 2 project with VS 2010. The goal is to set the 'start URL' on run/debug using VS's built-in Cassini web server. Entering the URL as I want to be loaded, in the typical & ...
15
votes
4answers
8k views

Automatically stop/restart ASP.NET Development Server on Build

Is there a way to automatically stop the ASP.NET Development Server (Cassini) whenever I do a build/rebuild in VS2008 (and then obviously have it start again when required)? Maybe there's some hidden ...
12
votes
4answers
4k views

Is Visual Studio 2010 WebDev WebServer (Cassini) 64-bit compatible?

I'm now developing on Visual Studio 2008 on a 64-bit OS (Windows Server 2008 64-bit). While the apps I write are 64-bit capable, as is IIS7, the built-in ASP.NET Development Server (aka Cassini aka ...
12
votes
9answers
15k views

ASP.NET Development Server or Localhost IIS?

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 ...
10
votes
3answers
2k views

ASP.NET MVC on Cassini: How can I force the “content” directory to return 304s instead of 200s?

Scenario: I have an ASP.NET MVC application developed in Visual Studio 2008. There is a root folder named "Content" that stores images and stylesheets. When I run locally (using Cassini) and browse my ...
9
votes
3answers
1k views

Why does Request[“host”] == “dev.testhost.com:1234” whereas Request.Url.Host == “localhost”

Hi all, I seem to have found a discrepancy when testing ASP.NET applications locally on the built-in web server with Visual Studio 2008 (Cassini). I've set up a host on my local machine associating ...
7
votes
1answer
2k views

Cassini/WebServer.WebDev, NUnit and AppDomainUnloadedException

I am using Cassini/WebServer.WebDev to run some automated tests of a WebService using NUnit. I am not doing anything fancy, just public class WebService{ Microsoft.VisualStudio.WebHost.Server ...
6
votes
3answers
568 views

Disabling Visual Studio Development Server - Any way to do this per project?

When debugging my website project I usually go to start options in the web project's properties and select 'Don't open a page' and 'Use custom server' with a url that's in my host file pointing to my ...
6
votes
4answers
2k views

How can a page in IE render differently between Cassini and IIS7?

I am completely confused - I have a website that renders perfectly in IE8 when run through Cassini (in Visual Studio) but has several messed up elements (style/look) when deployed to localhost and ...
6
votes
2answers
1k views

HttpModule not running with Visual Studio

I am using an HttpModule to do some URL shortening on my site. I am using Visual Studio 2008 and IIS 7, and .Net 3.5. When the module is specified in the system.webServer element of web.config, and ...
6
votes
4answers
2k views

Alternative to HttpListener?

I'm developing an application that is so far using HttpListener to provide a small standalone http server. However, I've recently discovered that HttpListener needs to be run as Administrator, which ...
5
votes
1answer
400 views

Android Emulator loopback to IIS Express does not work, but does work with Cassini

I am attempting to post data from an Android application running in the Android Emulator on my local machine to a web application running under IIS Express also running on my local machine. ...
5
votes
2answers
1k views

stop development server when i stop debugging

how can i stop (automatically) development server when i stop debugging in visual studio?
5
votes
5answers
1k views

Why does Visual Studio launch multiple WebDevs when I debug?

I have a Visual Studio 2008 solution with several projects in it - some of which are web applications / sites. Whenever I go "Debug > Start new instance" for a specific web application and VS ...
4
votes
2answers
3k views

Problems targeting a .NET 4 WCF service to be 64 bit

I’m having problems targeting a .NET 4 WCF service to be 64 bit. I take the following steps on a 64bit Vista OS: Create a new WCF Service project in Visual Studio 2010. Change the Platform target to ...
4
votes
3answers
430 views

Is it possible to run classic asp on Cassini Webserver?

Is it possible to run classic asp on Cassini Webserver? I have a mixed website (classic asp and dotnet)...
4
votes
2answers
597 views

run Cassini from console

I debug my project from console with MsBuild.exe. After i compile project i want to start and test it, but i have problem that i can not start Cassini for testing project. Can i run Cassini from ...
4
votes
2answers
634 views

Development web server fires Application_Error on 404, why doesn't IIS7?

I'm using Application_Error to catch some legacy URLs and URL shortcuts. In Global.vb I have this code: Sub Application_Error(ByVal sender As Object, ByVal e As EventArgs) Dim serverError ...
4
votes
6answers
2k views

Visual Studio Debugging is not attaching to WebDev.WebServer.EXE

I have a solution with many projects. On Debug, I have three web projects that I want to start up on their own Cassini ASP.NET Web Development servers. In the Solution Properties - Common Properties - ...
4
votes
1answer
2k views

Visual Studio Development Server not updating css and javascript?

I've recently returned to a web site project that has been on the backburner. Since recommencing work I've noticed css and javascript changes aren't being recognised by the application when it's ...
4
votes
1answer
448 views

Visual Studio: How to make Cassini listen on ::1?

Visual Studio's internal development web-server only listens for connections from the local computer. Unfortunatly, the web-server only binds to the IPv4 loopback address: 127.0.0.1 On machines ...
4
votes
4answers
3k views

How do you debug ASP.NET applications under IIS7 on Vista?

There is a post on IIS.net titled "Using Visual Studio 2008 with IIS 7.0", but I don't quite believe that's what people do. (Among other gems, it suggests publishing your web app after every change.) ...
4
votes
2answers
834 views

Link to download Cassini source code?

Does any one know from where can I download source code for Cassini. I tried the link http://www.asp.net/Projects/Cassini/Download but this page does not exist now.
3
votes
5answers
815 views

Where does the ASP.NET development server keep its logs?

I am trying to sort out a problem where some relative urls are not resolving properly in an ASP.NET website. I want to see the HTTP logs to determine which URLs are being requested from the web ...
3
votes
2answers
326 views

How can I launch Cassini Web Server from a command line or batch file?

Is there anyways to launch Cassini web server from a command line? The exe appears to be in this path, C:\Program Files (x86)\Common Files\microsoft shared\DevServer\10.0 I try to use the suggested ...
3
votes
2answers
407 views

ASP.NET Development Server Restart EVERY Time

If I make a change in my ASP.NET project using VS2008 or VS2010, I must stop the ASP.NET development server and restart it (usually by "View in Browser") to see the change reflected. I'm having the ...
3
votes
2answers
1k views

Override mime type with VS Web Dev Server

I would like to serve xbaps from the VS web dev server (cassini) to Firefox, but when served from the dev server, Firefox offers to download this file. As far as I can tell, this is because the dev ...
3
votes
2answers
354 views

How does SimpleWorkerRequest associate MIME types with extensions?

I was serving html referencing svg files in Cassini, and having problems since the mime type was not being sent properly. I ended up writing my own port of Cassini that set the extension based on mime ...
3
votes
2answers
635 views

Differences in behaviour between IIS and the ASP.Net Web Development Server?

During development, I usually test ASP.Net applications using the Web Development Server (sometimes called Cassini). Occasionally, when I publish to a real IIS environment, I notice that the ...
3
votes
2answers
2k views

When exactly does Application_End get called and how can I manually cause this?

I know that the event handler for this event is called when the application pool is recycled by IIS, but when does that happen? What about if using the built-in Visual Studio server (Cassini)? If I ...
3
votes
1answer
5k views

Difference between ClientCredentialType=Windows and =Ntlm

Can anyone give a clear explanation of the difference between using clientCredentialType=Windows, and clientCredentialType=Ntlm in a server-side Web.config when hosting a WCF service? ...
3
votes
3answers
544 views

Why do VS2008 spawn one Cassini for each web-site/application when going into debug mode?

I have quite a big solution here with a lot of different web applications and sites, around 10-15 of them. When I attach VS2008 to any process (most likely Nunit.exe or something similar) I get one ...
3
votes
3answers
379 views

Is there any IIS equivalent to Tomcat?

I want to test ASP.NET applications to get the feel for the MVC extension and compare that to what I can do today with Grails or Rails. The trouble is that being in a corporate environment, I can't ...
3
votes
5answers
922 views

“Data Execution Prevention” kills (VS2008) local ASP.Net Development Server (aka Cassini) on Vista 64

Occasionally i find that while debugging an asp.net application (written in visual studio 2008, running on Vista 64) the local ASP.Net development server (i.e. 'Cassini') stops responding. A message ...
2
votes
1answer
29 views

How to use ApplicationManager to load an object with out GAC'ing it?

I'm trying to use the Cassini webserver to create a deployment test host- a sort of embedded web server to isolate web server config issues from app deployment issues. Okay, so this line of code blows ...
2
votes
1answer
77 views

Is Visual Studio Asp.Net Development Server Really Multi-Threaded?

I'm debugging a WebProject in VS2010 that runs in the local dev server (cassini?). One of the aspx pages calls a ManualResetEvent.WaitOne() and another Page aspx page calls the ManualResetEvent.Set() ...
2
votes
2answers
371 views

Access WCF Service from another pc

I've spend hours and hours on this and simply can't get it to work. Maybe my understanding of hosting WCF service and creating a client for it isn't correct. My website has a WCF Service added to it, ...
2
votes
1answer
3k views

Entity Framework “The underlying provider failed on Open” - Cassini vs IIS

I have a service that uses EF to retrieve data from a SQL database. The EF model is in a class library. In the class library the connection is configured as: <add name="APIC2CEntities" ...
2
votes
1answer
723 views

Visual Studio 2010 and Cassini web server can't make windows authentication! (Access Denied 401.2)

How it could be difficult to make a web site which is integrated with domain authentication in visual studio!? This is my web.config: <authentication mode="Windows"/> <identity ...
2
votes
3answers
296 views

Installer App Asp.net 4.0 Cassini SQL Express

We have built an ASP.NET application in 4.0 (we can change it to 3.5 if necessary) with a SQL Server database. I am looking to create an installation package (exe or msi) so that I can provide this ...
2
votes
1answer
105 views

ASP.NET Development Server - is the source available?

I remember several years back it was called Cassini and the source was available for download. Is this no longer the case? Either my Google skills are lacking or I can't seem to find the source code ...
2
votes
1answer
387 views

Why would Application_Init fire twice when starting debugging in VS2008/Casini?

Why would Application_Init fire twice when starting debugging in VS2008/Casini? Yeah, It's happening in global.asax. Seems fairly random though, only happens once in a while.
2
votes
1answer
1k views

Visual Studio creating IIS virtual directories when solution opened

Visual Studio is asking to create virtual directories in IIS when I open a solution. Could this be because projects within the solution have been configured to use IIS rather than Cassini? The dialog ...
2
votes
2answers
167 views

Debugging ASP.NET on a built-in web server suddenly stops

I have Windows Server 2008 (64-bit), VS 2008 with its built-in webserver and an ASP.NET MVC 1.0 webapp. All I'm trying to do is to debug said app. I have a bunch of breakpoints, but they behave in a ...
2
votes
3answers
2k views

How do I use Fiddler to listen to the asp.net development server (i.e. cassini)?

I am attempting to debug a (RESTful) WCF app using Fiddler. I run my project via VS IDE - which launches my app in the ASP.NET Development Server aka Cassini. I then launch Fiddler and in the ...
2
votes
1answer
280 views

Cassini much slower than IIS for MVC RenderPartial

I have an MVC view with a partial view recursive call that displays hierarchical data. The complete tree typically includes in the order of 500 or so items. The data is all included in the model, ...
2
votes
2answers
319 views

Using Elmah with Cassini

Does anyone know if I can use Elmah with Visual Studio build-in web server(aka Cassini)? I get it working easily on IIS, but using same configuration, it doesn't work with Cassini. When I requested ...
2
votes
2answers
505 views

Cassini with Windows 7 XP Mode

Is there a way to access the Cassini local web server from Windows 7's XP mode? I'm developing on the Windows 7 host machine using Cassini, but would like to test in IE6 running inside the Windows XP ...
2
votes
1answer
467 views

Why is performance is slow when 2010 Cassini serves static files?

When running a site in debug mode on 2010 I get incredible slow performance when cassini serves static files. According to Firebug it takes about 1 seconds for each request to resolve on 20 2kb ...

1 2 3 4