我正在创建一个应用程序,它将作为后台的窗口服务。此应用程序将解析收件箱中的新电子邮件并保存附件。我尝试了流媒体通知,但是当连接断开30分钟后,我想使用拉动通知。下面是我调试的代码但我在控制台上看不到任何输出。只要我运行应用程序,它就会关闭控制台窗口,因此不知道它是否正常工作。我希望在收到收件箱后立即收看新邮件,因此需要一些指导如何实现。
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;
}
}
}
答案 0 :(得分:5)
拉动通知要求您在需要更新时发出拉取请求(通过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以获取良好的示例。
干杯 格伦