classic asp site randomly hangs IIS6

风格不统一 提交于 2020-05-17 04:18:06

问题


We have a classic ASP site that connects to a SOAP server. We have not been able to figure out what causes the website to hang. When we see that the website is hanging we simply restart the soap server and the website works fine(until the next time it hangs). I want to mention that when the website hangs I can get to any page on the server that has .html or .htm extension, but any page that has an .asp extension will simply clock.


回答1:


Fire up performance monitor, select Active Server Pages category and watch the Requests Executing counter.

You will likely see that over time this increases. You have threads hanging waiting for incomplete calls to the SOAP Server. Eventually ASP runs out of threads (usually 25 threads per CPU). After that subsequent requests to ASP get queued waiting for a thread to come free, which it never does.



来源:https://stackoverflow.com/questions/7285941/classic-asp-site-randomly-hangs-iis6

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