gpt4 book ai didi

office365 - 通过 EWS 通过移动关联消息

转载 作者:行者123 更新时间:2023-12-05 00:20:33 24 4
gpt4 key购买 nike

假设您正在构建一个从 EWS 同步消息正文和元数据的应用程序。让您的初始状态同步非常简单:调用 SyncFolderHierarchy to get the folder list, SyncFolderItems to get the message ItemIds, and GetItem to get the message bodies and metadata.

尝试通过移动跟踪消息时,事情变得有点复杂。搬家后,调用SyncFolderItems将在一个文件夹中返回 Create 并在另一个文件夹中返回 Delete 。您希望将这些关联起来,以便客户端可以避免重新下载邮件正文和附件。 (另外,这样客户端就不会丢失与其本地副本关联的任何元数据。)但是,在文件夹之间移动消息会更改其 EWS ItemId,因此 ItemId 不能用于关联创建和删除。

EWS 文档建议 subscribing to streaming notifications ,它确实支持 Move 事件。但是流式通知 aren't buffered when the stream is not connected ,因此您仍然必须在建立流连接之前使客户端恢复同步。因此,流式通知不能成为完整的关联移动解决方案。

另一个 EWS 选项是 subscribing to pull notifications .与流式通知一样,拉式通知也支持移动事件。与流式通知不同,拉订阅缓冲更改。但是,如果您的客户端在拉取订阅到期时处于脱机状态,那么您又会回到同样的情况。 (不过,由于 a pull subscription can be scoped to last a full day ,这可能仍然可行。)

最后一个选项是使用 ItemId 以外的东西来关联通过 SyncFolderItems 移动的项目。 :

  • PR_SEARCH_KEY通过移动工作,但副本有问题(因为副本最终与原始 PR_SEARCH_KEY 相同)
  • PR_ENTRYID似乎 like it'd be workable for this purpose似乎 better than PR_RECORD_KEY :
  • A MAPI store provider assigns a unique ID string when an item is created in its store. Therefore, the EntryID property is not set for a Microsoft Outlook item until it is saved or sent. The EntryID changes when an item is moved into another store, for example, from your Inbox to a Microsoft Exchange Server public folder, or from one Personal Folders (.pst) file to another .pst file. Solutions should not depend on the EntryID property to be unique unless items will not be moved. The EntryID property returns a MAPI long-term EntryID.
    所以... 是什么?对 通过 EWS 移动关联项目的方法?

    最佳答案

    有两件事可以帮助你:

    第一种方法

    我们通过为每个项目(在我们的案例中为日历项目)提供一个包含 EWS 项目 ID 副本(每当我们编写/更新它时)的用户定义属性(又名扩展属性)来解决这个问题。

    每当我们读取要同步的项目时,我们都会检查该属性是否仍与 EWS 项目 ID 匹配。如果没有,我们知道该项目已被移动并相应地处理它(并且我们清除用户定义的属性)。

    与其他一些用于记账的用户定义属性一起,这使我们能够维护 Exchange 中的项目与我们的应用程序中的项目之间的完整性。

    第二种方法

    在某些极端情况下这不起作用(但我们忽略了它们)。对于那些,使用 EWS 项目 ID 进行跟踪不再有效,建议使用 UID/PidLidGlobalObject 属性。我不必实际实现这一点,但这里有一些引用资料可以帮助您入门:

    "Exchange calendar: Is ConversationId a good identifier of master events for FindItem occurrences?"
    "The appointment.Id.UniqueID changed"
    "EWS API- Differences in ICalUid returned when appointments are created by Office 365 account vs. Microsoft Outlook Mac Client"
    "EWS: UID not always the same for orphaned instances of the same meeting"

    "Property: UID"
    "PidLidGlobalObjectId Canonical Property"
    "PidLidCleanGlobalObjectId Canonical Property"
    "Getting GlobalObjectID from UID(Appointment created from IPhone)"
    "Developer information about the calendar changes in Outlook 2003 Service Pack 2, in Exchange Server 2003 Service Pack 2, and in later versions of Exchange Server and of Outlook"

    "Working with extended properties by using the EWS Managed API 2.0"

    我无法具体说明要使用的代码,因为我们的应用程序是用 Delphi 编写的,并且仅使用 SOAP 调用来同步日历项。

    关于office365 - 通过 EWS 通过移动关联消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34234455/

    24 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com