Questions tagged [webdev.webserver]

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

73 questions
1
vote
1 answer

Web pages cannot be found when using Cassini

I have had trouble getting web pages to load within Cassini for about a week now. I'm able to open a telnet session to the server - assuming I'm hosting on port 8101, typing telnet localhost 8101 results in opening a connection. I can simply type…
Nicolas Webb
  • 1,312
  • 10
  • 22
1
vote
1 answer

Sitecore CMS 6.2 - Fails to start up

My local Sitecore CMS 6.2.0.3322 has stopped working. I can no longer start up a local debug build and attach it to IIS or WebDev.WebServer20.exe (The VS2010 built in web server). When I start with WebDev I'm seeing the following message appear in…
Daniel Ballinger
  • 13,187
  • 11
  • 69
  • 96
1
vote
1 answer

Webserver on python3

I've created a web app in Python 3. It all runs beautifully until I have to upload a file... There's no way to find the path or the file in the environment. I am using wsgi and I am thinking of migrating to another web server, what are your…
hidura
  • 681
  • 3
  • 11
  • 36
1
vote
1 answer

When should I use WebDev.WebServer.exe?

I have a ASP.NET MVC6 web application developed in VS 2015. I run it on Windows 10. I have client side JavaScript compiled by Gulp which is dropped in the wwwroot folder which I want to debug as well as debug the WebAPI controllers on the server…
wonderful world
  • 10,969
  • 20
  • 97
  • 194
1
vote
2 answers

ASP.Net Development Server performance

I am developing a simple ASP.Net application on a Windows 7 x64 machine using Visual Studio 2008 SP1. The computer itself is a very strong machine. I am using the built in development server for debugging. Starting the debug process takes a…
1
vote
0 answers

Using [AspNetDevelopmentServerHost()] for web UI testing

I have a WebApp project that runs normally in debugging. Now I try to run it for UI testing with Selenium: [TestMethod] [HostType("ASP.NET")] [AspNetDevelopmentServerHost(@"D:\WebAppPath", "/")] [UrlToTest("http://localhost:28319/")] public void…
Dmitry Fedorkov
  • 4,301
  • 1
  • 21
  • 30
1
vote
1 answer

How does an ASP website match a dll to a webpage?

When you go to the root of an ASP website (either webforms or MVC), how does the web server know which .aspx or .cshtml file to load, and which dll in the bin/ directory contains the code to execute? How does it match the two up?
thecoop
  • 45,220
  • 19
  • 132
  • 189
1
vote
1 answer

land of lisp src webserver.lisp

while I was learning in "land of lisp" chapter 12 and 13 about "socket". I use lispbox, so I need install a socket.At last, I found usocket available. this is a sample about how to use usocket, to bulid a webserver. (defun serve (request-handler) …
1
vote
3 answers

Websites Without Frameworks

How do I start a website from scratch without the use of a framework? I want to create a web service that communicates with a database and dynamically displays the contents based on a user's activity. I want the appearance to be HTML5/CSS3. I would…
Peregrine
  • 347
  • 4
  • 14
1
vote
1 answer

Does Visual Studio's built-in web server support HTTP PUT?

Does the web server built into Visual Studio 2010 (and earlier, but 2010 in particular), WebDev.WebServer.exe, support the HTTP verb PUT? If so, does it support it by default or does it require configuration? If it requires configuration, please…
davidzarlengo
  • 820
  • 1
  • 5
  • 16
0
votes
4 answers

Stopping ASP WebDev and Selenium servers from command line

I am introducing Selenium tests into my build for the first time. I figured that to do this in NAnt, I would have to start the WebDev server first:
James Allen
  • 6,406
  • 8
  • 50
  • 83
0
votes
1 answer

Visual Studio 2008 Development Server not starting

I have a C# web service that I am trying to debug in Visual Studio 2008, and when I try to run it, Internet Explorer pops-up as expected, but it just displays 'waiting for response from localhost...' in the status bar. I have left it running for a…
JamesW
  • 849
  • 2
  • 14
  • 27
0
votes
2 answers

How can I allow a webproject to debug, without having to store server config in project?

I want to set my project to be run in IIS, because the development server has caused false positives when going to production. However, I don't want my less paranoid colleagues to be forced into this. Can I turn off the development server launching…
DevelopingChris
  • 39,797
  • 30
  • 87
  • 118
0
votes
0 answers

FastAPI Error Handling : Need to handle Primary Key and Unique Key Violations but the Code never runs the Exception Handling part

@app.post(path='/create') def create_record(request: Request,sid: str = Form(...), name: str = Form(...),last_name: str = Form (...), email: str = Form(...), add: str = Form(...), gpa: str = Form(...)): import mysql.connector …
Myst
  • 3
  • 2
0
votes
2 answers

Why do my ETag headers work under IIS but not under the VS2010 web server?

In my ASP.NET MVC 2 app, I have the following lines: Response.Cache.SetMaxAge(TimeSpan.FromDays(90)); Response.Cache.SetETag(lastWriteTime.Value.Ticks.ToString()); Using Fiddler to trace the HTTP streams, I can see: ETag: 634473035667000000 in the…
Dylan Beattie
  • 53,688
  • 35
  • 128
  • 197