According to this:
http://msdn.microsoft.com/en-us/library/dd633705(v=exchg.80).aspx
In each EWS response, the version of Exchange that generated the response is indicated by the ServerVersionInfo element. The following example shows a ServerVersionInfo element that represents a response from Exchange 2010 SP1.
The example on that page has:
Version="Exchange2010_SP1"
I'm currently working with an Exchange Online account, and the value I'm seeing in EWS server responses is:
<?xml version="1.0" encoding="utf-8"?>
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Header>
<h:ServerVersionInfo [xmlns' snipped]
MajorVersion="15" MinorVersion="0" MajorBuildNumber="800" MinorBuildNumber="16"
Version="V2_6"/>
</s:Header>
So it's Version="V2_6", which I can't find in the EWS reference.
1 - Is this to be expected for Exchange Online? What about Office 365 accounts?
2 - Where does V2_6 fit into the sequence of: Exchange2007, Exchange2007_SP1, Exchange2010, .... Exchange2013?
In other words, when I see Version="V2_6" in server responses, what schema version can I use in my requests' <RequestServerVersion>?