当我的 Web 服务尝试通过我的 .net Web 服务实用地打开 MS Word 文档时,我收到了下面提到的错误。当我通过 Visual Studio 运行 Web 服务时,它工作正常,但是当我在 IIS 7 上部署 Web 服务时,出现错误
Retrieving the COM class factory for component with CLSID
{000209FF-0000-0000C000-000000000046} failed due to the following error: 80070005
Access is Denied
在下一行。
Microsoft.Office.Interop.Word.Application oWordApp = new Microsoft.Office.Interop. Word.Application();
Microsoft.Office.Interop.Word.Document oWordDoc = new Microsoft.Office.Interop.Word.Document();
我已经在服务器端编写了这段代码。它必须打开word文档模板并查找和替换一些值并另存为不同的名称
我使用 64 位系统和 Office 2007。任何 1 都可以帮助我解决问题。