0

I am using Visual Studio 2008 SP1 with .NET Framework sp1. I am not using IIS but the built-in server provided by vs 2008.

I have an ASP.NET MVC project, which sometimes when started opens the browser window & just keeps on trying to load the default page. After stopping the application & killing the webserver, there's still always an instance of WebDev.WebServer.EXE running in taskmanager.

For whatever reason, I am unable to kill this process & I have no choice but to restart my system. Is there a solution for this?

DaveRandom
  • 87,921
  • 11
  • 154
  • 174
SoftwareGeek
  • 15,234
  • 19
  • 61
  • 78

2 Answers2

0

There is probably something in your application that causes the server to hang. Does the server hang when you try to launch any project or one specific project?

To kill the process without rebooting, use the awesome ProcMon while running as admin. http://technet.microsoft.com/en-us/sysinternals/bb896645.aspx

To kill the process without rebooting, use Process Explorer http://technet.microsoft.com/en-us/sysinternals/bb896653.aspx

Raj Kaimal
  • 8,304
  • 27
  • 18
0

For now, i started using IIS instead of Cassini, so i don't have to deal with webdev.webserver.exe issues.

SoftwareGeek
  • 15,234
  • 19
  • 61
  • 78