3
votes

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

3

3 Answers

1
votes

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

0
votes

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?

0
votes

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.