Office 365不会在响应标头中返回X-BackendOverrideCookie。

我在请求标头中正确设置了X-AnchorMailbox和X-PreferServerAffinity。正如MSDN中所说,这不会触发X-BackendOverrideCookie返回。为什么会这样呢?

同时,我使用内部部署的Exchange 2016尝试了同样的事情。在这里,我什至没有设置X-AnchorMailbox和X-PreferServerAffinity,并且在每个响应中都得到了X-BackendOverrideCookie。这也不是一件好事,因为我需要管理与拉式和推式通知组有关的亲和力,并且需要在需要时设置此cookie,并且默认情况下不必始终设置它。

编辑1:

流程是这样的。我正在使用JS发送订阅请求。为此,我使用lather将请求包装为SOAP格式。

该操作如下所示:

var impersonate = ‘[email protected]’

var subscribe = {
         "m:Subscribe": {
                    "m:PullSubscriptionRequest": {
                        "t:FolderIds": {
                            "t:DistinguishedFolderId": {
                                attributes: [{
                                    'Id': this.distinguishedFolderId
                                }]
                            }
                        },
                        "t:EventTypes": [{
                            "t:EventType": "CreatedEvent"
                        }, {
                            "t:EventType": "DeletedEvent"
                        }, {
                            "t:EventType": "ModifiedEvent"
                        }],
                        "t:Timeout": "10"
                    }
                }
  };


soapHeader = {
                “t:ExchangeImpersonation": {
                   "t:ConnectingSID": {
                       't:SmtpAddress': impersonate
                   }
                }
             }

lather.up({
                body : requestName,
                headers : {
                    Authorization : lather.basicAuth(this.username, this.password),
                    'X-AnchorMailbox': impersonate,
                    'X-PreferServerAffinity': true
                },
                additionalNamespaces : [
                    'xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages"',
                    'xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"',
                ],
                soapHeader : soapHeader,
                method : 'POST',
                url : ‘https://outlook.office365.com/EWS/Exchange.asmx',
            }, function(error, res, body) {
               // Process the response
            })


执行此操作后,请求就会形成并发出。当我查看发出的原始请求时,我确认标头就位。

headers:
{ Authorization: 'Basic c29m…’, (shortened just in case)
'X-AnchorMailbox': ‘[email protected]', (fake mail)
'X-PreferServerAffinity': true,
'Content-Length': 971,
'Content-Type': 'text/xml; charset=utf-8',
host: 'outlook.office365.com' }


然后,我从Office收到以下答复。

响应的主体:(以缩短Ids,以防万一)

<?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo MajorVersion="15" MinorVersion="1" MajorBuildNumber="693" MinorBuildNumber="12" Version="V2016_10_10" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body><m:SubscribeResponse xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:SubscribeResponseMessage ResponseClass=“Success”><m:ResponseCode>NoError</m:ResponseCode><m:SubscriptionId>KQB2aTFwcjA…wucsA==</m:SubscriptionId><m:Watermark>AQAAAFQ+2wmbaZF…JAAAAAAA=</m:Watermark></m:SubscribeResponseMessage></m:ResponseMessages></m:SubscribeResponse></s:Body></s:Envelope>


响应的标头为:(ID,cookie缩短)

{ 'cache-control': 'private',
'transfer-encoding': 'chunked',
'content-type': 'text/xml; charset=utf-8',
server: 'Microsoft-IIS/8.5',
'request-id': ‘2881ab3…1ec461’,
'x-calculatedbetarget': 'VI1PR0501MB2096.eurprd05.prod.outlook.com',
'x-backendhttpstatus': '200',
'set-cookie': [ ‘exchangecookie=d8f8…1e8; expires=Sat, 28-Oct-2017 08:41:27 GMT; path=/; HttpOnly' ],
'x-ewshandler': 'Subscribe',
'x-aspnet-version': '4.0.30319',
'x-diaginfo': 'VI1PR0501MB2096',
'x-beserver': 'VI1PR0501MB2096',
'x-powered-by': 'ASP.NET',
'x-feserver': 'VI1PR0901CA0093',
date: 'Fri, 28 Oct 2016 08:41:26 GMT' }


如您所见,我仅获得交换cookie,而没有X-BackendOverrideCookie。有什么想法吗?难道我做错了什么?

编辑2:

我也使用EWSEditor进行了尝试。设置两个标头,并发出请求订阅请求。我得到的结果与这里相同。

编辑3:

这是完整的request

最佳答案

您的问题不包括SOAP标头,但是如果遇到与我相同的问题,那么问题在于这些标头中的RequestServerVersion参数。

具体来说,您需要包含以下内容:

<soap:Header>
    <t:RequestServerVersion Version="Exchange2013_SP1"/>
</soap:Header>


重要的部分是Exchange2013_SP1。如果没有_SP1,则Office365不会在响应中包括“ X-BackendOverrideCookie” cookie。

08-28 05:56