是否可以在一个'syncFolderItems'操作中监控多个文件夹? 我尝试过,但它似乎没有用。 例如,这个:
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types">
<soap:Body>
<SyncFolderItems xmlns="http://schemas.microsoft.com/exchange/services/2006/messages">
<ItemShape>
<t:BaseShape>Default</t:BaseShape>
</ItemShape>
<SyncFolderId>
<t:DistinguishedFolderId Id="drafts"/>
<t:DistinguishedFolderId Id="inbox"/>
</SyncFolderId>
<MaxChangesReturned>500</MaxChangesReturned>
</SyncFolderItems>
</soap:Body>
</soap:Envelope>
不起作用:(
有可能吗? 谢谢:))
答案 0 :(得分:2)
我知道这是一个非常古老的问题,但对其他用户来说仍然很重要,所以我正在回答
不可能
SyncFolderId可以有一个子标签FolderID或DistinguishedFolderID
<SyncFolderId>
<FolderId/>
</SyncFolderId>
<SyncFolderId>
<DistinguishedFolderId/>
</SyncFolderId>
参考链接http://msdn.microsoft.com/en-us/library/exchange/aa580296%28v=exchg.80%29.aspx