1

Sync Framework v2.1 を WCF Web サービスと組み合わせて使用​​する n 層アプリケーションを作成しています。私のコードはこの例に基づいています: Database-Sync

同期は問題なく動作しているようです。しかし、バッチ機能を追加すると、デバッグが困難なエラーが発生します。

ソリューション (WPF アプリ) のクライアント部分には、KnowledgeSyncProvider から継承する仮想クラスがあります。また、IDisposable インターフェイスも実装しています。このクラスを使用して、作成した WCF サービスを呼び出し、そこで同期機能を使用します。同期コードが実行されると (orchestrator.Synchronize() が呼び出されます)、すべてが正しく機能しているように見え、作成した EndSession 関数オーバーライドはエラーなしで実行されます。しかし、実行がその関数を離れた後、Microsoft.Synchronization.CoreInterop.ISyncSession.Start 内から System.Error が発生します (私が知る限り)。

IDisposable 機能を提供するために私が作成した関数は決して呼び出されないため、EndSession の後、アプリケーションの KnowledgeSyncProvider 仮想クラスを破棄する前に何かが発生しています。

エラー情報は次のとおりです。

_message: "システム エラー。" スタック トレース: Microsoft.Synchronization.CoreInterop.ISyncSession.Start(CONFLICT_RESOLUTION_POLICY resolutionPolicy, _SYNC_SESSION_STATISTICS& pSyncSessionStatistics) で Microsoft.Synchronization.KnowledgeSyncOrchestrator.DoOneWaySyncHelper(SyncIdFormatGroup sourceIdFormats, SyncIdFormatGroup destinationIdFormats, KnowledgeSyncProviderConfiguration destinationConfiguration, SyncCallbacks DestinationCallbacks, ISync ChangerDataProxyAdoxyProvider sourceProxy, ISync ChangerDataProxyProvider sourceProxy SyncDataConverter conflictDataConverter, Int32& changesApplied, Int32& changesFailed) Microsoft.Synchronization.KnowledgeSyncOrchestrator.DoOneWayKnowledgeSync(SyncDataConverter sourceConverter、SyncDataConverter destinationConverter、SyncProvider sourceProvider、

トレース情報を有効にしましたが、この場合、役立つ情報が得られないようです。

このエラーの原因を突き止める方法について、誰かが提案できますか?

ご協力いただきありがとうございます。

同期を処理するコードは次のとおりです。

public void SynchronizeProviders()

{ CeDatabase localDb = 新しい CeDatabase(); localDb.Location = Directory.GetCurrentDirectory() + "\Data\SYNCTESTING5.sdf"; RelationalSyncProvider localProvider = ConfigureCeSyncProvider(localDb.Connection); MyAppKnowledgeSyncProvider srcProvider = new MyAppKnowledgeSyncProvider(); localProvider.MemoryDataCacheSize = 5000; localProvider.BatchingDirectory = "c:\batchingdir"; srcProvider.BatchingDirectory = "c:\batchingdir";

SyncOrchestrator orchestrator = new SyncOrchestrator();
orchestrator.LocalProvider = localProvider;
orchestrator.RemoteProvider = srcProvider;
orchestrator.Direction = SyncDirectionOrder.UploadAndDownload;

CheckIfProviderNeedsSchema(localProvider as SqlCeSyncProvider, srcProvider);
SyncOperationStatistics stats = orchestrator.Synchronize();

}

srcProvider の作成に使用される KnowledgeSyncProviderClass は次のとおりです。

   class MyAppKnowledgeSyncProvider : KnowledgeSyncProvider, IDisposable
{
    protected MyAppSqlSync.IMyAppSqlSync proxy;
    protected SyncIdFormatGroup idFormatGroup;
    protected DirectoryInfo localBatchingDirectory;
    protected bool disposed = false;

    private string batchingDirectory = Environment.ExpandEnvironmentVariables("%TEMP%");

    public string BatchingDirectory
    {
        get { return batchingDirectory; }
        set 
        {
            if (string.IsNullOrEmpty(value))
            {
                throw new ArgumentException("value cannot be null or empty");
            }
            try
            {
                Uri uri = new Uri(value);
                if (!uri.IsFile || uri.IsUnc)
                {
                    throw new ArgumentException("value must be a local directory");
                }
                batchingDirectory = value;
            }
            catch (Exception e)
            {
                throw new ArgumentException("Invalid batching directory.", e);
            }
        }
    }

    public MyAppKnowledgeSyncProvider()
    {
        this.proxy = new MyAppSqlSync.MyAppSqlSyncClient();
        this.proxy.Initialize();
    }

    public override void BeginSession(SyncProviderPosition position, SyncSessionContext syncSessionContext)
    {
        this.proxy.BeginSession(position);
    }

    public DbSyncScopeDescription GetScopeDescription()
    {
        return this.proxy.GetScopeDescription();
    }

    public override void EndSession(SyncSessionContext syncSessionContext)
    {
        this.proxy.EndSession();
        if (this.localBatchingDirectory != null)
        {
            this.localBatchingDirectory.Refresh();

            if (this.localBatchingDirectory.Exists)
            {
                this.localBatchingDirectory.Delete(true);
            }
        }          
    }

    public override ChangeBatch GetChangeBatch(uint batchSize, SyncKnowledge destinationKnowledge, out object changeDataRetriever)
    {
        MyAppSqlSync.GetChangesParameters changesWrapper = proxy.GetChanges(batchSize, destinationKnowledge);
        changeDataRetriever = changesWrapper.DataRetriever;

        DbSyncContext context = changeDataRetriever as DbSyncContext;
        if (context != null && context.IsDataBatched)
        {
            if (this.localBatchingDirectory == null)
            {
                string remotePeerId = context.MadeWithKnowledge.ReplicaId.ToString();
                string sessionDir = Path.Combine(this.batchingDirectory, "MyAppSync_" + remotePeerId);
                this.localBatchingDirectory = new DirectoryInfo(sessionDir);
                if (!this.localBatchingDirectory.Exists)
                {
                    this.localBatchingDirectory.Create();
                }
            }

            string localFileName = Path.Combine(this.localBatchingDirectory.FullName, context.BatchFileName);
            FileInfo localFileInfo = new FileInfo(localFileName);

            if (!localFileInfo.Exists)
            {
                byte[] remoteFileContents = this.proxy.DownloadBatchFile(context.BatchFileName);
                using (FileStream localFileStream = new FileStream(localFileName, FileMode.Create, FileAccess.Write))
                {
                    localFileStream.Write(remoteFileContents, 0, remoteFileContents.Length);
                }
            }
            context.BatchFileName = localFileName;
        }
        return changesWrapper.ChangeBatch;
    }

    public override FullEnumerationChangeBatch GetFullEnumerationChangeBatch(uint batchSize, SyncId lowerEnumerationBound, SyncKnowledge knowledgeForDataRetrieval, out object changeDataRetriever)
    {
        throw new NotImplementedException();
    }

    public override void GetSyncBatchParameters(out uint batchSize, out SyncKnowledge knowledge)
    {
        MyAppSqlSync.SyncBatchParameters wrapper = proxy.GetKnowledge();
        batchSize = wrapper.BatchSize;
        knowledge = wrapper.DestinationKnowledge;
    }

    public override SyncIdFormatGroup IdFormats
    {
        get
        {
            if (idFormatGroup == null)
            {
                idFormatGroup = new SyncIdFormatGroup();

                idFormatGroup.ChangeUnitIdFormat.IsVariableLength = false;
                idFormatGroup.ChangeUnitIdFormat.Length = 1;

                idFormatGroup.ReplicaIdFormat.IsVariableLength = false;
                idFormatGroup.ReplicaIdFormat.Length = 16;

                idFormatGroup.ItemIdFormat.IsVariableLength = true;
                idFormatGroup.ItemIdFormat.Length = 10 * 1024;
            }
            return idFormatGroup;
        }
    }

    public override void ProcessChangeBatch(ConflictResolutionPolicy resolutionPolicy, ChangeBatch sourceChanges, object changeDataRetriever, SyncCallbacks syncCallbacks, SyncSessionStatistics sessionStatistics)
    {
        DbSyncContext context = changeDataRetriever as DbSyncContext;
        if (context != null && context.IsDataBatched)
        {
            string fileName = new FileInfo(context.BatchFileName).Name;
            string peerId = context.MadeWithKnowledge.ReplicaId.ToString();
            if (!this.proxy.HasUploadedBatchFile(fileName, peerId))
            {
                FileStream stream = new FileStream(context.BatchFileName, FileMode.Open, FileAccess.Read);
                byte[] contents = new byte[stream.Length];
                using (stream)
                {
                    stream.Read(contents, 0, contents.Length);
                }
                this.proxy.UploadBatchFile(fileName, contents, peerId);
            }

            context.BatchFileName = fileName;
        }
        SyncSessionStatistics stats = this.proxy.ApplyChanges(resolutionPolicy, sourceChanges, changeDataRetriever);
        sessionStatistics.ChangesApplied += stats.ChangesApplied;
        sessionStatistics.ChangesFailed += stats.ChangesFailed;
    }

    public override void ProcessFullEnumerationChangeBatch(ConflictResolutionPolicy resolutionPolicy, FullEnumerationChangeBatch sourceChanges, object changeDataRetriever, SyncCallbacks syncCallbacks, SyncSessionStatistics sessionStatistics)
    {
        throw new NotImplementedException();
    }

    ~MyAppKnowledgeSyncProvider()
    {
        Dispose(false);
    }

    #region IDisposable Members

    public virtual void Dispose()
    {
        Dispose(true);
        GC.SuppressFinalize(this);
    }

    protected virtual void Dispose(bool disposing)
    {
        if (!this.disposed)
        {
            if (disposing)
            {
                if (this.proxy != null)
                {
                    CloseProxy();
                }
            }

            disposed = true;
        }
    }

    public virtual void CloseProxy()
    {
        if (this.proxy != null)
        {
            this.proxy.Cleanup();
            ICommunicationObject channel = proxy as ICommunicationObject;
            if (channel != null)
            {
                try
                {
                    channel.Close();
                }
                catch (TimeoutException)
                {
                    channel.Abort();
                }
                catch (CommunicationException)
                {
                    channel.Abort();
                }
            }
            this.proxy = null;
        }
    }

    #endregion
}
4

1 に答える 1

0

奇妙なことに、それは機能し始めたばかりです。

Visual Studio 2010 内で、「コンポーネントを更新する」または「コンポーネントをインストールする」必要があるという通知を受け取りました。いくつかの Web コンポーネントをインストールしました。

今、私のコードはエラーなしで実行されます。

このエラーを回避できたことは非常にうれしいことですが、非常に満足のいく方法ではありません。

良い。取れるものは取ります。

于 2012-08-07T12:13:29.510 に答える