我正在使用Microsoft Exchange Web Services 1.1 SDK并使用流连接订阅新邮件通知。一切都可以接收通知,但我偶尔会收到有关我的Exchange无法找到订阅的错误。
以下是我用来初始化订阅和我使用的事件的代码。
public void Subscribe()
{
var locateMailbox = new Mailbox
{
Address = "myemail"
};
var folderId = new FolderId(WellKnownFolderName.Inbox, locateMailbox);
var foldersToWatch = new[] {folderId};
StreamingSubscription streamingSubscription =
_exchangeService.SubscribeToStreamingNotifications(foldersToWatch, EventType.NewMail);
// Timeout is set at 1 minute intentionally
var streamingConnection = new StreamingSubscriptionConnection(_exchangeService, 1);
streamingConnection.AddSubscription(streamingSubscription);
streamingConnection.OnSubscriptionError += ResolveError;
streamingConnection.OnDisconnect += Reconnect;
streamingConnection.Open();
}
public void Reconnect(object sender, SubscriptionErrorEventArgs disconnectEventArgs)
{
if (!((StreamingSubscriptionConnection)sender).IsOpen)
((StreamingSubscriptionConnection)sender).Open();
}
public void ResolveError(object sender, SubscriptionErrorEventArgs errorEventArgs)
{
var streamingSubscriptionConnection =
(StreamingSubscriptionConnection) sender;
if (!streamingSubscriptionConnection.IsOpen)
streamingSubscriptionConnection.Open();
}
ServiceLocalException - You must add at least one subscription to this connection before it can be opened.
该异常说明了一切,我知道我可以在Reconnect()
内创建另一个订阅。我希望有人能帮我理解订阅的去向。我无法想象像Exchange 2010这样的产品会丢失我的订阅。另外,我无法指出错误。有时候我可以让我的订阅保持活动状态10分钟,有时候我会收到一条关于我的订阅在2-3分钟后无效的错误。
我正在使用Exchange 2010 SP1。
答案 0 :(得分:7)
通过查看Reflector中的源代码,看起来只有两种方式可以删除订阅(除了处理StreamingSubscriptionConnection
,通过调用Remove,我认为你没有这样做,或者通过订阅返回ServiceError.ErrorMissedNotificationEvents
以外的错误代码。您可以通过查看errorEventArgs.Exception
处理程序中的ResolveError
来检查错误。如果它是ServiceResponseException
的实例,请将其投射到该类型并获取ErrorCode
属性。在关闭OnSubscriptionError
事件后,将自动删除订阅。
获取错误代码可能会帮助您找出发生这种情况的原因,但即使您无法修复它,您也可以确定何时删除订阅并在此情况下异步添加其他订阅。
答案 1 :(得分:1)
我知道这是很久以前问过的,但我想我会发布如何解决这个错误(无法找到任何解释为什么会发生这种情况)。顺便使用Office 2010 sp1。
您可以使用发件人的Count()方法来验证您是否拥有有效订阅;
private static void onDisconnect(object sender, SubscriptionErrorEventArgs args)
{
StreamingSubscriptionConnection renew = (StreamingSubscriptionConnection)sender;
if(renew.CurrentSubscriptions.Count() > 0){ //if subscription exists reopen as normal
renew.Open();
}
else
{
//recreate the whole connection
}
}