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 OPCFoundation?

link|improve this question

70% accept rate
You could start my writing a simple app that accepts more answers... – RQDQ Feb 22 '11 at 13:10
Well thanks RQDQ. I'm sure you know what you mean... – paul Feb 22 '11 at 13:40
feedback

4 Answers

There are samples with documentation and source code on Siemens' website which can be useful for you. Take a look at them:

link|improve this answer
feedback

As a more general OPC solution, it may be worth looking at http://www.codeproject.com/KB/COM/opcdotnet.aspx - its a free OPC DLL complete with source code. While it is quite basic, the code is there, so you could easily update it if required, but from the sounds of your requirements it may be ideal.

link|improve this answer
Thanks for the link, Gavin. I was a bit surprised to see the date though - 2001! – paul Mar 1 '11 at 7:37
it may be old, but it still works! Some of the code in the DLL could probably be re-written to take advantage of newer features available in .NET, but if it aint broke... – Gavin Coates Mar 1 '11 at 9:52
feedback

You would probably check www.quickopc.com which deliver a perfectly wrapper between .NET and OPC Servers. There are also a lot of information for OPC Servers by www.opcfoundation.com, which you already find out yourself.

If you don't use libraries such as QuickOPC you have to deal with creating own classes to translate binary data to readable .NET codes (which have to be a task itself). This is fully doable, the major drawback is that every each device/manufacturer have thier own protocol, which means you can end up with a single wrapper per each unique device.

link|improve this answer
feedback

Another possibility would be using Siemens SAPI-S7 interface (which is the native Siemens protocol and which is used by OPC also). SoftwareOption GmbH has a S7 .NET programming interface with C# sample. You can download a C# demo program inclusive source code. See http://www.softwareoption.de/siemens-produkte_e.htm.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.