Can we connect to Exchange 2016 using EWS Managed API?

11,346

It will connect just fine. You don't need to set the version to match the server, you set the version to indicate the lowest level of service you support.

Share:
11,346
Raj
Author by

Raj

Updated on June 04, 2022

Comments

  • Raj
    Raj almost 2 years

    I am using EWS Managed API 2.2 and it does not show the Exchange version 2016 in its enumeration. I can see the versions upto Exchange 2013. So how can I connect to Exchange Server 2016? Is the API, yet to be updated from Microsoft or do I need to use any other API's to connect to Exchange 2016 ?

  • Raj
    Raj over 8 years
    Here is the scenario, I am trying to SubscribeToStreamingNotifications in Exchange 2016 by using the ExchangeVersion. If I use the ExchangeVersion.Exchange2013, will it work?
  • Jason Johnston
    Jason Johnston over 8 years
    Should. Basically setting that sets the schema that's used to communicate. Exchange is backwards-compatible, so it supports the 2013 schema.
  • Raj
    Raj over 8 years
    Thanks Jason, will test this and let u know