3

是否可以在一個'syncFolderItems'操作中監控多個文件夾? 我試過了,但它似乎沒有工作。 例如,此:在'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> 

不工作:(

是有可能 謝謝:)

回答