Click here to Skip to main content
15,861,168 members
Please Sign up or sign in to vote.
5.00/5 (1 vote)
See more:
unable to start debugging on the web server. the server committed a protocol violation. section=responsestatusline
i getting error where runnig asp.net website with VS10 and sql server 2008 R2
please help..
Posted

This error usually occurs when you have set up Visual Studio to debug an existing web application running in IIS rather than the built in ASP.NET debug web server. IIS by default listens for web requests on port 80. In this case, another application is already listening for requests on port 80. Typically, the offending application is Skype, which by default takes over listening on ports 80 and 443 when installed. Skype is already occupy the port 80. So IIS is unable to start.

To resolve the issue follow the steps:

Skype -> Tools -> Options -> Advanced -> Connection:

Uncheck "Use port 80 and 443 as alternatives for incoming connections".


--Amit
 
Share this answer
 
Comments
Member 8825505 20-Feb-13 0:24am    
OK thanks
but now my asp.net mvc3 project run like browsing directory please help.
A recent Skype update took back ports 80 and 443. Check that too.
 
Share this answer
 
thanks dear, you saved my day.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900