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?
feedback
|
|
There are samples with documentation and source code on Siemens' website which can be useful for you. Take a look at them: | |||
|
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. | |||||
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. | |||
|
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. | |||
|
feedback
|