zoukankan      html  css  js  c++  java
  • WebService超时

    1、web.config配置,<system.web></system.web>里面增加:<httpRuntime maxRequestLength="10240" appRequestQueueLimit="100" useFullyQualifiedRedirectUrl="true" executionTimeout="1200" />

    2、扩大代理类的超时限制,默认是90秒   
    YourWebService yws = new YourWebService(); 
    yws.Timeout =   1200000; //20分钟

    3、IIS属性-网站 连接超时时间 1200秒

    1、修改 app.config 文件,添加如下代码:

    <httpRuntime executionTimeout="600" />

    请求执行超时时间为600秒(默认为110秒)

    2、设置 Web services 的 Timeout 属性

    对 XML Web services 的同步调用的超时(以毫秒为单位)。默认为 100000 毫秒。

    lywSqCommon.sqsdData.GetData getData = new lywSqCommon.sqsdData.GetData();//GetData 为类名

    getData.Timeout=700000;//单位为毫秒

    指示 XML Web services 客户端等待同步 XML Web services 请求完成的时间(以毫秒计)。

    提示:如果将 Timeout 属性设置为 Timeout.Infinite,则指示该请求无超时。即使 XML Web services 客户端可以将 Timeout 属性设置为无超时,Web 服务器仍可以在服务器端使请求超时。

    系统将以上面两项设置的最小者作为操作超时的时间长度。

    程序员的基础教程:菜鸟程序员

  • 相关阅读:
    401. Binary Watch
    46. Permutations
    61. Rotate List
    142. Linked List Cycle II
    86. Partition List
    234. Palindrome Linked List
    19. Remove Nth Node From End of List
    141. Linked List Cycle
    524. Longest Word in Dictionary through Deleting
    android ListView详解
  • 原文地址:https://www.cnblogs.com/guohu/p/5031746.html
Copyright © 2011-2022 走看看