我正在尝试查询 Exchange Webservices 是否有不完整的任务,但与这个问题不同的是,我使用普通的 Web 服务调用(如通过 SOAP-UI)而不是通过 C# 这样做。
我想知道是否可以使用简单的 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 交谈。