SendNotificationResult

SendNotificationResult

我们目前正在使用Microsoft Exchange Web服务的推送通知,以便在创建新日历事件时调用我们的服务。一开始看起来还不错。我们正在收到验证消息,并用以下方式响应:

<?xml version="1.0"?>
  <s:Envelope xmlns:s= "http://schemas.xmlsoap.org/soap/envelope/">
    <s:Body>
      <SendNotificationResult xmlns="http://schemas.microsoft.com/exchange/services/2006/messages">
        <SubscriptionStatus>OK</SubscriptionStatus>
      </SendNotificationResult>
    </s:Body>
  </s:Envelope>

不幸的是,exchange服务器只是继续以越来越长的间隔向我们发送验证消息,就好像我们的响应格式不正确一样。有人知道微软为什么不接受我们的回复信息吗?

最佳答案

我认为应该将xml标记命名为<SendNotificationResultType>,而不是<SendNotificationResult>
试试看,如果你有什么问题就告诉我们。

07-27 14:05