0
I constantly have this situation: Server Too Busy
when I run my webforms application. What should I do to resolve this situation? I think it’s IIS Express, but I’ve been told it could be a database.
0
I constantly have this situation: Server Too Busy
when I run my webforms application. What should I do to resolve this situation? I think it’s IIS Express, but I’ve been told it could be a database.
1
Hello,
Try to follow these steps
Open your application, go to
Properties --> Web Tab -> Servers --> And bookmark (Use Local IIS Web Server) and click Create Virtual Directory.
Run your application.
Go back to the Web Tab and click Use Visual Studio Development Server
Source:http://forums.asp.net/t/1911697.aspx?+Server+Too+Busy+Error+Page
I will test today all day and then put the result. So far no problem, but this error gives sporadically, so I need to test well, okay? But I will not fail to give feedback on the situation.
1
This problem can be caused for many reasons and without being able to analyze several points is difficult but I suggest you place the attribute delayNotificationTimeout within the httpRuntime tag that sits within the System.web tag of the web.config your application, follows a copy of a tag I use:
<system.web>
<httpRuntime targetFramework="4.5" executionTimeout="600" enableVersionHeader="false" delayNotificationTimeout="20" />
Please comment if you solved the problem because if it doesn’t work try to help otherwise.
Missed the follow the copy
I don’t know how to include this tag in System.web. I can’t edit.
When I put XML stackoverflow cut. Now it’s ok. The file is web.config. There’s a system.web tag with the httpRuntime tag inside. Sds.
I will test today all day and then put the result. So far no problem, but this error gives sporadically, so I need to test well, okay? But I will not fail to give feedback on the situation.
Browser other questions tagged c# iis
You are not signed in. Login or sign up in order to post.
Is there any error code on the error page that iis returns?
– Guilherme Almeida