Where is a good place to start with making an application in .NET that communicates through OPC? [closed]

StackOverflow https://stackoverflow.com/questions/66776

Question

Where is a good place to start with making an application in .NET that communicates through OPC?

Was it helpful?

Solution

You can find a good article and a library to start with here: http://www.codeproject.com/KB/COM/opcdotnet.aspx

OTHER TIPS

The Code Project article is from the early days of .NET and may not be the best option today.

Alternatives include OPC Foundation's own .NET API (requires OPC Foundation membership) or several commercial products. OPCconnect.com lists a number of these.

Be careful. I haven't used an OPC API yet that properly conforms to any sort of calling conventions, particularily in the area of freeing memory (COM, as documented, or otherwise). Expect a month of debugging memory leaks.

SoftwareToolbox's OPCData.NET (http://www.opcdata.net/) claims to be a 100% Managed code solution for OPC Client. SoftwareToolbox also has some other OPC libraries to help with binding OPC data to forms and web interfaces.

If buying a comercial toolkit is an option I've used the Northern Dynamics server toolkit and it worked fine. A toolkit will take away a lot of the issues mentioned in the other questions (or at least you should get support if there's a problem).

They've wrapped the OPC protocol up nicely so it makes it easy to use. See one of my questions here for a type-safe Variant wrapper that I wrote to help with this.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top