我目前正在解决与 Exchange Web 服务相关的问题。问题在于,在打开与流式订阅的连接(通过 StreamingSubscriptionConnection 对象)时,调用 Open 方法时操作会挂起。这是挂起的代码,供参考:
_streamingSubscriptionConnection = new StreamingSubscriptionConnection(_exchangeService, _connectionLifetime);
_streamingSubscriptionConnection.AddSubscription(_subscription);
_streamingSubscriptionConnection.OnNotificationEvent += new StreamingSubscriptionConnection.NotificationEventDelegate(OnNotificationEvent);
_streamingSubscriptionConnection.OnSubscriptionError += new StreamingSubscriptionConnection.SubscriptionErrorDelegate(OnSubscriptionError);
_streamingSubscriptionConnection.OnDisconnect += new StreamingSubscriptionConnection.SubscriptionErrorDelegate(OnDisconnect);
_streamingSubscriptionConnection.Open();
通常需要大约两分钟,然后它会抛出一个ServiceRequestException
谁的消息是:
请求失败。操作已超时。
还值得一提的是,即使我将超时设置为一分钟,它仍然需要超过一分钟然后抛出这个异常。该调用永远不会超过该 Open 命令。
我的问题是,过去有没有人遇到过这种情况?此外,是否有任何可用的工具可用于诊断任何连接问题,以确定异常是在我端、Exchange 服务器端还是在中间某处?我试过 Fiddler 和 Microsoft Network Monitor 来寻找任何模式,但我很难辨别任何东西。
提前致谢!
编辑:要补充这一点,如果我添加一个跟踪侦听器,我会得到很多输出。我可以看到它检索订阅 ID,然后尝试连接。当它发出连接请求时,这是在发出 Open 命令和超时之间记录的内容:
<Trace Tag="EwsRequestHttpHeaders" Tid="10" Time="2013-01-24 19:16:18Z">
POST /ews/exchange.asmx HTTP/1.1
Content-Type: text/xml; charset=utf-8
Accept: text/xml
User-Agent: ExchangeServicesClient/14.03.0032.000
Accept-Encoding: gzip,deflate
</Trace>
<Trace Tag="EwsRequest" Tid="10" Time="2013-01-24 19:16:18Z" Version="14.03.0032.000">
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Header>
<t:RequestServerVersion Version="Exchange2010_SP1" />
</soap:Header>
<soap:Body>
<m:GetStreamingEvents>
<m:SubscriptionIds>
<t:SubscriptionId>GABsdGNmaXN3bXNnY2EwNi5mbmZpcy5jb20QAAAAnQCowdNSt0iTEhqVr8+a1GPHu2t+yM8I</t:SubscriptionId>
</m:SubscriptionIds>
<m:ConnectionTimeout>30</m:ConnectionTimeout>
</m:GetStreamingEvents>
</soap:Body>
</soap:Envelope>
</Trace>
我试图排除网络问题,但这样做有点困难。在这一点上,欢迎任何建议。