Questions tagged [webdev.webserver]

webdev.webserver.exe is a development web server included with Visual Studio.

73 questions
30
votes
5 answers

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 WebDev.Webserver.exe) runs as 32-bit. This brings…
David Boike
  • 18,545
  • 7
  • 59
  • 94
25
votes
3 answers

Unable to map an HttpHandler to a "path/*" wildcard mapping

So I've been trying to map an http module to a sub-path of an MVC3 site. It should be pretty simple as I understand it, but it has not been working. The module is setup like so:
Chris Nicola
  • 14,384
  • 6
  • 47
  • 61
22
votes
6 answers

How can I stop Visual Studio running all my web services

How to stop Visual Studio 2008 from automatically running my web services. I have a large Visual Studio 2008 solution that contains a number of web app projects and also several wcf web services. I have set the solution to have only one startup…
20
votes
4 answers

Is there a way to add a virtual directory to Visual Studio Development Server?

I'm using the Visual Studio Development Server, with a specific port. Is there a way to add a virtual directory to it? EDIT: Sorry, I wasn't very clear. I'd like to be able to add one or more virtual directories to arbitrary physical directories. …
19
votes
4 answers

Firebug equivalent for Internet Explorer

I am looking for a tool/add-on like Firebug on Firefox ( that is immensely useful for debugging web applications) which works for Internet Explorer. Any suggestions ? -thanks
kabir
  • 542
  • 3
  • 9
  • 27
18
votes
3 answers

stop development server when i stop debugging

How can automatically I stop the development web server when I stop debugging in Visual Studio?
Hannoun Yassir
  • 20,583
  • 23
  • 77
  • 112
16
votes
4 answers

How to utilize WebDev.WebServer.exe (VS Web Server) in x64?

Visual Studio is x86 until at least the 2010 release comes around update: this is still an issue in VS2010, there is no native 64bit Cassini support. My question is can anyone think of a way or know of an independent ASP.NET debug server that's x64…
Nick Craver
  • 623,446
  • 136
  • 1,297
  • 1,155
14
votes
5 answers

Connect remotely to WebDev.WebServer.exe

Developing an ASP.Net website. Running IE8. Need to test website under IE6. MultipleIE6 install broken by IE8 install (can't type in textboxes, yes I deleted cache, yes I re-registered the dll's). Created VPC running IE6. Can't connect to host…
user82773
13
votes
2 answers

Visual Studio 2010 debug in a fixed port

Is it possible to choose a fixed port for the Visual Studio 2010 debug webserver?
Farinha
  • 17,636
  • 21
  • 64
  • 80
13
votes
3 answers

Why does SimpleHTTPServer redirect to ?querystring/ when I request ?querystring?

I like to use Python's SimpleHTTPServer for local development of all kinds of web applications which require loading resources via Ajax calls etc. When I use query strings in my URLs, the server always redirects to the same URL with a slash…
Marian
  • 14,759
  • 6
  • 32
  • 44
12
votes
2 answers

How do I stop the Development Server starting during Unit Testing?

I have a Visual Studio 2008 solution that contains around 30 projects. Some of these are web services / WCF services / ASP.NET MVC applications. When I run all unit tests (Ctr+R, A) it insists on spinning up all the Development Servers for these…
9
votes
6 answers

Dev server for Java, like VS has for .NET?

I am on a Java learning spree recently, however I am normally a .NET developer. (So please forgive my newbie questions.) In .Net I can develop ASP.Net pages without using IIS, as it has a watered down web server (Cassini, I think it's called). Does…
dbones
  • 4,415
  • 3
  • 36
  • 52
8
votes
2 answers

Why would my ASP.NET project run on the development server when not among the startup projects?

I have a visual studio 2008 solution that includes an asp.net-hosted remoting project in c#. The solution also contains other c# projects and c++ projects. When debugging the interaction between my c# client and the asp.net server, the debugging is…
el2iot2
  • 6,428
  • 7
  • 38
  • 51
6
votes
3 answers

How to install WebDev.WebServer.exe as a Standalone application?

How can I install Visual Studio's Web Development Server (WebDev.WebServer.exe) as a Standlone application? So that our web designers can get the latest code from SVN, then run the MSBuild batch file to build the code, and then run a batch file to…
Robs
  • 8,219
  • 6
  • 41
  • 57
5
votes
2 answers

Is it possible to directly connect frontend to the database?

I came across this joke the other day. Someone on the internet was asking why do we need a backend, just connect the frontend to the database. It seemed funny at first, but really is it possible to create a framework which handles frontend and…
1
2 3 4 5