我正在尝试编写一个可以监控几个邮箱的应用程序,当发现邮件时会从每个项目中获取一些信息,然后一旦我有一个项目列表,我就可以采取相应的操作。
但无论我如何处理它,我都会使用Exchange强制执行255 RPC连接限制。
我完全不知道导致错误的原因 - 据我所知,我已经将所有内容都绑定在一个方法中并且正在调用Marshal.ReleaseComObject ....我甚至接受了性能打击打开和关闭Outlook应用程序句柄本身。
任何建议都会受到大力赞赏......(我似乎无法弄清楚为什么我的代码在预览中看起来不对,所以为了安全起见我也把它放在了pastebin上...... http://pastebin.com/m637eb95)
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Microsoft.Office.Interop.Outlook;
using Microsoft.Office.Interop;
using System.Runtime.InteropServices;
namespace HandleMailingResponses
{
class OutlookFolderTableScraper
{
public List<OutlookItem> GetItemsFromFolder(string folderName)
{
List<OutlookItem> returnList = new List<OutlookItem>();
Application outlookHandle = new Application();
NameSpace outlookNamespace = outlookHandle.GetNamespace("MAPI");
Folders rootOutlookFolders = outlookNamespace.Folders;
outlookNamespace.Logon(null, null, null, true);
Folder requestedRoot = enumerateFolders(rootOutlookFolders, folderName);
Folders theseFolders = requestedRoot.Folders;
Folder thisInbox = enumerateFolders(theseFolders, "Inbox");
Marshal.ReleaseComObject(requestedRoot);
requestedRoot = null;
Marshal.ReleaseComObject(rootOutlookFolders);
rootOutlookFolders = null;
string storeID = thisInbox.StoreID;
Table thisTable = thisInbox.GetTable("",OlTableContents.olUserItems);
//By default each item has the columns EntryID, Subject, CreationTime, LastModificationTime and MessageClass
//we can add any of the other properties the MailItem or ReportItem object would have....
Columns theseColumns = thisTable.Columns;
theseColumns.Add("SenderEmailAddress");
Marshal.ReleaseComObject(thisInbox);
thisInbox = null;
outlookNamespace.Logoff();
Marshal.ReleaseComObject(outlookNamespace);
outlookNamespace = null;
outlookHandle.Quit();
Marshal.ReleaseComObject(outlookHandle);
outlookHandle = null;
int count = 0;
while (!thisTable.EndOfTable)
{
Row thisRow = thisTable.GetNextRow();
object[] theseValues = (object[]) thisRow.GetValues();
Console.WriteLine("processed {0}",count++);
//get the body from this item
string messageClass = (string)theseValues[4];
string entryID = (string)theseValues[0];
string body = getItemBody(entryID,storeID, messageClass);
returnList.Add(new OutlookItem((string)theseValues[5], (string)theseValues[1], body, messageClass, entryID));
}
return returnList;
}
private string getItemBody(string entryID, string storeID, string messageClass)
{
Application outlookHandle = new Application();
NameSpace outlookNamespace = outlookHandle.GetNamespace("MAPI");
outlookNamespace.Logon(null, null, null, true);
string body;
if (messageClass.ToLower().StartsWith("report"))
{
ReportItem thisItem = (ReportItem)outlookNamespace.GetItemFromID(entryID, storeID);
body = thisItem.Body;
thisItem.Close(OlInspectorClose.olDiscard);
//release this com reference
int releaseResult;
do
{
releaseResult = Marshal.ReleaseComObject(thisItem);
} while (releaseResult != 0);
}
else
{
MailItem thisItem = (MailItem)outlookNamespace.GetItemFromID(entryID, storeID);
body = thisItem.Body;
thisItem.Close(OlInspectorClose.olDiscard);
//release this com reference
int releaseResult;
do
{
releaseResult = Marshal.ReleaseComObject(thisItem);
} while (releaseResult != 0);
}
outlookNamespace.Logoff();
outlookNamespace = null;
outlookHandle.Quit();
outlookHandle = null;
GC.Collect();
GC.WaitForPendingFinalizers();
return body;
}
/// <summary>
/// Iterates through an Outlook.Folders object searching for a folder with the given name
/// </summary>
/// <param name="rootFolder">An Outlook.Folder object</param>
/// <param name="targetFolder"></param>
/// <returns></returns>
private Folder enumerateFolders(Folders rootFolders, string targetFolder)
{
Folder returnFolder = null;
System.Collections.IEnumerator thisEnumerator = rootFolders.GetEnumerator();
while (thisEnumerator.MoveNext())
{
Folder f = (Folder)thisEnumerator.Current;
string name = f.Name;
if (targetFolder.ToLower().Equals(name.ToLower()))
{
returnFolder = f;
break;
}
}
ICustomAdapter adapter = (ICustomAdapter)thisEnumerator;
Marshal.ReleaseComObject(adapter.GetUnderlyingObject());
adapter = null;
return returnFolder;
}
}
}
答案 0 :(得分:1)
我和你的要求差不多。以下示例应用程序是非常好的参考:
关于“Exchange强制执行255 RPC连接限制”,请检查以下链接:
http://www.dimastr.com/Redemption/faq.htm
http://www.outlookcode.com/threads.aspx?forumid=2&messageid=26321
答案 1 :(得分:0)
每次调用函数时都不要创建新的Application对象,将其保留为类的私有成员变量,直到不再需要它为止。这样你只需要在构造函数中调用Namespace.Logon。