Tagged Questions

4
votes
3answers
2k views

OPC sample application for C#

Does anyone know a C# OPC client sample application? I'm looking for a good opensource one to learn about the protocol. I would prefer it if it uses OPC foundation .net core apis.
3
votes
1answer
483 views

OPC server access remotely using OPCDA.NET tools

I am developing OPC Client in windows C#. I have developed the code and reading OPC Items on Sampling as well as event based (OnDataChange). When I am working with local machine then my code works ...
2
votes
1answer
160 views

COM object used for long time

how to used the COM object for the lifetime in C# I will be created the OPC server object, it will be used into the threading.timer this timer will be invoked at every seconds after the some time ...
1
vote
4answers
496 views

What do I need to create simple C# app which uses OPC?

I need to write a simple c# app which communicates with a Siemens S7 via OPC. It just needs to query single inputs and set single outputs. What do I need to do this? Do I need stuff like Xi from ...
1
vote
1answer
589 views

.net C# opc-client

I want to write opc client for server. And dont want use big libraries. can i do it witn .net libs? smth like adding reference to opcautomation? but i cant find it in vs2010. thx!
1
vote
1answer
618 views

Programming against a PLC via OPC protocol with C#

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 ...
1
vote
2answers
1k views

Looking for OPC DA client library

I'm looking for freeware library to connect to OPC DA 2.x server. So far, everything I found has commercial licensing, which is not an option for this project.
1
vote
1answer
275 views

OpenXml File Format Design and Best Practices

Folks, We have been using OpenXml APIs found in System.IO.Packaging for creating a package file that contains some Xml/Binary files, hence the package is some how structured as below: Package/ ...
0
votes
1answer
34 views

c# OPC Automation gives 80040154

I am a .Net developer. New to OPC. When I tried some samples of OPC Client all of them give this error. It seems the DLL is not registered it seems. But I don't know how and where to register this. ...
0
votes
1answer
30 views

Adding an OPC UA Server to .NET application

I have a C# application that communicates with a process instrument over ethernet. I want to add an OPC UA server to my application so that any SCADA system with a built in OPC client can connect and ...
0
votes
1answer
125 views

Serialization issue with OPC XML DA Server: The type <ArrayType> may not be used in this context

I'm trying to build a demonstrative OPC XML DA Server using C#. Developement is underway, but i am stuck on a serialization issue concerning arrays. Apparently, when I try to set ItemProperty.Value ...
0
votes
3answers
855 views

C# opc-client .net api

I'm writing opc client, using .NET API from opc foundation. In samples I only see, where item's names are hardcoded like: items[0] = new Opc.Da.Item(); items[0].ItemName = "blahblahblah"; What I ...
0
votes
1answer
196 views

WinPac-8000 OPC-server network access

I am to build an automation solution based on WinPac-8000 controller (http://www.icpdas.com/products/PAC/winpac/introduction.htm). I split this project into 2 programs: 1st is running on the ...
0
votes
1answer
315 views

How to make a type safe wrapper around Variant values

I'm working with a OPC Server control that stores data tags as variant types, described by System.Runtime.InteropServices.VarEnum. These types include the following, VT_BSTR (string), VT_I2 (short) ...