没有端点侦听传输大文件(app config)

时间:2015-12-24 11:12:38

标签: c# wcf app-config

在下面的代码中我放置appconfig,当我上传大文件时,它会抛出没有端点监听。如果文件大小很小,它可以正常工作。请帮我纠正这个问题。

<binding name="BasicHttpBinding_IFileTransfer" closeTimeout="00:01:00"
          openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
          allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"
          maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647"
          textEncoding="utf-8" useDefaultWebProxy="true" messageEncoding="Text">
          <readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647"
            maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" />
          <security mode="None">
            <transport clientCredentialType="None" proxyCredentialType="None"
              realm="" />
            <message clientCredentialType="UserName" algorithmSuite="Default" />
          </security>
        </binding>

0 个答案:

没有答案