Hello,
We have used reference code to implement a tested and functional synch solution using SQL CE as the client and SQL Server as a central server. Now that we are moving into production, we have encountered an issue due to production policies that forbid the
opening of SQL server ports.
Our code uses the SqlCeSyncScopeProvisioning class to provision as follows (pseudocode):
SqlCeConnection clientConnection = new SqlCeConnection("[... client connection string...]");
SqlConnection serverConnection serverConnection = new SqlConnection("[... server connection string...]");
DbSyncScopeDescription scopeDescription = SqlSyncDescriptionBuilder.GetDescriptionForScope("[...scope name...]", serverConnection);
SqlCeSyncScopeProvisioning clientProv = new SqlCeSyncScopeProvisioning(clientConnection, scopeDescription);
clientProv.Apply();
How can we accomplish the same thing, without requiring a direct connection to the server?
Thanks, Crile
Crile Carvey