我在C#中编写自定义OPC客户端应用程序,可以从RSLinx服务器读取数据。
首先,我无法远程连接到RSLINX Opc服务器。异常访问被拒绝不断发生。
然后我改变了MyComputer的DCOM设置 - > Com Security - >访问权限以及启动和激活权限,为用户'所有人
启用了所有功能这允许我连接,但是当它涉及到读取服务器时,我得到以下异常 -
[System.Runtime.InteropServices.COMException] {"Exception from HRESULT: 0x80040202"} System.Runtime.InteropServices.COMException
我尽可能多地浏览网页,他们都归结为Dcom相关问题。我只是用Dcom设置尝试了一切。我已确保为MyComputer和RSLinx服务器启用了设置。
我正在使用来自OPCFoundation的两个.dll文件 - opcNetApi.dll,opcNetApi.Com.dll
这是我的代码,(可能很方便)
private void readplc()
{
Opc.URL url = new Opc.URL("opcda://48.5.0.05/RSLinx OPC Server");
Opc.Da.Server server = null;
OpcCom.Factory fact = new OpcCom.Factory();
server = new Opc.Da.Server(fact, null);
try
{
server.Connect(url, new Opc.ConnectData(new System.Net.NetworkCredential()));
}
catch (Exception exy)
{
MessageBox.Show(exy.Message);
}
// Create a group
Opc.Da.Subscription group;
Opc.Da.SubscriptionState groupState = new Opc.Da.SubscriptionState();
groupState.Name = "Group";
groupState.Active = true;
group = (Opc.Da.Subscription)server.CreateSubscription(groupState);
// add items to the group.
Opc.Da.Item[] items = new Opc.Da.Item[6];
items[0] = new Opc.Da.Item();
items[0].ItemName = "[ALARM]F20:9";
items[1] = new Opc.Da.Item();
items[1].ItemName = "[ALARM]F22:30";
items[2] = new Opc.Da.Item();
items[2].ItemName = "[ALARM]F22:6";
items[3] = new Opc.Da.Item();
items[3].ItemName = "[ALARM]F18:8";
items[4] = new Opc.Da.Item();
items[4].ItemName = "[ALARM]F22:32";
items[5] = new Opc.Da.Item();
items[5].ItemName = "[ALARM]F22:5";
items = group.AddItems(items);
try
{
group.DataChanged += new Opc.Da.DataChangedEventHandler(OnTransactionCompleted); // COM EXCEPTION THROWN HERE
Console.ReadLine();
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
Console.ReadKey();
}
}
private void OnTransactionCompleted(object group, object hReq, Opc.Da.ItemValueResult[] items)
{
for (int i = 0; i < items.GetLength(0); i++)
{
}
}
我确信代码是有效的,因为我尝试构建连接为PC的本地主机的应用程序,我正在尝试远程连接,它可以愉快地读取数据。
希望有人知道发生了什么事,我在过去的4个工作日内花了12个多小时试图解决这个问题!
答案 0 :(得分:0)
这对我有用:
_opcServer = new Server(_comFactory, null) { Url = new Opc.URL("opcda://localhost/FactoryTalk Gateway") };
_opcServer.Connect();