0

!--- 如果这篇文章与其他一些帖子是多余的,我很抱歉,但我的项目的问题似乎是我的架构造成的,所以我需要一般帮助。---!

我正在尝试配置连接到 Silverlight 5 客户端的 WCF 服务和对数据库执行 CRUD 请求的 C# 类库。该服务将必须传递大量数据。例如,我的服务类中有一个公共 IList<RainRecord> GetAllRain()方法,它可以检索数据库中的数十万条记录,可能有一天会更多。所以我想我可以通过小批量获得所有这些记录(我认为这是一个很好的方法)。

这是我的 web.config 文件:

<?xml version="1.0" encoding="utf-8"?>

<!--This file contains the web configuration used by the WCF service. -->

<configuration>

  <system.web>
    <compilation debug="true" targetFramework="4.0" maxBatchGeneratedFileSize="2147483647" maxBatchSize="2147483647" />
    <httpRuntime maxRequestLength="2147483647" />
  </system.web>

  <system.serviceModel>

   <serviceHostingEnvironment aspNetCompatibilityEnabled="true">
     <serviceActivations>
       <add service="PoseidonServiceNamespace.PoseidonService" relativeAddress="~/PoseidonService.svc"/>
     </serviceActivations>
   </serviceHostingEnvironment>

    <bindings>
      <basicHttpBinding>
        <binding  closeTimeout="00:01:00"
                  openTimeout="00:01:00"
                  receiveTimeout="00:10:00"
                  sendTimeout="00:01:00"
                  allowCookies="false"
                  bypassProxyOnLocal="false"
                  hostNameComparisonMode="StrongWildcard"
                  maxBufferSize="2147483647"
                  maxBufferPoolSize="2147483647"
                  maxReceivedMessageSize="2147483647"
                  messageEncoding="Text"
                  textEncoding="utf-8"
                  transferMode="Buffered"
                  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>

    <behaviors>
      <serviceBehaviors>
        <behavior name="PoseidonServiceBehavior">
          <serviceMetadata httpGetEnabled="true"/>
          <serviceDebug includeExceptionDetailInFaults="true"/>
          <dataContractSerializer maxItemsInObjectGraph="2147483647"/>
        </behavior>
      </serviceBehaviors>
    </behaviors>



    <services>
      <service  behaviorConfiguration="PoseidonServiceBehavior"
                name="PoseidonServiceNamespace.PoseidonService">
        <endpoint address="http://localhost:49455/PoseidonService.svc"
                  binding="basicHttpBinding"
                  contract="PoseidonServiceNamespace.IPoseidonService"/>

        <endpoint address="mex"
                  binding="mexHttpBinding"
                  contract="IMetadataExchange"/>
      </service>
    </services>
  </system.serviceModel>

 <system.webServer>
    <modules runAllManagedModulesForAllRequests="true"/>
  </system.webServer>

</configuration>

我应该在这个文件中做哪些更改(为什么?),我应该如何在我的服务中实现我的公共 IList GetAllRain() 方法?

非常感谢,我一直在努力解决这个问题

4

1 回答 1

3

您确定需要将数十万条记录传输到客户端应用程序吗?客户将如何查看这些记录?这些记录会以某种方式进行预处理/聚合,还是仅显示在某个网格中?如果预处理 - 考虑在服务器端进行预处理。如果只是显示 - 考虑重新设计您的界面以包括分页:

IList<RainRecord> GetList(int startPage, int pageSize);

如果分页不是一个选项,但您仍然希望批量检索数据 - 您可以通过向服务引入状态来实现手动批处理(您需要知道谁请求列表、您当前在哪个位置以及有多少数据留待转让):

public interface IService
{
  Guid BeginGetList();
  IList<RainRecord> GetNextBatch(Guid id);
}

GetNextBatch 返回的空列表或 null 表示传输结束。换句话说,它是相同的分页,但使用有状态服务实现。

现在,如果传输数十万条记录是绝对必要的,并且必须一次性完成 - 考虑使用流传输来传输您的数据。但是您需要更改合同,将 Stream 与序列化的 RainRecords 包括在内。

另一种选择是实现双工服务,它将回调传递给客户端,当客户端完成处理前一批时,它可以请求下一个。不利的一面是,据我所知,silverlight 不支持 WSDualHttpBinding。

附加绑定后,您将被限制为每批 2Gb,我相信这已经足够了。此外,您可能需要调整超时,这篇文章非常详细地描述了所有可能的超时值。

于 2013-05-14T18:42:46.680 回答