0

不完全なタスクについて Exchange Webservices にクエリを実行しようとしていますが、この質問とは異なり、C# ではなくプレーンな Web サービス呼び出し (SOAP-UI など) を使用しています。

単純な Web サービス リクエストを使用して同じものをフィルタリングできるかどうかを知りたいです。

私の現在の要求はすべての Outlook タスクを取得し、結果をフィルター処理できますが、Exchange にフィルター処理をさせる方が望ましいでしょう。

<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:Body>
      <FindItem Traversal="Shallow" xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types">
         <ItemShape>
            <t:BaseShape>Default</t:BaseShape>
         </ItemShape>
         <ParentFolderIds>
            <t:DistinguishedFolderId Id="tasks">
               <t:Mailbox>
                  <t:EmailAddress>dummy@address.com</t:EmailAddress>
               </t:Mailbox>
            </t:DistinguishedFolderId>
         </ParentFolderIds>
      </FindItem>
   </soapenv:Body>
</soapenv:Envelope>

Outlook 2007 と話しています。

4

1 に答える 1