6

我正在使用 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。

4

2 回答 2

7

从 Reflector 中的源代码来看,似乎只有两种方法可以删除订阅(除了处理StreamingSubscriptionConnection, 是通过调用 Remove,我假设您没有这样做,或者通过订阅返回错误代码ServiceError.ErrorMissedNotificationEvents. 您可以通过查看处理程序来检查错误errorEventArgs.ExceptionResolveError如果它是 的实例ServiceResponseException,请将其转换为该类型并获取ErrorCode属性。触发OnSubscriptionError事件后,订阅将自动删除。

获取错误代码可能会帮助您找出发生这种情况的原因,但即使您无法修复它,您也可以确定何时删除订阅并在这种情况下异步添加另一个订阅。

于 2011-05-08T22:14:18.933 回答
2

我知道这是很久以前问过的,但我想我会发布我如何解决错误(找不到任何解释为什么会发生的东西)。顺便说一下,还使用了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
        }
    }
于 2015-09-02T17:20:11.833 回答