zoukankan      html  css  js  c++  java
  • Request Time Out. 0x80004005

     

    Server Error in '/Advantech20' Application.

    Request timed out.

    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

    Exception Details: System.Web.HttpException: Request timed out.

    Source Error:

    An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.

    Stack Trace:

    [HttpException (0x80004005): Request timed out.]
                


    Version Information: Microsoft .NET Framework Version:2.0.50727.832; ASP.NET Version:2.0.50727.832

    如果遇到这种错误,一般可以用一下方式来解决
    在web.config中做如下设置
    <configuration>
    <system.web>
    <httpRuntime executionTimeout="3600"  />
    </system.web>
    </configuration>
    这个红色的表示页面request时处理的超时时间
  • 相关阅读:
    springMvc接口请求参数
    ThreadLocal 结构
    遇到的问题
    jsonview的安装
    Java
    学习资源
    Java
    Java
    Java
    Java
  • 原文地址:https://www.cnblogs.com/forward/p/969952.html
Copyright © 2011-2022 走看看