Wcf集成任务,需要通过soap服务传输大量数据

发布于 2025-01-01 04:09:16 字数 290 浏览 0 评论 0原文

我必须设计一个集成解决方案,可以传输大量数据并每天运行一次。与我们合作的公司 X 将调用服务并提供数据作为参数。

您对此解决方案有什么建议吗?

例如,您认为我必须告诉 X 公司他们必须发送压缩(gzip?)数据吗?

或者我是否必须实现这种使用场景:

while(!allDataSent)
{
    SendData(List<object> objects);
}    
TransferCompleted();

如何开发这种任务?

I have to design an integration solution that transfers large amount of data and works once a day. The company X we work with will invoke the service / services and give the data as parameters.

Do you have any suggestions for this solution?

For example do you think that I have to tell the company X that they have to send compressed (gzip?) data?

Or do I have to realise this usage scenario:

while(!allDataSent)
{
    SendData(List<object> objects);
}    
TransferCompleted();

How do you develop this kind of tasks?

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

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

发布评论

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

评论(1

等风也等你 2025-01-08 04:09:16

一个好的起点是为要进行数据传输的服务和客户端设置单独的端点,因为您需要更改连接中可以发送和接收的数据量的超时和最大限制。如果时间要求不高,您可以使用 IEnumerable作为函数的返回类型,在客户端,他们可以将其用作流,并且可以在获取数据时批量保存它,以便无需将所有内容都记在内存中。

在客户端,它可能看起来像这样:

foreach (var bytes = servliceClient.GetLargeAmountOfData())
   SaveByteToDisc(bytes);

有关绑定属性的信息可以在 中找到MSDN

A good starting point is to have separate endpoints for the service and client that are going to do the data transfer because you need to change the timeouts and maximum limits for how much data you can send and receive within the connection. If it's not time critical you can use IEnumerable<YourType> as the return type for the function and on the client end, they can use it as a stream and can batch save it while it's getting the data so that there won't be a need to have it all in memory.

On the clientside it could look something like this:

foreach (var bytes = servliceClient.GetLargeAmountOfData())
   SaveByteToDisc(bytes);

Information about the binding properties can be found at MSDN

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文