What reason would Visual Studio ASP.NET Development Server start returning HTTP 503 errors?

微笑、不失礼 提交于 2019-12-05 11:59:30

1) Maybe there is errors in web.config, so cassini can't understand it. Try to publish website and run it with normal IIS

2) Remove file app_offline.htm from root of your project. It's really generate 503 error with cassini

did u tried enabling debugging in your web application?

http://msdn.microsoft.com/en-us/library/e8z01xdh%28v=vs.80%29.aspx

One possibility is that some other application is now configured, say, in IIS, to listen on the same port/vdir combination. It might be a port conflict between two site/servers/applications. I would get Fiddler tool to look at response headers and see whether you are getting the response from the server you expect.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!