5

我们目前正在使用来自 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>

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

4

1 回答 1

4

我认为你的 XML 标签应该被命名<SendNotificationResultType>而不是<SendNotificationResult>.

试一试,如果您有任何问题,请告诉我们。

于 2013-10-11T15:50:25.257 回答