如何为 Outlook 联系人编写自定义同步提供程序?
谁能向我指出 Microsoft 同步框架的 Outlook 联系人自定义同步提供程序的示例?我想使用该框架在我的 CRM 和 Outlook 之间构建双向同步。我找到了对这个问题的引用: Sync Microsoft Outlook with my own data 不幸的是,MSDN 示例的链接不再有效。它只是重定向到没有此类示例的 MSDN 示例库。
任何帮助将不胜感激。
Can anyone point me to an example of an Outlook Contact custom sync provider for the Microsoft Sync Framework? I would like to use that Framework to build a bidirectional sync between my CRM and Outlook. I've found a reference to this SO question: Sync Microsoft Outlook with my own data
Unfortunately, the link to MSDN example is no longer valid. It simply redirects to the MSDN sample gallery which has no such sample.
Any help would be much appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我也很好奇这个链接是什么。我还没有找到任何"Wrapped PST Store" 或“自定义 MAPI 存储”或“自定义 MAPI 传输提供商”。 MAPI本身提供了同步过程,但它并不是为使用而设计的来自托管代码并且非常复杂。
我发现的最好的“综述”是 codeplex 上的 Outlook MAPI 示例。不过,这些不涉及任何漂亮的“同步框架”;大概是用作后端? (大多数示例忽略如何进行后端处理。)
我们在这里评估完全托管的插件内同步过程,以避免必须处理 MAPI 的复杂性,但可行性仍然是不完全知道。 (这种方法也会引入不同的问题和限制。)
祝你好运,编码愉快。
I am very curious to what the link was to, as well. I have not found anything short of either a "Wrapped PST Store" or "Custom MAPI Store" or "Custom MAPI Transport Provider". MAPI itself provides a synchronization process, but it is not designed to be used from managed code and is very complicated.
The best "roundup" I have found is the Outlook MAPI Samples on codeplex. These do not deal with any pretty "Sync Framework" though; presumably that is used as the back-end? (Most samples neglect how to get to the back-end processing.)
We are evaluating an entirely managed in-Addin synchronization process here to avoid having to deal with the complications of MAPI, but the viability is still not entirely known. (This approach also introduces different problems and limitations.)
Good luck and happy coding.