我有一个Web服务,它接收一个word文件添加一个表并保存为PDF。如果在同一服务器上的控制台应用程序上运行,这可以正常工作但是,当我从Web服务运行时,它一直运行它继续加载word文档,永远不会回来,CPU使用率突然增加到100%。下面是它挂在Document.open()行
的代码 Dim wordDoc As Document
Dim WrdApp As New Application
WrdApp.Visible = False
'Load document 'below is the line it never passes in the webservice
wordDoc = WrdApp.Documents.Open(strWordFilePath)
我已尝试过所有可能性,更改COM对象等;我想我错过了一些愚蠢但却无法弄清楚它是什么的东西。