我正在编写一个从OPC服务器读取数据的代码。
public void setOPC()
{
int count = 1;
try
{
opcServer = new OPCServer();
opcServer.Connect("OPCTechs.SiemensNet30DA", "");
opcServer.OPCGroups.DefaultGroupIsActive = true;
opcServer.OPCGroups.DefaultGroupDeadband = 0f;
opcServer.OPCGroups.DefaultGroupUpdateRate = 10;
opcGroup = opcServer.OPCGroups.Add("MP");
opcGroup.IsSubscribed = false;
opcGroup.OPCItems.DefaultIsActive = false;
int[] h = new int[844];
for (int i = 69; i >= 60; i--, count++)
{
h[count] = opcGroup.OPCItems.AddItem("HH1001.B" + i, count).ServerHandle;
}
for (int i = 69; i >= 60; i--, count++)
{
h[count] = opcGroup.OPCItems.AddItem("GF1001OP190.B" + i, count).ServerHandle;
}
}
在上面的代码中,当它执行第二个循环&到达行
h[count] = opcGroup.OPCItems.AddItem("GF1001OP190.B" + i, count).ServerHandle;
它给出错误
Exception from HRESULT: 0x0040007
如果它成功执行了第一个循环AddItem
,为什么它会给第二个循环问题?
答案 0 :(得分:1)
opcGroup.OPCItems.AddItem("GF1001OP190.B" + i, count).ServerHandle;
它将在OPCItems上获取ServerHandle,但不在特定项目上获取。但是你应该在特定项目上获得ServerHandle,而不是整个项目。
尝试
opcGroup.OPCItems.AddItem("GF1001OP190.B" + i, count);
h[count] = opcGroup.OPCItems[count].ServerHandle;