3

1 回の「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>

動作しません:(

出来ますか?ありがとう :)

4

1 に答える 1

2

これは非常に古い質問であることは知っていますが、それでも他のユーザーにとって重要であるため、回答しています。
いいえ、可能ではありません
SyncFolderId は、1 つの子タグ FolderID または DistinguishedFolderID を持つことができます

<SyncFolderId>
   <FolderId/>
</SyncFolderId>

<SyncFolderId>
   <DistinguishedFolderId/>
</SyncFolderId>

参照リンクhttp://msdn.microsoft.com/en-us/library/exchange/aa580296%28v=exchg.80%29.aspx

于 2013-07-17T15:01:34.217 に答える