我正在拨打肥皂来交换所有定期会议(C ++)。
因此,当我执行FindItem请求时,我会在日历视图(开始时间和结束时间)中返回指定时间内的所有约会。
但是对于使用同一个电话重复发生的情况,我可以获得项目ID的主重复ID,无论我收到了什么。
答案 0 :(得分:0)
以下是我使用的内容:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:typ="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:mes="http://schemas.microsoft.com/exchange/services/2006/messages">
<soapenv:Header>
<typ:RequestServerVersion Version="Exchange2007_SP1"/>
</soapenv:Header>
<soapenv:Body>
<mes:GetItem>
<mes:ItemShape>
<typ:BaseShape>IdOnly</typ:BaseShape>
<typ:AdditionalProperties>
<!-- We only query the properties that we need -->
<typ:FieldURI FieldURI="item:Subject" /> <!-- Leave for debugging purposes -->
<typ:FieldURI FieldURI="item:Categories" />
<typ:FieldURI FieldURI="item:DateTimeCreated" />
<typ:FieldURI FieldURI="item:LastModifiedTime" />
<typ:FieldURI FieldURI="item:Sensitivity" />
<typ:FieldURI FieldURI="item:ItemClass" />
<typ:FieldURI FieldURI="calendar:Start" />
<typ:FieldURI FieldURI="calendar:End" />
<typ:FieldURI FieldURI="calendar:CalendarItemType" />
<typ:FieldURI FieldURI="calendar:IsRecurring" />
<typ:FieldURI FieldURI="calendar:Recurrence" />
<typ:FieldURI FieldURI="calendar:FirstOccurrence" />
<typ:FieldURI FieldURI="calendar:LastOccurrence" />
<typ:FieldURI FieldURI="calendar:ModifiedOccurrences" />
<typ:FieldURI FieldURI="calendar:DeletedOccurrences" />
</typ:AdditionalProperties>
</mes:ItemShape>
<mes:ItemIds>
<typ:RecurringMasterItemId OccurrenceId="AAMk[snip]A=="/>
</mes:ItemIds>
</mes:GetItem>
</soapenv:Body>
</soapenv:Envelope>
OccurrenceID是您通过FindItem获得的ItemID。