1

我正在开发一个使用 asmx Web 服务在 IIS7 中导入数据的 Web 应用程序。我们有一个 Windows 服务选择一个文件来导入并通过 Web 服务发送它。在 1 分钟后的大型导入过程中出现以下错误:

请求通道在 00:00:59.9843750 之后等待回复时超时。增加传递给 Request 调用的超时值或增加 Binding 上的 SendTimeout 值。分配给此操作的时间可能是较长超时的一部分。

我看过很多帖子,建议不要让 Web 服务调用运行那么久。我原则上同意,但这是一个低流量的内部网站。除非另有证明,否则我相信重新架构系统其他部分的工作量将比更新超时时间更长。

到目前为止,我们已经尝试更新 web.config 中的basicHttpBinding属性,特别是 openTimeout、receiveTimeout、sendTimeout 和 closeTimeout 属性。行为没有改变。

我们还尝试在构建对象后调用 Web 服务的代码中设置这些属性。仍然没有运气。

我查看了 IIS 设置,没有看到当前设置为 60 秒的任何超时值。我们还尝试将 web.config 中的 executionTimeout 提高到无效。

我缺少什么配置值?还有其他方法可以修改超时吗?

更新:

根据要求,这里是配置:

应用程序配置

<configuration>
    <system.serviceModel>
        <bindings>
            <basicHttpBinding>
                <binding name="ImportServiceSoap" closeTimeout="00:02:00" openTimeout="00:02:00"
                    receiveTimeout="00:10:00" sendTimeout="00:10:00" allowCookies="false"
                    bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"
                    maxBufferSize="1265536" maxBufferPoolSize="12524288" maxReceivedMessageSize="1265536"
                    messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered"
                    useDefaultWebProxy="true">
                    <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
                        maxBytesPerRead="4096" maxNameTableCharCount="16384" />
                    <security mode="None">
                        <transport clientCredentialType="None" proxyCredentialType="None"
                            realm="" />
                        <message clientCredentialType="UserName" algorithmSuite="Default" />
                    </security>
                </binding>
            </basicHttpBinding>
        </bindings>
        <client>
            <endpoint address="http://mysite.com/Importservice.asmx"
                binding="basicHttpBinding" bindingConfiguration="ImportServiceSoap"
                contract="ImportService.ImportServiceSoap" name="ImportServiceSoap" />
        </client>
    </system.serviceModel>
</configuration>

Web.config(删节,删除连接字符串):

<configuration>
  <appSettings>
    <system.web>
      <roleManager enabled="false" cacheRolesInCookie="false" defaultProvider="AspNetSqlRoleProvider" />
      <siteMap defaultProvider="MenuElementsProvider">
      </siteMap>
      <compilation debug="false" targetFramework="4.0">
      </compilation>
      <customErrors mode="RemoteOnly" defaultRedirect="Shared/Internal_Server_Error.html">
        <error statusCode="404" redirect="Shared/Internal_Server_Error.html" />
        <error statusCode="500" redirect="Shared/Internal_Server_Error.html" />
      </customErrors>
      <authentication mode="Windows" />
      <identity impersonate="true" />
      <authorization>
        <allow users="*" />
      </authorization>
      <trace enabled="false" requestLimit="10" pageOutput="false" traceMode="SortByTime" localOnly="true" />
      <sessionState mode="InProc" stateConnectionString="tcpip=127.1.0.1" cookieless="false" timeout="30" />
      <globalization fileEncoding="utf-8" requestEncoding="utf-8" responseEncoding="utf-8" culture="en-US" uiCulture="en-US" />
      <httpRuntime maxRequestLength="102400" requestValidationMode="2.0" executionTimeout="14400" />
    </system.web>
    <location path="DefaultWsdlHelpGenerator.aspx">
      <system.web>
        <pages styleSheetTheme="" />
        <httpRuntime maxRequestLength="1048576" executionTimeout="3600" />
      </system.web>
    </location>
    <system.webServer>
      <validation validateIntegratedModeConfiguration="false" />
    </system.webServer>
  </appSettings>
</configuration>
4

1 回答 1

1

您是在代码中还是仅在客户端的 app.config 中更新绑定超时?我已经看到更改 app.config 设置会从客户端 Web 服务的原始创建中被忽略 - 因此即使 app.config 已更改,旧设置也会保留。多发性硬化症

于 2012-06-29T14:31:01.853 回答