是否可以在Silverlight 4中使用Automation for Outlook 2003?或者在Silverlight应用程序中使用Outlook 2003 MAPI有不同的方法吗?
我正在使用Silverlight 4,我正在尝试以这种方式与Outlook互动:
dynamic outlook = AutomationFactory.GetObject("Outlook.Application");
对于Outlook 2007/2010,一切正常。
但是当我尝试从Outlook 2003使用任何动态实例字段(例如outlook.Session)时,我得到NotSupportedException。这只是Outlook 2003的问题。
我找到了文章http://msdn.microsoft.com/en-us/library/aa159619%28office.11%29.aspx,但它对Silverlight应用程序没用(不可能直接引用办公室程序集或COM)。
Type.GetTypeFromProgID
也没用,Silverlight不支持它。
答案 0 :(得分:1)
我终于找到了答案。 可以使用标准Outlook 2003对象模型执行大多数操作。所有这些行动都在this Microsoft article中描述。 文章中的示例和Silverlight代码之间的主要区别 - 我们不能引用Interop Outlook程序集,因此我们需要使用动态。 因此,从联系人列表或所有收件箱电子邮件中获取所有联系人非常容易(参见文章)。最困难的部分是获取创建的用户帐户的列表。 Outlook 2003对象模型提供了仅获取一个(默认)帐户的可能性:
dynamic outlook = AutomationFactory.CreateObject("Outlook.Application");
var ns = outlook.GetNamespace("MAPI");
var defaultAccount = ns.CurrentUser;
但它仍然不适合我。这很令人伤心,但Outlook 2003对象模型中没有Session.Accounts属性。所以我发现只有一种方法可以获得账户清单。
public class Ol11ImportStrategy
{
const string registryPath = @"HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\Windows Messaging Subsystem\Profiles\Outlook\9375CFF0413111d3B88A00104B2A6676\{0}\{1}";
const string constAccountName = "Account Name";
const string constEmail = "Email";
const string constSMTPServer = "SMTP Server";
const string constName = "Display Name";
const string constIMAPServer = "IMAP Server";
const string constPOP3Server = "POP3 Server";
const string constValueClsid = "clsid";
const string constContentsAccountClsid_POP3 = "{ED475411-B0D6-11D2-8C3B-00104B2A6676}";
const string constContentsAccountClsid_IMAP = "{ED475412-B0D6-11D2-8C3B-00104B2A6676}";
public IEnumerable<AccountEntity> GetAccountsInFriendlyFormat()
{
List<AccountEntity> accounts = new List<AccountEntity>();
using (dynamic WShell = AutomationFactory.CreateObject("WScript.Shell"))
{
for (int i = 1; i < 1000; i++)
{
try
{
string classId = WShell.RegRead(String.Format(registryPath, i.ToString().PadLeft(8, '0'), constValueClsid));
if (StringComparer.InvariantCultureIgnoreCase.Compare(classId, constContentsAccountClsid_POP3) == 0)
{
accounts.Add(new AccountEntity
{
FriendlyName = GetRegisterElementValue(WShell, i.ToString(), constAccountName),
IncomingMailServer = GetRegisterElementValue(WShell, i.ToString(), constPOP3Server),
Email = GetRegisterElementValue(WShell, i.ToString(), constEmail),
UserName = GetRegisterElementValue(WShell, i.ToString(), constName)
});
continue;
}
if (StringComparer.InvariantCultureIgnoreCase.Compare(classId, constContentsAccountClsid_IMAP) == 0)
{
accounts.Add(new AccountEntity
{
FriendlyName = GetRegisterElementValue(WShell, i.ToString(), constAccountName),
IncomingMailServer = GetRegisterElementValue(WShell, i.ToString(), constIMAPServer),
Email = GetRegisterElementValue(WShell, i.ToString(), constEmail),
UserName = GetRegisterElementValue(WShell, i.ToString(), constName)
});
continue;
}
//it isn't POP3 either IMAP
}
catch (FileNotFoundException e)
{
//classId isn't found - we can break iterations because we already iterate through all elements
break;
}
catch (Exception e)
{
MessageBox.Show("Unknown exception");
}
}
}
return accounts;
}
private string GetRegisterElementValue(object scriptShell, string elementNumber, string elementName)
{
dynamic shell = scriptShell;
string currentElement = elementNumber.PadLeft(8, '0');
object[] currentElementData = shell.RegRead(String.Format(registryPath, currentElement, elementName));
byte[] dataBytes = currentElementData.Cast<byte>().ToArray();
return Encoding.Unicode.GetString(dataBytes, 0, dataBytes.Count()).Trim('\0');
}
}
public class AccountEntity
{
public string FriendlyName { get; set; }
public string UserName { get; set; }
public string Email { get; set; }
public string AccountType { get; set; }
public string IncomingMailServer { get; set; }
}
主要技巧是使用AutomationFactory.CreateObject(“WScript.Shell”)。现在可以使用RegRead方法直接从注册表获取帐户信息。顺便说一下,即使对于Outlook 2007/2010,此代码也能正常运行。至于我,如果应该以静默方式收集帐户(在收集数据之前无需启动Outlook),这是最可取的方式。