views:

1316

answers:

2

I have been succesfully debugging my asp.net site using the Visual Studio 2008 virtual server however all of a sudden it has started timing out when connecting to the debugger with the following message:

"Unable to start debugging on the web server. The web server did not respond in a timely manner. This may be because another debugger is already attached to the web server."

When I tried manually attaching the debugger I noticed that the asp.net worker process is missing from the process list and is also not shown in task manager. Are these two things connected? If so any ideas how I solve them?

+1  A: 

Try doing an iisreset /stop & iisreset /start on the command prompt; and if you are using IIS version >= 6.0, the worker process will be named w3wp.exe.

Kirtan
Thanks, I am on IIS 5.1. I did try this without success.
Si Keep
+3  A: 

if you are using the development server that comes with VS2008, you will not see the worker process w3wp.exe, you will see the development server process WebDev.WebServer.EXE.

Tion