How to make calls on synchronous Silverlight?

Asked By 0 points N/A Posted on -
qa-featured

Silverlight only supports asynchronous mode, but I have a project that needs the use of Silverlight and WCF programs.

The problem is that, I can’t make the calls synchronous using the Silverlight application.

How am I supposed to pursue this project using those applications?    

 

SHARE
Answered By 15 points N/A #105949

How to make calls on synchronous Silverlight?

qa-featured

Hello Michelle Hernandez,

First to make calls from silver light, you will need to have the WCF services configured. But the calls in this case might be asynchronous. Otherwise if you try to make synchronous calls the silver light user interface will eventually lock up, and even hung completely.

The asynchronous calls are made possible using the .NET framework whereby you will be required to provide a delegate call when you are done making the call using the asynchronous method. The good thing that the call is no blocking and you can be sure that it will return to you very fast.

Regards

Clair Charles

 

Related Questions