I'm developing an application using WCF Ria services and Silverlight. Performance and scalability is a must in this project. The problem is that I have to invoke several WCF services from RIA Service, and service invocation takes time. Threads are limited resource on the webserver, so when I invoke a service, the executing thread just hangs and waits for the answer. This is not acceptable in my sitation. I remember there was a way to workaround this issue back in .NET 2 days, I guess there is still now, but don't remember anything. Any memory refreshment would be nice :)

Thanks

link|improve this question

And what kind of workaround would that have been? Time-travel? – Henk Holterman Apr 20 '11 at 20:51
Well, there is a possibility to execute the wcf service asyncrhonously, which will return executing thread to thred pool. Client will receive response from the server when the service invocation is finished. I mean, the thread is recovered from thread pool after service invocation finishes. – Davita Apr 20 '11 at 21:21
1  
You probably mean asynchronous asp.net pages from ASP.NET 2.0 which returned thread to thread pool during external asynchronous processing. WCF also offers asynchronous operations but the question is how this works with RIA services (I have never even try them so I don't know): msdn.microsoft.com/en-us/library/ms731177.aspx – Ladislav Mrnka Apr 20 '11 at 21:24
@Ladislav yes, that's what I mean. Thanks :) I'll take a look to the url, maybe someone will post how it works with ria services. – Davita Apr 20 '11 at 21:26
One way I do multiple requests as a unit of work is to create a View Model which encapsulates multiple calls into a single call. I find this reduces the workload on the client as well and allows the server to manage the whole process. – Cat Man Do Apr 21 '11 at 17:43
feedback

1 Answer

up vote 0 down vote accepted

Looks like standard asynch pattern is the right way to go. Thanks to Ladislav Mrnka for pointing me to the right direction.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.