使用 Microsoft Exchange Services 2007 的 Cocoa Mac 应用程序
任何人都可以提供有关在使用 Cocoa 的 Mac 应用程序中使用 Exchange Services 2007 的最佳方式的建议吗?我需要访问收件箱邮件消息及其标头来解析我需要的信息。
我已经在 .NET 应用程序中编写了一个实现,但是 .NET 当然提供了一些很好的库来处理所有复杂类型等。
提前致谢。
Can anyone provide a suggestion on the best way to use Exchange Services 2007 in a Mac application using Cocoa? I need to access Inbox mail messages and their headers to parse the information I need.
I have written an implementation in my .NET application, but of course .NET provides some nice libraries to handle all the complex types and such.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
据我所知,Cocoa 并没有真正可用的任何像样的 SOAP 库。如果您的服务器启用了 IMAP(例如使用 MailCore),您可以尝试通过 IMAP 访问 Exchange,或者嵌入另一种具有更好 SOAP 支持的语言(例如 Java、Python)。 这里是使用 Java/JAXWS 与 EWS 交互的示例。
Microsoft 有一个 EWS Java API,但它的质量显然很差,所以他们撤下了它。但是,如果您想尝试一下,该页面上有一个下载链接,而且它是开源的,因此您可以修复遇到的任何错误。
Cocoa doesn't really have any decent SOAP libraries available that I'm aware of. You could either try to access Exchange via IMAP if it's enabled for your server (e.g. with MailCore) or embed another language with better SOAP support (e.g. Java, Python). Here's an example of using Java/JAXWS to talk to EWS.
Microsoft has an EWS Java API but it was apparently so poor-quality that they pulled it. However, there's a link to the download on that page if you want to try it anyway, and it's open source so you could potentially fix any bugs you ran into.
医生,
我在寻找同样的东西时遇到了这个 EWS OSX Widget。很高兴知道这是否适合您。
http://ewsmacwidget.codeplex.com/releases/view/16559
Doc,
I came across this EWS OSX Widget in my search for the same thing. It would be good to know if this works for you.
http://ewsmacwidget.codeplex.com/releases/view/16559