I using Inventor api programming using vb.net.Here is my code for opening a inventor application.
inventorApp = CreateObject("Inventor.Application")
inventorApp.Visible = True
Dim oDoc As Document
oDoc = inventorApp.Documents.Open("F:\inventor\Cube.ipt")
the code is working fine and open the document while debugging in visual studio and working fine .but I trying to host this web app in local IIS and try then the following error is showing.
anybody know what is the problem.