如何使用缓冲传输模式从windows服务发送大文件到wcf服务

本文关键字:服务 文件 wcf windows 缓冲 何使用 传输 模式 | 更新日期: 2023-09-27 18:15:42

我正在开发一个应用程序,如果客户端上传任何文档(任何扩展),它应该同步到服务器。为此,我开发了具有wcf参考的windows服务。Windows服务在后台运行一段特定的时间间隔,如果没有传输文档,则检查文件是否存在于服务器上。我的问题是以字节为单位的小文件正在从客户端传输到服务器,但大小超过16kb的文件传输失败。甚至我尝试在配置文件中增加maxarrayLength到2GB。但这不是转移。

这是web中的代码。配置文件

<system.serviceModel>
<behaviors>
  <serviceBehaviors>
    <behavior>
      <!-- To avoid disclosing metadata information, set the value below to false and remove the metadata endpoint above before deployment -->
      <serviceMetadata httpGetEnabled="true" />
      <!-- To receive exception details in faults for debugging purposes, set the value below to true.  Set to false before deployment to avoid disclosing exception information -->
      <serviceDebug includeExceptionDetailInFaults="false" />
      <dataContractSerializer maxItemsInObjectGraph="2147483647"/>
    </behavior>
  </serviceBehaviors>
</behaviors>
<bindings>
  <basicHttpBinding>
    <binding name="BasicHttpBinding_ISyncUpService" closeTimeout="00:01:00"
      openTimeout="00:01:00" receiveTimeout="00:01:00" sendTimeout="00:01:00"
      allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"
      maxBufferSize="2147483647" maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647"
      messageEncoding="Text" textEncoding="utf-8" transferMode="Streamed"
      useDefaultWebProxy="true">
      <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>
  </basicHttpBinding>
</bindings>
<client>
  <endpoint address="http://localhost/WebSetup/Services/SyncUpService.svc"
   binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_ISyncUpService"
   contract="SyncUpService.ISyncUpService" name="BasicHttpBinding_ISyncUpService" />
</client>
<serviceHostingEnvironment multipleSiteBindingsEnabled="true" />

我得到以下异常

反序列化System.IO.MemoryStream类型的对象出错。读取XML数据时已超过最大数组长度配额(16384)。这个配额可以通过在创建XML阅读器

时更改xmldictionaryreaderquota对象上的MaxArrayLength属性来增加。

Thanks in advance

如何使用缓冲传输模式从windows服务发送大文件到wcf服务

您可以尝试在服务和客户端配置文件中设置更大的MaxArrayLength属性。