我正在創建一個應用程序,它將在後臺作爲窗口服務工作。此應用程序將解析收件箱中的新電子郵件並保存附件。我嘗試了流媒體通知,但隨着連接斷開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;
}
}
}
謝謝你的幫忙。 – user2897967 2015-01-27 14:54:20
我檢查了您提供的鏈接中的示例代碼。我在流式通知應用程序中做了一些更改。基本上我重新連接它的工作連接,但關於訂閱我仍然不知道如何管理。因爲我想解析連接期間收到並連接的電子郵件。 – user2897967 2015-01-27 18:00:11
要管理訂閱,我只是使用一個看門狗線程,您應該在使用流式通知時獲得不斷的心跳更新,所以如果您開始丟失更新,它可能表示該流已損壞。一般來說,您只需要重新連接訂閱或創建一個新的訂閱,如果它無效。對於斷開連接期間的任何丟失通知,這是使用Pull通知或SyncfolderItems派上用場的地方。 – 2015-01-28 03:06:43