Hi,
I built my application using the MS Sync Framework SDK to synchronize files between my local machine and a remote machine. Everything works fine on my development machine. However, when I install my application on my Server (Windows Server 2003 SP2) I get the following error:
Exception = Retrieving the COM class factory for component with CLSID {565AEDBF-3108-4405-AF1F-9C2C25925DAE} failed due to the following error: 80040154.
when the "Synchronize" command is executed:
SyncOrchestrator agent = new SyncOrchestrator();
agent.LocalProvider = sourceProvider;
agent.RemoteProvider = destProvider;
agent.Direction = SyncDir;
agent.Synchronize();
According to the FAQ (
http://msdn.microsoft.com/en-us/sync/bb906054.aspx), MS Sync Framework supports Windows Server 2003.
Could anyone please help? I've found some posts on this error and have tried the suggestions (e.g. changing the platforms to x86 on my project properties) but nothing helps.
I am using the x86 version of the MS Sync Framework SDK v1.0 on my Windows XP Professional Version 2002 SP3, VS 2005 C#.
Many thanks.
- H