1

MS Outlook によってタスクとして認識される電子メールを作成 (生成) することは可能ですか (MS COM オブジェクトなどなしで - たとえば *nix プラットフォームで)。

4

1 に答える 1

1

*nix プラットフォームから - 実際に使用できる唯一のオプションは、EWS を使用して Exchange と直接通信するか、この EWS の動作をラップする中間サービス ( Exchange Server 2007+ ) を使用することです。古いバージョンの Exchangeを使用している場合は、 WebDAV を検討する必要がある場合があります

<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
               xmlns:xsd="http://www.w3.org/2001/XMLSchema"
               xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
               xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types">
  <soap:Header>
    <t:RequestServerVersion Version="Exchange2007_SP1"/>
    <t:TimeZoneContext>
      <t:TimeZoneDefinition Id="Eastern Standard Time"/>
    </t:TimeZoneContext>
  </soap:Header>
  <soap:Body>
    <CreateItem xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
      <Items xmlns="http://schemas.microsoft.com/exchange/services/2006/messages">
          <Task xmlns="http://schemas.microsoft.com/exchange/services/2006/types">
            <Subject>This is a recurring task that was created by using the autogenerated EWS proxies.</Subject>
            <Body BodyType="Text">This task occurs every week.</Body>
            <Recurrence>
              <WeeklyRegeneration>
                <Interval>1</Interval>
              </WeeklyRegeneration>
              <NoEndRecurrence>
                <StartDate>2006-08-15</StartDate>
              </NoEndRecurrence>
            </Recurrence>
            <StartDate>2006-08-15T14:24:51.3876635-07:00</StartDate>
          </Task>
      </Items>
    </CreateItem>
  </soap:Body>
</soap:Envelope>
于 2012-12-05T17:19:33.213 に答える