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
396 views

How to get started developing an OPC Xi (.NET 3.0 WCF Services) Server (Service)

I would like to implement an OPC Server using the latest standard version: OPC Xi. My purpose is not providing a service for real usage, I just would like to develop a finctional server returning data ...
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 ...
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
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
2k views

OPC Client - how to read from Remote OPC Server

I used OPCDotNetLib but can't read data from remote OPC Server there . I can connect , like Type typeofOPCserver = Type.GetTypeFromProgID(clsidOPCserver, ip); But looking the methods DataChanged ...
0
votes
1answer
468 views

opc .net api list of servers

I'm writing opc client on c#. I want to get list of all opc servers on machine, how can i do it? I'm using opc .net API from opc foundation.