开发者

Polling Pattern for Silverlight 4 WCF Ria Services

I am creating an application in Silverlight using Ria Services that can take quite a bit of time once the service call is initiated. I've looked for ways to increase the WCF service timeout, but the more I think it through, this is not the right aproach.

What I would rather do is call the DomainContext and return right away, then have the client poll the server to find out when the long running query is complete.

I'm looking for a pattern or example of a good way to implement something like this. One potential issue that开发者_运维百科 keeps coming to mind are that web services should not keep state between service calls, but this is exactly what I would be doing.

Any thoughts?

Thanks,

-Scott


Take a look at the WCF Duplex Service. It should solve your problem.


Can you make the service call take less time? If not, why not?

Typically when I've seen queries take this long, it either means the SQL running at the end isn't efficient enough, the SQL server has poor indexes, or the client is requesting far more data than they'll actually be able to use in a short period of time.

For example, instead of requesting 500 entities right away and showing a large list/DataGrid/whatever, why not request 10-50 at a time and have a paging UI that only requests the next batch when the user nedes it?


Take a look at signalr, it can run side by side with ria and it lets you push messages back to the client from the server.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜