I'm running this code to connect to a plc.

   System.Guid guid=new Guid("75d00bbb-dda5-11d1-b944-9e614d000000"); 
   System.Type t=Type.GetTypeFromCLSID(guid,node,true); 
   object COMobject=System.Activator.CreateInstance(t);
   opcServer = (IOPCServer) COMobject;

using the opc protocol as previously mentioned. I have little to no experience with this, so little that I cant even identify if this error

Retrieving the COM class factory for remote component with CLSID {75D00BBB-DDA5-11D1-B944-9E614D000000} from machine 192.168.100.10 failed due to the following error: 800706ba 192.168.100.10.

is caused by interop or the plc...

link|improve this question

78% accept rate
According Dr. Google this is "RPC server not available". – Patrick Aug 23 '10 at 10:23
feedback

1 Answer

up vote 0 down vote accepted

Apparently it was the wrong guid.. the right guid for a Phoenix Contact AX OPC-Server is

{aa6c2a7c-f097-4be3-9153-f44ce2a3d916}

if anyone else needs it.

link|improve this answer
feedback

protected by Will Aug 26 '10 at 13:22

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.