9

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 ?

Jan Doggen
  • 8,799
  • 13
  • 70
  • 144
Raj
  • 141
  • 1
  • 1
  • 7

1 Answers1

8

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.

Jason Johnston
  • 17,194
  • 2
  • 20
  • 34
  • 1
    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? – Raj Jan 13 '16 at 19:40
  • Should. Basically setting that sets the schema that's used to communicate. Exchange is backwards-compatible, so it supports the 2013 schema. – Jason Johnston Jan 13 '16 at 19:55
  • Thanks Jason, will test this and let u know – Raj Jan 13 '16 at 21:06