我使用 vb.net 使用 Inventor api 编程。这是我打开发明者应用程序的代码。
inventorApp = CreateObject("Inventor.Application")
inventorApp.Visible = True
Dim oDoc As Document
oDoc = inventorApp.Documents.Open("F:\inventor\Cube.ipt")
代码工作正常,在 Visual Studio 中调试时打开文档,工作正常。但我试图在本地 IIS 中托管这个 Web 应用程序,然后尝试显示以下错误。
任何人都知道是什么问题。