我对EWS中的流媒体事件有一个奇怪的问题。
我已使用此处提到的所需Cookie订阅了一组邮箱: https://msdn.microsoft.com/en-us/library/office/dn458789(v=exchg.150).aspx
收到通知一段时间后,他们突然停下来(通常是40分钟后 - 1小时) 我尝试使用EWS跟踪进行调试,并注意到" heartbeat"消息 不再接收交换服务器定期发送的信息,例如:
<Envelope xmlns="http://schemas.xmlsoap.org/soap/envelope/">
<soap11:Header xmlns:soap11="http://schemas.xmlsoap.org/soap/envelope/">
<ServerVersionInfo xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" MajorVersion="15" MinorVersion="1" MajorBuildNumber="1178" MinorBuildNumber="21" Version="V2017_04_14" xmlns="http://schemas.microsoft.com/exchange/services/2006/types" />
</soap11:Header>
<soap11:Body xmlns:soap11="http://schemas.xmlsoap.org/soap/envelope/">
<m:GetStreamingEventsResponse 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" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
<m:ResponseMessages>
<m:GetStreamingEventsResponseMessage ResponseClass="Success">
<m:ResponseCode>NoError</m:ResponseCode>
<m:ConnectionStatus>OK</m:ConnectionStatus>
</m:GetStreamingEventsResponseMessage>
</m:ResponseMessages>
</m:GetStreamingEventsResponse>
</soap11:Body>
我已将OnDisconnect事件设置为在超时时重新打开连接并看到它有效 - 所以我猜它不是超时问题。
有没有人知道邮件停止到达的原因?
订阅是否丢失?我应该重新订阅吗? (我没有找到任何关于这个问题的参考)
这是我的代码:
`static void ListenerFunciton()
{
// Set the exchange service
ExchangeService service = null;
service = new ExchangeService(ExchangeVersion.Exchange2013_SP1);
service.Url = new Uri("https://outlook.office365.com/EWS/Exchange.asmx");
service.Credentials = new WebCredentials(ServiceAccount, ServicePassowrd);
System.Net.ServicePointManager.ServerCertificateValidationCallback =
delegate (Object obj, X509Certificate certificate, X509Chain chain, SslPolicyErrors errors)
{
return true;
};
string anchorMailbox = "blabla@domain.onmicrosoft.com"
StreamingSubscription subsribption = null;
//Set the coockies
service.HttpHeaders.Add("X-AnchorMailbox", anchorMailbox);
service.HttpHeaders.Add("X-PreferServerAffinity", "true");
// Set the impersonation
service.ImpersonatedUserId = new ImpersonatedUserId(ConnectingIdType.SmtpAddress, anchorMailbox);
subsribption = service.SubscribeToStreamingNotifications(new FolderId[] { WellKnownFolderName.Inbox }, EventType.NewMail);
int index = service.HttpResponseHeaders["Set-Cookie"].IndexOf("X-BackEndOverrideCookie");
string coockie = service.HttpResponseHeaders["Set-Cookie"].Substring(index).Split(';')[0];
service.HttpHeaders.Add("Cookie", coockie);
StreamingSubscriptionConnection connection = new StreamingSubscriptionConnection(service, 29);
connection.AddSubscription(subsribption);
connection.OnNotificationEvent += OnNotificationEvent;
connection.OnDisconnect += OnDisconnect;
connection.Open();
while(true)
{
}
}
static private void OnDisconnect(object sender, SubscriptionErrorEventArgs args)
{
Console.WriteLine("\n\n\n\nFrom now this is the reconnection\n\n\n\n");
//cast the sender object
StreamingSubscriptionConnection connection = (StreamingSubscriptionConnection)sender;
//reconnect
connection.Open();
}
static private void OnNotificationEvent(object sender, NotificationEventArgs args)
{
file.WriteLine(DateTime.Now.ToString() + " || Got notification");
file.Flush();
foreach (NotificationEvent notification in args.Events)
{
file.WriteLine("From Subscription: "+args.Subscription.Id+" Event: "+notification.EventType.ToString("D"));
file.Flush();
}
file.WriteLine("\n\n");
}`
答案 0 :(得分:2)
StreamingSubscriptionConnection的生命周期为1-30,因此生命周期min后Stream打开连接,引发事件并关闭连接。