如何保证 Compact Framework Webservice 调用中的数据传递?

发布于 2024-07-13 00:28:38 字数 153 浏览 9 评论 0原文

我们在非常不稳定的 WLAN 环境中拥有一个移动应用程序。 将数据发送到网络服务器可能会导致超时或丢失 WLAN 连接。

我们如何确保我们的数据正确交付? 设备上是否有可能安装 Web 服务可靠消息传递 (WSRM)?

目前没有选择 MSMQ。

We have a mobile Application in a very unsteady WLan Environment. Sending Data to a webserver could result in a timeout or in a lost WLan connection.

How do we ensure, that our data is delivered correctly? Is there a possibility of having Web Services Reliable Messaging (WSRM) on the device?

MSMQ is no option at the moment.

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

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

发布评论

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

评论(1

一片旧的回忆 2024-07-20 00:28:39

不支持 WSRM。 一种可靠的机制是确保 Web 服务在收到数据后用 ack 响应上传(即同步调用),或者当您开始上传时返回一个事务 ID,然后您可以将其发送回稍后再发送服务,以确保在本地删除之前已交付该服务。

WSRM isn't supported. A reliable mechanism is to ensure that either the Web Service responds to the upload with an ack after the data has been received (i.e. a synchronous call) or that when you start the upload you get back a transaction ID that you can then send back to the service at a later point to ensure that it has been delivered before local deletion.

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