Trying to create COM-object on server.
code is:
var myGuid = new Guid("530A1815-820C-11D3-BBB7-008048DE406A");
var myType = Type.GetTypeFromCLSID(myGuid, some_ip, true);
ITInfoServer infsrv = (ITInfoServer)Activator.CreateInstance(myType);
// infsrv.callSomeMethod (....);
getting the error:
Creating an instance of the COM component with CLSID
{530A1815-820C-11D3-BBB7-008048DE406A} from the IClassFactory failed
due to the following error: 80070776.
It seems like network problem that preventing from server to use the COM objects,
Can you try adding the server to your hosts file?
http://www.yusufozturk.info/windows-server/wmi-error-80070776-the-object-exporter-specified-was-not-found.html
http://www.awesomes.net/?p=28