我在哪里可以学习编写用于 Exchange 集成的原始 MAPI 命令?
我在尝试在 VB .Net 应用程序中使用 Outlook 和 Redemption 时遇到了一些麻烦。网络上是否有指南描述 MAPI 协议以及如何使用它与 Exchange 服务器的连接进行交互?
我知道尝试这种方法存在造成更多头痛的严重风险,但我仍然很感兴趣。
TIA, 戴夫 --Trindaz on Fedang #MAPI-guide
I've had a few headaches trying to use Outlook and Redemption in my VB .Net application. Is there a guide anywhere on the net that describes the MAPI protocol and how I might go about using it to interact with a connection to Exchange server?
I know that there's a serious risk of creating more headaches by trying this approach, but I'm interested none the less.
TIA,
Dave
--Trindaz on Fedang #MAPI-guide
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不要使用 .NET 中的 MAPI。由于 GC 和 MAPI 内部内存管理之间存在一些冲突,Microsoft 不支持它。
在客户端,您可以使用 Outlook 对象模型 Redemption。在服务器端,对于 Exchange 2007/2010 使用 Exchange WebServices,对于 Exchange 2000/2003 使用 WebDAV 或 CdoEx。
Don't use MAPI from .NET. It's not supported by Microsoft due to some collisions between the GC and MAPI internal memory management.
On the clientside, you can use the Outlook Object model, Redemption. On the server side, use Exchange WebServices for Exchange 2007/2010 and WebDAV or CdoEx for Exchange 2000/2003.