使用EWS(不是托管API)进行模拟

时间:2015-11-16 19:29:56

标签: outlook exchange-server exchangewebservices

是否可以在不使用Managed API的情况下在EWS中使用Impersonation?

我通读了this页面,但它似乎没有帮助。

我希望能够通过发送SOAP请求而不是使用托管API在用户的日历上创建事件。

1 个答案:

答案 0 :(得分:2)

当然使用Impersonation只需要设置Impersonation SOAP标头,例如

<soap:Header>
  <t:ExchangeImpersonation>
    <t:ConnectingSID>
      <t:PrimarySmtpAddress>alisa@contoso.com</t: PrimarySmtpAddress>
    </t:ConnectingSID>
  </t:ExchangeImpersonation>
</soap:Header>

我建议https://msdn.microsoft.com/en-us/library/office/dn722378(v=exchg.150).aspx是更好的参考

欢呼声 格伦