Hi,
I am using a windows service to access the indesign server. The instance is created like below.
Dim oType As Type = Type.GetTypeFromProgID("InDesignServer.Application")
If oType IsNot Nothing Then
Return Activator.CreateInstance(oType)
End If
If already an instance is created by some other application, then my service is not able to create an instance. I get the following error from the COM
"Retrieving the COM class factory for component with CLSID {96D10A00-63E3-423E-A223-DFC4BEA21206} failed due to the following error: 80080005."
In some article i read that instance can be created by different port numbers and different configuration.
Is there anyway in VB.net to create an instance like that and will it solve the multiple instance problem ?
Regards,
Karthik B