3

所以我试图从 office360.com 获取所有日历事件。我正在使用 ews 来获取数据。我发送了一个请求

    <?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>
    <FindItem xmlns="http://schemas.microsoft.com/exchange/services/2006/messages"
               xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"
              Traversal="Shallow">
      <ItemShape>
        <t:BaseShape>AllProperties</t:BaseShape>
        <t:BodyType>HTML</t:BodyType>
      </ItemShape>
      <ParentFolderIds>
        <t:DistinguishedFolderId Id="calendar"/>
      </ParentFolderIds>
    </FindItem>
  </soap:Body>
</soap:Envelope>

这个肥皂请求 xml 没有返回我的日历消息正文,但我得到了主题和其他数据。我在这里做错了什么?任何帮助表示赞赏。

4

1 回答 1

3

需要在单独的调用中检索主体。

http://weblogs.asp.net/psperanza/archive/2008/03/18/getting-calendar-items-using-exchange-web-services.aspx

或者您可以先加载该属性。

http://blogs.msdn.com/b/exchangedev/archive/2010/03/16/loading-properties-for-multiple-items-with-one-call-to-exchange-web-services.aspx

第二个更容易,但您需要定义所有想要返回的属性,如果它很多,可能会很痛苦。

于 2013-06-11T09:44:07.480 回答