在我的应用程序中,我进行了一次服务调用,这可能需要 2 分钟才能返回值。(过程发生在多个数据库中)。
调用此方法后,应用程序超时。
我在网络配置中设置了以下内容。在 IIS 中托管时我仍然收到错误消息
<system.web>
<compilation debug="true" targetFramework="4.0" />
<sessionState timeout="40"></sessionState>
<httpRuntime maxRequestLength="2147483647" executionTimeout="3600"/>
</system.web>
我也在服务 web.config 中设置了相同的执行超时,请帮助我增加应用程序的超时时间。