What is required server-side to run Office Interops?

后端 未结 2 1678
孤城傲影
孤城傲影 2021-01-28 09:36

I am currently working on a MVC4 website and would like to add interoperability with MS Office for the following:

Communicator 2007 (Presence status\'s only). Outlook (T

相关标签:
2条回答
  • 2021-01-28 09:39

    Unfortunately, the interops themselves don't actually implement any of the office functionality, you still need the required Office applications installed.

    I'd look at using SMTP for sending emails, and NPOI for your Excel needs. This will avoid the need for Outlook and Excel on the server. I'm not sure about communicator.

    0 讨论(0)
  • 2021-01-28 09:58

    There are many third-party libraries that will create and read Excel files. GemBox and EEPlus are two that come to mind.

    Redemption is an API for Exchange/Outlook that doesn't require Office itself be installed (you only have to install the MAPI COM dlls). It's COM though, so be prepared for COM interop for this one.

    As for Communicator... ???.

    0 讨论(0)
提交回复
热议问题