C#连接远程OPC在AddGroups出错!!!!!求助!!!
用C# 连接远程OPC,在 获取Groups时候报错,连接本地OPC时候正常,用的是OPC自动化接口,错误信息说,OPCAutomation.OPCServerClass不能转换为OPCAutomation.IOPCGroups
public OPCAutomation.OPCServer objOPCServer;
public OPCAutomation.OPCGroup objOPCGroup;
public OPCAutomation.OPCGroups objOPCGroups;
public OPCAutomation.OPCItem objOPCItem;
/*.....
....*/
this.objOPCServer = new OPCAutomation.OPCServer();
this.objOPCServer.Connect(("OPC.SimaticNET"), "10.2.114.2");
this.objOPCGroups = (this.objOPCServer.OPCGroups);//报错!!!
objOPCGroup = this.objOPCServer.OPCGroups.Add("LFSHOPC");
this.objOPCItem = objOPCGroup.OPCItems.AddItem("S7:[LFSHOPC]MREAL220", 1);
、、、、、、、、、、、、、
另外,关于C# 使用定制接口,连接 远程服务器该怎么做啊 。我装得Simatic Net 2006,带的文档还有例程都是本地服务器连接那种。
请各位大大赐教!!谢谢! --------------------编程问答-------------------- 我也遇到的是类似问题,该怎么解决啊? --------------------编程问答-------------------- VB6是没问题的,但VB2008就不行,真不知道是为什么 --------------------编程问答-------------------- 遇到了同样的问题。
补充:.NET技术 , C#