WCF RIA 服务中的服务器进展

发布于 2024-12-08 02:24:51 字数 45 浏览 0 评论 0原文

使用耗时的 wcf ria 服务时,我可以将进度更新从服务器发送到客户端吗?

Can I send progress updates from the server to the client when using time consuming wcf ria services?

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

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

发布评论

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

评论(1

世俗缘 2024-12-15 02:24:51

当然可以。无论如何,这不是一个开箱即用的解决方案...我们都知道,我们从 Silverlight 进行的每个调用都是异步的,因此无论是否有待处理的请求,客户端都会继续响应。

也就是说,您可以使用 HttpPollingDuplex 并使用这种回调来通知您的客户端,或者您可以简单地定期轮询服务器来获取操作的当前状态。

请注意,保存状态的服务器变量最好存储在 ASP.NET Session 中,并最终在 lock 块中访问,因为您从一个线程写入它并从另一个线程读取它

希望这会有所帮助

Of course you can. It's not an out of the box solution anyway... All we know that every call that we make from Silverlight is async, so the client continue to respond regardless if there are pending requests.

That said, you can either make use of HttpPollingDuplex and use that sort of callback to notify your client or you can simply poll the server ar regular interval to obtain the current status of the operation.

Be aware that the server variable that holds the state should be ideally stored in ASP.NET Session and eventually accessed in a lock block cause you are writing it from a thread and reading it from another one

Hope this helps

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