views:

8

answers:

1

I need to inform the DomainContext in the silverlight application about changes that are made on the serverside (aka. Model of the DomainService).

Does the DomainService or other classes for RIA Services provide such notification (like Events) or do i have to call a method on the DomainService periodically to check if changes where made to the Model?

Or is there any other solution that is best-practise to notify the DomainContext about changes.

A: 

Have you already considered using WCF Callbacks?

Murven