WCF 是否支持任何类型的恢复功能?
我正在使用 WCF 将数据上传到服务器。
如果通讯失败,有什么办法可以恢复上传吗?
I am using WCF to upload data to a server.
If the communication fails, is there any way to resume the upload?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
分块通道适合您的场景,尤其是在发送大消息时。
http://msdn.microsoft.com/en-us/library/aa717050。 ASPX
Chunking channel fits your scenario especially when sending large messages.
http://msdn.microsoft.com/en-us/library/aa717050.aspx
是的,wsHttpBinding 协议支持所谓的“可靠会话”,可以捕获并处理间歇性网络中断。 发送者可能需要重新发送某些信息,但基本上,这将为您提供一定程度的安全性。
查看 Michele Leroux Bustamante 的 15 部分系列“WCF 从上到下”了解更多信息 - 分期付款不。 12 专门处理 可靠的消息传送。
或者查看 MSDN WCF 中可靠消息传递简介。
马克
Yes, the wsHttpBinding protocol supports what is called "reliable sessions", where intermittent network blackouts can be caught and handled. The sender might need to resend certain bits of the information, but basically, this will give you a certain level of safety.
Check out Michele Leroux Bustamante's 15-part series "WCF Top To Bottom" for more information - installment no. 12 deals specifically with Reliable Messaging.
Or check out the MSDN introduction to reliable messaging in WCF.
Marc