通过 WCF 数据服务流式传输二进制文件

发布于 2024-12-17 11:26:03 字数 158 浏览 2 评论 0原文

这个想法很简单,我有一个托管 WCF DataService 的项目和另一个 WPF 项目,我在 WPF 中引用该服务,它运行得很好,我想知道是否有一种方法可以使用该服务流式传输二进制文件,并且使用 WPF 获取该二进制文件并将其保存在本地磁盘上!

注意:二进制文件可能大于 200MB

The idea is pretty simple, I have a project hosting a WCF DataService, and another WPF Project, I'm referring the service in WPF and It's working great, I want to find out if there's a way to stream binary with the service, and get that binary with the WPF and save it on local disk!

Note: The binaries might be bigger than 200MBs

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

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

发布评论

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

评论(1

失与倦" 2024-12-24 11:26:03

您通过 WCF 发送的所有内容都必须以某种方式可序列化。所以,是的,可以找到一种序列化二进制文件的格式。但是,我不确定这是最好的方法。如果您的数据服务是通过 HTTP 提供的,并且您能够使用 ASP.NET,则您可能需要考虑仅使用通用处理程序 (.ashx) 来发送二进制文件,前提是您不只是拥有静态链接到文件。

Everything you send by WCF has to be serializable in some way. So, yes, it's possible to find a format in which to serialize your binary file. However, I'm not sure this is the best approach. If your data service is being served over HTTP, and you're able to use ASP.NET, you may want to consider just using a generic handler (.ashx) to send your binary file provided that you do not just have a static link to the file.

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