通过wcf REST插入大量数据

发布于 2024-11-25 14:49:30 字数 131 浏览 0 评论 0原文

我有一个 ASP.NET Web 应用程序,其中使用 WCF 4 REST 服务从数据库插入和获取数据。但是,当尝试插入大量数据(例如 1000 名员工的数据)时,我收到错误“意外的文件结尾”。

任何人都可以提出解决方案。提前致谢。

I have an ASP.NET web application where i am using WCF 4 REST services to insert and get data from the database. But when trying to insert large amount of data like data for 1000 employees i am getting the error 'Unexpected End of File'.

Can anyone suggest a solution. Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

樱花坊 2024-12-02 14:49:31

这应该适用于 REST 服务。

<standardEndpoints>
  <webHttpEndpoint>
    <standardEndpoint helpEnabled="true" maxBufferSize="2147483647" maxReceivedMessageSize="2147483647"
                      maxBufferPoolSize="2147483647" automaticFormatSelectionEnabled="true">
      <security mode="None"/>
    </standardEndpoint>
  </webHttpEndpoint>
</standardEndpoints>

This should work for REST service.

<standardEndpoints>
  <webHttpEndpoint>
    <standardEndpoint helpEnabled="true" maxBufferSize="2147483647" maxReceivedMessageSize="2147483647"
                      maxBufferPoolSize="2147483647" automaticFormatSelectionEnabled="true">
      <security mode="None"/>
    </standardEndpoint>
  </webHttpEndpoint>
</standardEndpoints>

相思故 2024-12-02 14:49:30

您是否尝试过在 WCF 服务的 web.config 中以及可能在客户端的 App/Web 配置文件中设置最大大小。它需要看起来像这样:

<binding name="NewBinding0" sendTimeout="00:10:00" maxBufferPoolSize="2147483647"
 maxReceivedMessageSize="2147483647">
 <readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647"
  maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" />
</binding>

Have you tried setting the Max sizes in the web.config on the WCF services and possibly in the App/Web config file on the client side. It needs to look something like this:

<binding name="NewBinding0" sendTimeout="00:10:00" maxBufferPoolSize="2147483647"
 maxReceivedMessageSize="2147483647">
 <readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647"
  maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" />
</binding>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文