使用C#程序读取Outlook日历约会时出错

时间:2014-09-26 20:32:15

标签: c# outlook outlook-2010

我在尝试阅读Outlook日历信息的C#windows应用程序时遇到错误 这之前有用,但我认为在服务器端发生了与安全相关的更改,我可以看到,也不会被告知。

我正在使用Outlook 2010(v14.0.3129.5000)

我得到的错误是:

  

System.Runtime.InteropServices.COMException(0x80004005):未指定错误(来自HRESULT的异常:0x80004005(E_FAIL))

尝试阅读约会正文时发生错误:

if (oAppt.Body != null)

我可以准备其他没有问题的日历属性

Microsoft.Office.Interop.Outlook.RecurrencePattern recurrencePattern;
Microsoft.Office.Interop.Outlook.NameSpace oNS;
Microsoft.Office.Interop.Outlook.MAPIFolder oCalendar;
Microsoft.Office.Interop.Outlook.Items oItems;
Microsoft.Office.Interop.Outlook.AppointmentItem oAppt;

Microsoft.Office.Interop.Outlook.Application _OutlookApplication;


try
{
  _OutlookApplication = new Microsoft.Office.Interop.Outlook.Application();
  oNS = _OutlookApplication.GetNamespace("MAPI");

  // Get the Calendar folder.
  oCalendar = oNS.GetDefaultFolder(Microsoft.Office.Interop.Outlook.OlDefaultFolders.olFolderCalendar);

  oCalendar.Items.IncludeRecurrences = true;


  // Get the Items (Appointments) collection from the Calendar folder.
  oItems = oCalendar.Items;

  for (Int32 x = 1; x <= oItems.Count; x++)
  {
     //Need to change how we are getting the appointment
     //Apparently Outlook will return non-appointments in the calendar feed
     try
     {
        oAppt = (Microsoft.Office.Interop.Outlook.AppointmentItem)oItems[x];
        Console.WriteLine(oAppt.Subject);
      }
      catch (Exception)
      {
         continue;
      }

      if (oAppt.Body != null)
         Console.WriteLine("      Calendar Body:" + oAppt.Body.ToString());

     }
   }
   catch (Exception ex)
   {
       Console.WriteLine(ex.Message.ToString());
   }
 }

挖掘堆栈跟踪,我看到以下错误

 at Microsoft.Office.Interop.Outlook._AppointmentItem.get_Body()

任何人都可以帮忙解决为什么会出现这种错误,如果有任何解决方法我可以执行吗?

1 个答案:

答案 0 :(得分:0)

我能够与我们的某个管理员联系,并发现此特定问题是由推送到我们计算机的组策略引起的。

这个错误并没有指向你那个方向,但这就是问题