I'm synchronizing a SQL Server 2008 db with a SQL Express 2008 db using SQL Server Change Tracking and WCF. I need to notify the user when a conflict occurs on the server so the user can take action. All the samples I've seen solve conflicts in the ApplyChangeFailed event by setting the Action property of the ApplyChangeFailedEventArgs argument.
How can I obtain a list of the conflicts generated after the synchronization ends and how can I resolve this conflicts?