WebDev.WebServer.EXE Crash After Installing Service Pack 1 (SP1) for VS 2008

Since for various reasons I cannot use IIS for the ASP.NET website that I am developing, I run Cassini from the command line to check the site. However, after installing Visual Studio 2008 SP1, I get a System.Net.Sockets.SocketException when I try to start the web server. Does anyone else have this problem, and if so, how did you fix it?

+4
source share
1 answer
  • Is there anything in the "Application" section of the event log?
  • Have you tried to use a different port?
  • Per this thread , try:

    Refuse the safe Visual source, delete the web project from the solution, rename the folder in which the website is stored, and then re-add it to the solution as an existing website, and then bind to the security source again.

Your .suo or .sln file may have some incorrect information. You can safely rename the first, as it depends on the user ( s olution u ser o ); the latter ( s o l utio n ) would be a little more difficult to recreate.

+4
source

Source: https://habr.com/ru/post/1276600/


All Articles