Environment: Replicated Server: SQL Server 2008 R2 Client Server: SQL Server Express Language: .Net 3.5 C#
The replicated server will be continually updated by web services and have many of the tables published.
The Client Server will have a down stream subscription to the replicated server.
Goal: As the SQL Express instance pulls its subscription updates it will need to notify a WCF service so as to pass updates to the client front end.
Is this something best suited to SQLDependency or perhaps using CLR triggers to contact WCF? Is there a good practice for dealing with this type of flow without the use of polling?