I'm getting this error while running asp.net application on deployment server:
1. Error generated while EnablePartialRendering set to false on AJAX ScriptManager
####################
Network Error (tcp_error)
A communication error occurred: ""
The Web Server may be down, too busy, or experiencing other problems preventing it from responding to requests. You may wish to try again at a later time.
2. Error generated while EnablePartialRendering set to true on AJAX ScriptManager
####################
Sys.WebForms.PageRequestManagerServerErrorException: An unknown error occurred while processing the request on the server. The status code returned from the server was: 503
- this error generated exactly after 60 seconds,
- no error if the process completes within 60 seconds
- the same application works while running locally even it takes more than 60 seconds
- AsyncPostBackTimeout already increased on ScriptManager:
<asp:ScriptManager ID="ScriptManager1" runat="server" AllowCustomErrorsRedirect="false"
AsyncPostBackTimeout="2000" ScriptMode="Release" LoadScriptsBeforeUI="false" EnableCdn="false" EnablePartialRendering="true" >
</asp:ScriptManager>
- web.config settings:
<authentication mode="Forms">
<forms loginUrl="~/account/Login.aspx" timeout="2880"/>
</authentication>
<httpRuntime executionTimeout="43200" maxRequestLength="104856" requestValidationMode="2.0"/>
<sessionState mode="InProc" cookieless="true" timeout="720"></sessionState>
- IIS Settings:
Connection time out: 600 seconds
ApplicationPool Idle time out also increased
|