使用 C# 通过 OPC 协议对 PLC 进行编程
我正在运行此代码来连接到 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;
使用前面提到的 opc 协议。我对此几乎没有经验,以至于我什至无法确定这个错误是否
由于以下错误,从计算机 192.168.100.10 检索 CLSID 为 {75D00BBB-DDA5-11D1-B944-9E614D000000} 的远程组件的 COM 类工厂失败:800706ba 192.168.100.10。
是由互操作或PLC引起的...
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...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
显然这是错误的指导.. Phoenix Contact AX OPC-Server 的正确指导是
如果其他人需要它。
Apparently it was the wrong guid.. the right guid for a Phoenix Contact AX OPC-Server is
if anyone else needs it.