_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,其消息是:
The request has Failed. The operation has timed out.
值得一提的是,即使我将超时设置为一分钟,它仍然需要超过一分钟然后抛出此异常.该呼叫永远不会超过该Open命令.
我的问题是,过去有没有人遇到过这个问题?此外,是否有任何可用的工具可用于诊断任何连接问题,以确定异常是在我的端,Exchange服务器端,还是中间的某个地方?我已经尝试过fiddler和Microsoft网络监视器来寻找任何模式,但我很难辨别任何东西.
提前致谢!
编辑:要添加到此,如果我添加跟踪侦听器,我会得到相当多的输出.我可以看到它检索订阅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>
我试图排除网络问题,但是有点困难.此时欢迎任何建议.
解决方法 对于那些追随我的人来说,这个问题与.Net或EWS库无关.问题最终与我们公司负载均衡器的持久性设置有关.使用我们的负载平衡器,如果为EWS流订阅调用启用了任何类型的持久性,那么这些连接将失败.不幸的是,当时我不知道自己和Exchange服务器之间存在负载均衡器,因为开发人员无法访问该基础结构.
无论如何,希望这有助于将来的某个人!
总结以上是内存溢出为你收集整理的c# – 打开连接时的Exchange Web服务流式订阅超时全部内容,希望文章能够帮你解决c# – 打开连接时的Exchange Web服务流式订阅超时所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)