Click here to Skip to main content
15,886,664 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hello,

How to develop Polling service in Silverlight using WCF service and it will update grid automatically with latest data from database?

As i go through some of blogs found that you can do this using "Dispatcher".

Please help me to build this.

Thank you.
Posted

1 solution

In WCF you could use the "asynchronous pattern" for polling service and it will easy to Implement.You have to add in your WCF method.
C#
[OperationContract(UseAsyncPattern = true)]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900