Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要使用 C# 发送一封简单的 Lotus Notes 电子邮件。我已经尝试过使用这里的代码,但它不起作用。我收到此错误:
异常未知软件异常 (0xe0434f4d) 发生在位置 0x7c812afb 的应用程序中
有任何想法吗?
在项目的构建选项下,确保将平台目标设置为“x86”(不是“任何 CPU”,也不是“x64”——Domino 库仅与“x86”兼容)。
如果您必须以 x64 为目标,那么您需要将所有 Domino 代码隔离到一个单独的 x86 项目中,然后从您的 x64 项目中调用该代码。
确保您对所引用的 COM 文件具有正确的权限。也许授予每个人读取权限只是为了排除这种情况。