Windows Server 2012上的Office自动化(Interop)

时间:2013-01-20 15:01:57

标签: ms-office office-interop

我在Windows Server 2008 R2和Office 2007上成功使用Office自动化,以便将Office文档转换为PDF。 代码很简单:

public class WordConvert
{
    /// <summary>
    /// Converts a word file to PDF
    /// </summary>
    /// <param name="sourceFilePath">The path of the word file to convert</param>
    /// <param name="targetFilePath">The path of the PDF output file</param>
    public static void ConvertWord(string sourceFilePath, string targetFilePath)
    {
        object objTragetFileName = targetFilePath;
        Word.Application wordDocument = new Word.Application();
        try
        {
            OpenWord(sourceFilePath, wordDocument);
            SaveAsPDF(ref objTragetFileName, wordDocument);
        }
        finally
        {
            CloseWord(wordDocument);
        }
    }

    private static void OpenWord(object sourceFileName, Word.Application wordDocument)
    {
        wordDocument.Documents.Open(ref sourceFileName);
    }

    private static void SaveAsPDF(ref object targetFileName, Word.Application wordDocument)
    {
        object format = Word.WdSaveFormat.wdFormatPDF;
        wordDocument.ActiveDocument.SaveAs(ref targetFileName, ref format);
    }

    private static void CloseWord(Word.Application wordDocument)
    {
        if (wordDocument != null)
        {
            GC.Collect();
            GC.WaitForPendingFinalizers();

            // 2nd time to be safe
            GC.Collect();
            GC.WaitForPendingFinalizers();

            Word.Documents documents = wordDocument.Documents;
            documents.Close();
            Marshal.ReleaseComObject(documents);
            documents = null;


            Word.Application application = wordDocument.Application;
            application.Quit();
            Marshal.ReleaseComObject(application);
            application = null;
        }
    }
}

问题是此代码在Windows Server 2012上不起作用。 收到的错误是:

System.Runtime.InteropServices.COMException (0x800706BA): The RPC server is unavailable. (Exception from HRESULT: 0x800706BA)

以交互式用户(控制台应用程序)运行代码工作正常但从IIS Web应用程序或Windows服务运行时失败(即使使用“alow服务与桌面交互”)。 运行应用程序的用户具有足够的权限(管理员),并且代码可以在Office 2010中正常运行。

有什么想法吗?

3 个答案:

答案 0 :(得分:4)

我可能会因为这个答案而被投票,但我在一个企业环境中工作,我们有一个使用Office Automation的产品,这是非常有问题的。

我已经在这个领域做过研究, Microsoft本身 建议不要进行Office自动化。

以下内容直接来自Microsoft的MSDN知识库

  

Microsoft不建议或支持Office的服务器端自动化。

另外

  

Microsoft目前不建议也不支持从任何无人参与的非交互式客户端应用程序或组件(包括ASP,ASP.NET,DCOM和NT服务)自动化Microsoft Office应用程序,因为Office可能会出现不稳定Office在此环境中运行时的行为和/或死锁。

来源:http://support.microsoft.com/kb/257757

答案 1 :(得分:0)

找到的唯一解决方案是使调用Office API的进程以交互方式运行。 可以通过运行控制台应用程序(不是服务器解决方案最明智的想法)或创建一些后台服务(例如,Windows服务)并设置它的工作站(SetProcessWindowStation)来完成。

答案 2 :(得分:0)

如果服务器缺少SysWow64 文件夹,则会看到该错误消息的原因之一。这里有一个链接,可以帮助您更好地理解。

http://per.lausten.dk/blog/2011/04/excel-automation-on-windows-server-2008-x64.html