2015-01-26 70 views
1

我正在創建一個應用程序,它將在後臺作爲窗口服務工作。此應用程序將解析收件箱中的新電子郵件並保存附件。我嘗試了流媒體通知,但隨着連接斷開30個薄荷糖後,我想使用拉通知。下面是我調試的代碼,但是在控制檯上看不到任何輸出。只要我運行該應用程序,它將關閉控制檯窗口,因此不知道它是否正常工作。我想在收到新郵件後立即看新郵件,所以需要一些指導如何實現這一點。EWS託管的API拉取通知以觀看新郵件不起作用

using System; 
using System.Collections.Generic; 
using System.Linq; 
using System.Text; 
using System.Threading.Tasks; 
using Microsoft.Exchange.WebServices.Data; 
using System.Configuration; 
using System.Timers; 

namespace PullNotification 
{ 
    class Program 
    { 
     static void Main(string[] args) 
     { 
      ExchangeService service = new ExchangeService(ExchangeVersion.Exchange2010_SP2); 
      WebCredentials wbcred = new WebCredentials(ConfigurationSettings.AppSettings["user"], ConfigurationSettings.AppSettings["PWD"]); 
      PullSubscription SubscriptionInbox; 

      service.Credentials = wbcred; 
      service.AutodiscoverUrl(ConfigurationSettings.AppSettings["user-id"], RedirectionUrlValidationCallback); 


      SubscriptionInbox = service.SubscribeToPullNotifications(new FolderId[] { WellKnownFolderName.Inbox }, 5/* subcription will end if the server is not polled within 5 mints*/, null/*to start a new subcription*/, EventType.NewMail, EventType.Modified); 
      //Timer myTimer = new Timer(); 
      //myTimer.Elapsed += new ElapsedEventHandler(GetPullNotifications); 
      //myTimer.Interval = 10000; 
      //myTimer.Start(); 


      GetEventsResults events = SubscriptionInbox.GetEvents(); 
      EmailMessage message; 

      foreach (ItemEvent itemEvent in events.ItemEvents) 
      { 
       switch (itemEvent.EventType) 
       { 
        case EventType.NewMail: 
         try 
         { 
          Item item = Item.Bind(service, itemEvent.ItemId); 
          if (item.Subject == "A123") 
          { 
           Console.WriteLine("check the code"); 
          } 
         } 
         catch (Exception e) 
         { 
          Console.WriteLine("error=" + e.Message); 
         } 
         break; 
        case EventType.Deleted: 
         Item item1 = Item.Bind(service, itemEvent.ItemId); 
         Console.WriteLine("Mail with subject" + item1.Subject + "--is deleted"); 
         break; 
       } 
      } 
      //Loop 




       } 





     internal static bool RedirectionUrlValidationCallback(string redirectionUrl) 
     { 
      //The default for the validation callback is to reject the URL 
      bool result=false; 

      Uri redirectionUri=new Uri(redirectionUrl); 
      if(redirectionUri.Scheme=="https") 
      { 
       result=true; 
      } 
      return result; 
     } 



    } 
} 

回答

4

拉的通知要求發出拉入請求(通過GetEvents)當您想更新的通知方法之間的差異https://msdn.microsoft.com/en-us/library/office/dn458791%28v=exchg.150%29.aspx。您的代碼說明沒有循環,只有一個問題的GetItem請求,這是爲什麼呢按照您描述的方式行事,這是正常的。

我想,只要它在收件箱中進入觀看新的電子郵件,以便需要一些指導如何實現這一目標。

如果你想在服務器時通知您的電子郵件已經到達,那麼你需要要不是看在推或要求您輪詢更新服務器流通知拉通知。

我試圖流通知,但30個作爲連接斷開後薄荷糖

這是正常的,你只需要代碼重新連接和管理訂閱看到http://blogs.msdn.com/b/emeamsgdev/archive/2013/04/16/ews-streaming-notification-sample.aspx一個很好的示例。

Cheers Glen

+0

謝謝你的幫忙。 – user2897967 2015-01-27 14:54:20

+0

我檢查了您提供的鏈接中的示例代碼。我在流式通知應用程序中做了一些更改。基本上我重新連接它的工作連接,但關於訂閱我仍然不知道如何管理。因爲我想解析連接期間收到並連接的電子郵件。 – user2897967 2015-01-27 18:00:11

+0

要管理訂閱,我只是使用一個看門狗線程,您應該在使用流式通知時獲得不斷的心跳更新,所以如果您開始丟失更新,它可能表示該流已損壞。一般來說,您只需要重新連接訂閱或創建一個新的訂閱,如果它無效。對於斷開連接期間的任何丟失通知,這是使用Pull通知或SyncfolderItems派上用場的地方。 – 2015-01-28 03:06:43

相關問題