OPC UA 开源库编译方法及通过OPC UA连接西门S7-1200 PLC通信并进行数据交换[一]

前言   

        在现代工业自动化领域,OPC UA(开放性生产控制和统一架构)是一种广泛应用的通信协议。本文将以通俗易懂的方式解释OPC UA的含义和作用,帮助读者更好地理解这一概念。

一、OPC UA的定义

        OPC UA全称为“开放性生产控制和统一架构”。简单来说,它是一种用于不同设备和系统之间进行通信的技术规范。通过OPC UA,各种设备和系统可以互相交流和共享数据,实现更高效的工业自动化。

二、为什么需要OPC UA?

        在过去,不同厂商生产的设备使用不同的通信协议,导致设备之间难以互相沟通。这给工业自动化带来了许多挑战,比如数据集成困难、系统复杂等。OPC UA应运而生,解决了这些问题,带来了许多好处:

        1. 开放性:OPC UA是一种开放的技术标准,可以应用于不同的设备和系统。无论是传感器、控制器还是各种工业设备,只要支持OPC UA,它们就可以相互通信,实现无缝集成。

        2. 统一架构:OPC UA提供了一种统一的架构和数据模型,使得不同设备的数据能够以统一的方式进行表示和交换。这样一来,设备之间的数据传输变得更加简单和可靠。

        3. 跨平台和跨语言:OPC UA支持多种操作系统和编程语言。无论是Windows、Linux还是嵌入式系统,无论是C++、Java还是Python,都可以使用OPC UA进行通信,降低了集成的复杂性。

        4. OPC UA 编译说明:OPC UA 编译和连接PLC的过程非常枯燥和繁琐,文章计划采用2个章节进行介绍,首先介绍OPC UA的编译过程及Uaexpert连接西门子S7-1200PLC的方法和通过OPC UA 编译库连接S7-1200PLC的测试过程。

OPC UA 工具软件Uaexpert

        Uaexpert测试软件可到官方网站下载,下载链接如下。

https://www.unified-automation.com/products/development-tools/uaexpert.htmlicon-default.png?t=N7T8https://www.unified-automation.com/products/development-tools/uaexpert.html    

OPC UA开源库下载

        OPC UA 开源库下载可到官方网站下载相关的SDK,连接如下所示。

https://www.unified-automation.com/downloads/opc-ua-development.htmlicon-default.png?t=N7T8https://www.unified-automation.com/downloads/opc-ua-development.html

        下载完成后将文件解压后如下图所示。其中包含了三方依赖库、Cmake编译文件、Lib文件、.h文件和.dll文件等。

OPC UA开源库编译

        以下为OPC UA开源库官方给出的编译说明,这个必须要认真阅读,里面包含大量的信息,如果步骤不对会导致编译失败。

Unified Automation C++ based UA SDK for Windows
Content
(0) Compiler version
(1) Third-Party Libraries
(2) Release notes
(3) Feature list

===================================================================
(0) Compiler version for binary editions
===================================================================

The SDK was compiled with Microsoft(TM) Visual Studio and thus depends
on the runtime components (CRT) of the corresponding MS Visual Studio.

You SHOULD NOT mix this SDK binaries with other MS Visual Studio versions,
because your application will end up in loading two different CRT Dlls,
which results in two different heaps.
Mixing heaps will lead to application crashes, when trying to
free memory that was allocated by another heap.

Either download an evaluation version for your Visual Studio version
or obtain the Source Edition to be able to consistently compile the
package with your compiler version.

===================================================================
(1) Third-Party Libraries
===================================================================

The UA SDK requires a number of third-party libraries that
are used to provide certain features.
Third Party Software may impose additional restrictions and it is
the user's responsibility to ensure that they have met the licensing
requirements of the according libraries.
The following enumeration lists all third-party libraries used by the
UA SDK with additional information about version, configuration
and used licenses.
The third-party licenses are stored in the license folder distributed
with the SDK.

* OpenSSL

  To build the SDK with UA Security enabled the OpenSSL crypto
  library must be installed including the development headers.
  To avoid building OpenSSL from source ready-to-use Windows
  installers are available from:
  [https://slproweb.com/products/Win32OpenSSL.html]

  The SDK supports OpenSSL version 1.1.1 and 3.0.

  Note that you need to use the full installer, not the "Light"
  version, as the "Light" version does not include the development
  headers. Also make sure to select the 32bit or 64bit variant
  according to how you build the SDK.

  When using the installer, CMake is able to autodetect the installed
  OpenSSL version and will automatically enable security.

  The CMake output shows you the active configuration.
  Watch for this output:

    ...
    -- OpenSSL                                           found (1.1.1s)
    -- ### Summary of build options:
    -- CMAKE_BUILD_TYPE                                  Debug
    ...
    -- BUILD_LIBUACRYPTO                                 ON
    -- BUILD_LIBUAPKI                                          ON
    -- BUILD_LIBUASECONV                                 ON
    ...

    
* Libxml2

  Libxml2 is the XML C parser and toolkit developed for the Gnome
  project (but usable outside of the Gnome platform), it is free
  software available under the MIT License. XML itself is a
  metalanguage to design markup languages, i.e. text language where
  semantic and structure are added to the content using
  extra "markup" information enclosed between angle brackets.
  HTML is the most well-known markup language. Though the library
  is written in C a variety of language bindings make it available
  in other environments.
  
  A pre-compiled version of Libxml2 is contained in the third-party folder

  Home: http://www.xmlsoft.org/
  License: MIT License


===================================================================
(2) Release notes
===================================================================

(2a) PubSub functionality

===================================================================

With version 1.7 of the C++ SDK, PubSub related modules were added to the
SDK. See the file CHANGELOG for a list of SDK modules. The PubSub related
modules are part of a new product edition 'Client Server PubSub SDK Bundle'.
A upgrade is required if you have a 'Client SDK' or 'Client Server SDK Bundle'. 

The PubSub functionality contained in version 1.8 is based on
OPC UA 1.05.02 Part 14 - PubSub released in November 2022.

The implementation was tested with other implementations in OPC UA working group
PubSub plug-fest events and OPC Foundation interoperability workshops.

Version 1.8.0 adds support for PubSub UADP message security and the new
OPC UA 1.05 PubSubConfiguration object. See the migration guide in the SDK
documentation and the CHANGELOG for more details.

Version 1.8 implements the PubSub UADP message mapping.
Version 1.8 does NOT support PubSub JSON message mapping.

Known technical limitations for UADP message mapping are
- Event DataSetMessages are not supported
- Delta DataSetMessages are not supported
- Discovery messages are not supported
- Chunk NetworkMessages are not supported
- Dynamic number of NetworkMessages is not supported
- DataSetMessage fields with ValueRank > 1 are not supported in raw field encoding
- DataSetMessage fields with Structure DataTypes are not supported
See CHANGELOG for more details.

Version 1.8 implement the PubSub UDP transport protocol mapping.
Version 1.8 does not implement other transport protocol mappings but
provides a network back-end interface for application specific implementation
of other transport protocol mappings like MQTT and Ethernet.
Sample code for a MQTT network back-end is part of the demo server sample code.


(2b) Security Policies

===================================================================

The OPC UA Specification version 1.04 released end of 2017 deprecated
the security policy Basic256 and added the two new security policies
Aes128_Sha256_RsaOaep and Aes256_Sha256_RsaPss.
The security policy Basic128Rsa15 was already deprecated before.

It is strongly recommended to disable Basic128Rsa15 and Basic256 in the
OPC UA server configuration and to allow only Basic256Sha256,
Aes128_Sha256_RsaOaep and Aes256_Sha256_RsaPss.
A server administrator may be able to activate Basic128Rsa15 and Basic256
for backward compatibility but the user must be warned about the deprecated
status of these security policies.


(2c) OPC UA Compliance Testing
===================================================================
We are following the OPC UA compliance and certification efforts of
the OPC Foundation as close as possible. We participated in all UA plug fest
events and most of the OPC interoperability events as first available step.

We have tested the C++ demo server contained in this SDK release with the
released OPC UA compliance test tool (CTT) version 1.04.11-01.00.502. There are few
known issues with this compliance test version.

Issues in the CTT test scripts:
All of them are already reported to the Compliance Working Group.
* Base Info Core Structure - 001:
  The CTT throws an error with
  ConditionType -> ConditionSubClassId [NOT FOUND] REQUIRED
  ConditionType -> ConditionSubClassName [NOT FOUND] REQUIRED
  The CTT is using the latest OPC UA 1.04  UANodeSets,
  However, the C++ SDK was updated to OPC UA 1.05.02 UANodeSet.
  The NodeIds of the ConditionSubClassId and ConditionSubClassName
  is updated in the OPC UA 1.05.02 UANodeSet.
  In OPC UA 1.04 UANodeSets:
  ConditionType -> ConditionSubClassId: NodeId="i=16363"
  ConditionType -> ConditionSubClassName: NodeId="i=16364"
  In OPC UA 1.05.02 UANodeSet:
  ConditionType -> ConditionSubClassId: NodeId="i=11112"
  ConditionType -> ConditionSubClassName: NodeId="i=11113"

* Base Info ValueAsText - 002:
  The CTT sends the ReadRequest with NULL NodesToRead array,
  and the server responds with BadNothingToDo.
  The issue is already reported and created a mantis issue
  https://mantis.opcfoundation.org/view.php?id=8459

* Subscription Durable - Err-004
  The expected results in the script are incorrect
  ServiceResults=Good
  OperationResults=BadTypeMismatch
  However, the results should be
  ServiceResults=Good
  OperationResults=BadInvalidArgument
  InputArgumentResults=BadTypeMismatch
  The issue is already reported and created a mantis issue
  https://mantis.opcfoundation.org/view.php?id=9007

* Auditing Base - AOSCET-004, AOSCET-005
  The AuditEntryId should be the Client's IP Address and port.
  However, the CTT doesn't follow the specification.
  The issue is already reported and created a mantis issue
  https://mantis.opcfoundation.org/view.php?id=8978

When the UA CTT is installed it generates a number of certificates used for the
tests. These certificates of course have a limited validity i.e. they expire
after a certain time. This is one year for the issued certificates and 5 years
for the CA certificates and CRLs (Certificate Revocation Lists).
So one year after installing the UA CTT you typically get errors for tests in the
conformance group "Security"

The OPC Test Lab Certification of C++ demo server contained in this SDK
was successfully finished with version 1.6.0 of the SDK.

The test results with your own server implementation may have compliance
issues based on different SDK implementation options used. Issues can also
be caused by different timing.

We will provide regular updates to the SDK after the availability
of new OPC UA compliance test tool versions.


(2d) Protocol binding HTTPS with UA Binary Encoding
===================================================================

The OPC UA stack version used in the C++ SDK version 1.7.0 supports the
protocol binding HTTPS with UA Binary Encoding. The protocol binding can be
activated through configuration options.

However this part of the SDK is not released since the level of testing
and adoption is not high enough, even if there are no known open issues.


===================================================================
(3) Feature list
===================================================================

For a detailed change log see the file CHANGELOG in your SDK download section.

Version 1.8.0
===================================================================
Major features added in this version

Support for OPC UA 1.05.02 features
* Alarm model updated to 1.05.02
* PubSub configuration updated to 1.05.02 (see PubSub for more details)
* UserManagement object (OPC UA Part 18) - see also User Authentication

PubSub Release
* Change of PubSub functionality from beta to release
* Full implementation of PubSub UADP message security
* Support for SecurityGroup and PubSub security key management
* Support for SetSecurityKeys to accept PubSub security key Push
* Support for GetSecurityKeys to provide PubSub keys to other applications
* Support for PubSub security key pull using GetSecurityKeys on a SKS
* Support for configuration read and write using PubSubConfiguration object

User Authentication and Authorization
* Complete integrated handling of User Authentication and Authorization
* Persistence of Roles and IdentityMapping in XML or INI file for on-line configuration
* User and password management file
* On-line configuration of users and passwords with UserManagement object

Other enhancements
* Support for OpenSSL 3.0
  OpenSSL 1.1.1 is still supported
  Older OpenSSL version are no longer supported

* Add shared DataTypeDictionary in Server SDK

* Enable shared library build for PubSub related modules

* Add general SDK library Interface
  - Add interface UaSdkClientLibraryInterface
    Used to handle general initialization and clean-up in base modules without
    creating dependencies to special modules or between modules like client and server
  - Add implementation for each SDK module (uabasecpp, uaclient, coremodule, uamodule
    pubsubmodule)
  - Implement SKS pull in client library interface for use in PubSub module without
    adding dependency between PubSubModule and UaClient)
  - Use for special handling of PubSubModule start-up and shut-down without creating
    dependency in server CoreModule
  - UaAbstractApplication manages list of libraries including initializeLibraries()
    and cleanUpLibraries()

* Update minimum required CMake version
  - bundle / client requires 3.7
  - bundlepubsub requires 3.12
  - using OpenSSL 3.0 requires 3.18

See CHANGELOG for details.

Versions 1.7.x and older
See CHANGELOG for details.

 OpenSSL

        以上OPC UA开源库编译说明中有一段话非常重要:“  The SDK supports OpenSSL version 1.1.1 and 3.0.”是说OPC UA SDK 需要OpenSSL 3.0版本支持。OpenSSL又是什么东西呢?OpenSSL其实是一个加密开源库包含大量的加密和签名算法。

OpenSSL是一个基于密码学的安全开发包,OpenSSL提供的功能相当强大和全面,囊括了主要的密码算法、常用的密钥和证书封装管理功能以及SSL协议,并提供了丰富的应用程序供测试或其它目的使用。 
  1.对称加密算法 
       OpenSSL一共提供了8种对称加密算法,其中7种是分组加密算法,仅有的一种流加密算法是RC4。这7种分组加密算法分别是AES、DES、Blowfish、CAST、IDEA、RC2、RC5,都支持电子密码本模式(ECB)、加密分组链接模式(CBC)、加密反馈模式(CFB)和输出反馈模式(OFB)四种常用的分组密码加密模式。其中,AES使用的加密反馈模式(CFB)和输出反馈模式(OFB)分组长度是128位,其它算法使用的则是64位。事实上,DES算法里面不仅仅是常用的DES算法,还支持三个密钥和两个密钥3DES算法。 
  2.非对称加密算法 
       OpenSSL一共实现了4种非对称加密算法,包括DH算法、RSA算法、DSA算法和椭圆曲线算法(EC)。DH算法一般用户密钥交换。RSA算法既可以用于密钥交换,也可以用于数字签名,当然,如果你能够忍受其缓慢的速度,那么也可以用于数据加密。DSA算法则一般只用于数字签名。 
  3.信息摘要算法 
      OpenSSL实现了5种信息摘要算法,分别是MD2、MD5、MDC2、SHA(SHA1)和RIPEMD。SHA算法事实上包括了SHA和SHA1两种信息摘要算法,此外,OpenSSL还实现了DSS标准中规定的两种信息摘要算法DSS和DSS1。 
  4.密钥和证书管理 
        密钥和证书管理是PKI的一个重要组成部分,OpenSSL为之提供了丰富的功能,支持多种标准。 
       首先,OpenSSL实现了ASN.1的证书和密钥相关标准,提供了对证书、公钥、私钥、证书请求以及CRL等数据对象的DER、PEM和BASE64的编解码功能。OpenSSL提供了产生各种公开密钥对和对称密钥的方法、函数和应用程序,同时提供了对公钥和私钥的DER编解码功能。并实现了私钥的PKCS#12和PKCS#8的编解码功能。OpenSSL在标准中提供了对私钥的加密保护功能,使得密钥可以安全地进行存储和分发。 
       在此基础上,OpenSSL实现了对证书的X.509标准编解码、PKCS#12格式的编解码以及PKCS#7的编解码功能。并提供了一种文本数据库,支持证书的管理功能,包括证书密钥产生、请求产生、证书签发、吊销和验证等功能。 
  事实上,OpenSSL提供的CA应用程序就是一个小型的证书管理中心(CA),实现了证书签发的整个流程和证书管理的大部分机制。 
  5.SSL和TLS协议 
  SSL(Secure Sockets Layer 安全套接层)是一种基于Web应用的安全通信协议,最早由Netscape(网景)公司提出。SSL介于TCP协议和应用层 协议之间,主要作用就是将HTTP、FTP等应用层的数据进行加密然后依托可靠的TCP协议在互联网上传输到目的地,其中最典型的应用就是https。

 SSL提供3个基本的安全服务:

 1)身份合法性:数据发送方和接收方要确认彼此身份,要确保各自的身份不会被冒充。(通过数字证书实现)

 2)数据机密性:所有传输的数据都进行加密,并且要确保即使数据被截获也无法破解。(通过非对称或对称加密加密算法实现)

 3)数据完整性:确保收到的数据与发送方发出的数据一致,没有被篡改。(通过MAC算法实现)

 SSL协议主要采用的数据加密算法:

 1)非对称加密算法:数据加密和解密使用不同的密钥,如RSA公钥加密算法。优点是安全级别高,很难被破解;缺点是加密解密的速度慢,因此只适用于小量数据的加密。SSL协议采用非对称加密算法实现数字签名,验证数据发送方(或接收方)的身份,同时也用非对称加密算法交换密钥(用于数据加密的对称加密算法的密钥,以及用于数据完整性验证的MAC算法)。

 2)对称加密算法:数据加密和解密使用同一个密钥,如DES、3DES、RC4等都是对称加密算法。优点是加解密速度快,适用于大数据量的加密,但安全性较差。SSL协议采用对称加密算法对传输的数据进行加密。

 3)MAC算法:Message Authentication Codes,即消息认证码算法,MAC含有密钥散列函数算法,兼容了MD和SHA算法的特性,并在此基础上加入了密钥。SSL协议采用MAC算法来检验消息的完整性。

         OpenSSL下载

       OPC UA 说明文件中给出了相关的下载连接如下所示。

https://slproweb.com/products/Win32OpenSSL.htmlicon-default.png?t=N7T8https://slproweb.com/products/Win32OpenSSL.html       

        也可以到如下地址进行下载。

https://www.openssl.org/icon-default.png?t=N7T8https://www.openssl.org/

        本人是通过官方给出的连接进行的下载,如下图所示,OpenSSL 下载后安装即可。

Cmake编译工具下载

        官方网站地址如下:老外搞得东西我们也就不问为什么要这么做,肯定有人家的道理,我们作为应用者有时候没得选择。

https://cmake.org/icon-default.png?t=N7T8https://cmake.org/

OPC UA编译

        选择好OPC UA 资源文件目录和输出文件目录后在工具栏tool中选择Generate进行编译即可,编译没有错误的话可以恭喜你编译成功了。

编译完成后输出文件如下图所示,我们所需要的资源都在examples文件夹里面。

        例如我们打开client_cpp_sdk文件夹就会看到编译后的解决方案工程文件及其他相关文件,如下图所示。

 

OPC UA开源库项目结构

        打开编译完成的项目文件以client_cpp_sdk项目为例。如下图所示在项目属性中可以看出项目引用的资源文件及其头文件、依赖库等。

        1、头文件,头文件中可以看到CMake编译完成后包含了以下目录的头文件。

C:\Program Files\OpenSSL-Win64\include
F:\XXX\L_Visio自动化工程\L_C++Demo\OPCUA\uasdkcppbundlepubsub-bin-EVAL-windows-x64-vs2015-v1.8.2-624\uasdkcppbundlepubsub-bin-EVAL-vs2015_x64-v1.8.2-624\cmake\..\include\uastack
F:\XXX\L_Visio自动化工程\L_C++Demo\OPCUA\uasdkcppbundlepubsub-bin-EVAL-windows-x64-vs2015-v1.8.2-624\uasdkcppbundlepubsub-bin-EVAL-vs2015_x64-v1.8.2-624\cmake\..\include\uabasecpp
F:\XXX\L_Visio自动化工程\L_C++Demo\OPCUA\uasdkcppbundlepubsub-bin-EVAL-windows-x64-vs2015-v1.8.2-624\uasdkcppbundlepubsub-bin-EVAL-vs2015_x64-v1.8.2-624\cmake\..\include\uapkicpp
F:\XXX\L_Visio自动化工程\L_C++Demo\OPCUA\uasdkcppbundlepubsub-bin-EVAL-windows-x64-vs2015-v1.8.2-624\uasdkcppbundlepubsub-bin-EVAL-vs2015_x64-v1.8.2-624\cmake\..\include\uaclientcpp
F:\XXX\L_Visio自动化工程\L_C++Demo\OPCUA\uasdkcppbundlepubsub-bin-EVAL-windows-x64-vs2015-v1.8.2-624\uasdkcppbundlepubsub-bin-EVAL-vs2015_x64-v1.8.2-624\cmake\..\include\xmlparsercpp
F:\XXX\L_Visio自动化工程\L_C++Demo\OPCUA\uasdkcppbundlepubsub-bin-EVAL-windows-x64-vs2015-v1.8.2-624\uasdkcppbundlepubsub-bin-EVAL-vs2015_x64-v1.8.2-624\examples\client_cpp_sdk\..\utilities
F:\XXX\L_Visio自动化工程\L_C++Demo\OPCUA\uasdkcppbundlepubsub-bin-EVAL-windows-x64-vs2015-v1.8.2-624\uasdkcppbundlepubsub-bin-EVAL-vs2015_x64-v1.8.2-624\examples\client_cpp_sdk\..\utilities\win32
%(AdditionalIncludeDirectories)

  2、Lib文件,lib文件中可以看到CMake编译完成后包含了以下目录的lib依赖库文件。

uaclientcpp.lib
uapkicpp.lib
uabasecpp.lib
xmlparsercpp.lib
uastack.lib
F:\XXX\L_Visio自动化工程\L_C++Demo\OPCUA\uasdkcppbundlepubsub-bin-EVAL-windows-x64-vs2015-v1.8.2-624\uasdkcppbundlepubsub-bin-EVAL-vs2015_x64-v1.8.2-624\third-party\win64\vs2019\libxml2\out32dll\libxml2.lib
C:\Program Files\OpenSSL-Win64\lib\VC\libssl64MD.lib
C:\Program Files\OpenSSL-Win64\lib\VC\libcrypto64MD.lib
ws2_32.lib
mpr.lib
kernel32.lib
user32.lib
gdi32.lib
winspool.lib
shell32.lib
ole32.lib
oleaut32.lib
uuid.lib
comdlg32.lib
advapi32.lib

 3、工程编译,编译完成后将uastack.DLL和libxml2.DLL文件拷贝到编译项目Release或Debug目录下例程项目就可以正常运行了。uastack.DLL和libxml2.DLL在源码Bin文件夹和源码third-party\win64文件夹下,分为32位系统和64位系统。

uastack.DLL文件所在目录:

libxml2.DLL文件所在目录:

Uaexpert连接S7-1200测试

        1、打开博图新建项目(此处不详细说明)。如下图所示,在项目中插入S7-1200PLC并设置好IP地址(个电脑网卡同一个网段)。

        2、在PLC属性中选择激活OPC UA服务器,S7-1200目前只能作为服务器使用。如下图连接地址为默认连接地址opc.tcp://192.168.2.202:4840

        3、连接机制中勾选PET/GET权限。

        4、在PLC属性OPC UA 选项中选择安全策略配置及证书。

      5、在PLC属性OPC UA 运行许可中选择SIMATIC OPC UA S7-1200 basic。

        6、程序块中插入一个名为:OPCUADATA的全局数据块,在数据块中建立如下类型的连接数据。数据块的属性选择允许从HMI/OPC UA/WEB API 中访问权限。

        7、在OPC UA通信中增加一个接口数据接口,将OPCUADATA数据块中的变量拖入到接口数据块。到此TIA端的配置已经完成,将程序下载到PLC即可。

        8、Uaexpert软件端的设置打开Uaexpert软件,在Servers中右键Add增加服务器。

        9、在弹出的窗口中Custom Discovery中双击添加S7-1200 OPC UA服务器的地址。完成后点击左边箭头会显示连接的相关信息。

        10、OPC UA 服务器连接成功。

        11、连接成功后点击如下图所示的访问选项,弹出的确认对话框中点击确认即可连接OPC UA 服务器。

        12、连接成功后点击连接的服务器,在服务器的ServerInterfaces里面可以看到显示的可以访问的S7-1200PLC的数据块。将ServerInterfaces拖入到右边Data Access View窗口中就可以监控和修改S7-1200中 OPCDADA中定义的数据。

        13、监控S7-1200中的OPCDATA数据块。

        14、Uaexpert中修改相关变量。

        15、再次监控S7-1200PLC中OPCDATA数据块,会发现数据已经发生改变。

OPC UA 开源库连接S7-1200测试

        OPC UA 开源库连接S7-1200测试之前首次先要做几个配置。

        1、将源码下面ClientConfig文件夹下面的DiscoveryURL 和ServerUrl    后面的连接地址改为S7-1200PLC的OPC UA服务器地址:opc.tcp://192.168.2.202:4840。

        2、将源码下面ClientConfigGds文件夹下面的DiscoveryURL 和ServerUrl    后面的连接地址改为S7-1200PLC的OPC UA服务器地址:opc.tcp://192.168.2.202:4840。

        以上两个文件在源文件的examples\config目录下。

        修改完以上文件后重新编译项目,在项目ClientConfig.ini文件中可以看到连接地址已经发生变化。

        ClientConfig.CPP中的DiscoveryURL 和ServerUrl需要做同样的修改。

         3、OPC UA 源码编译项目连接S7-1200PLC,首选在编译项目Release目录下运行client_cpp_sdk.EXE。

        4、client_cpp_sdk  运行后如下图所示。

         5、输入0连接OPC UA服务器如下图所示。

        6、输入0连接来选择连接OPC UA服务器的方式,如上图所示选择1连接服务器,如下图所示。

        7、输入3 Browser  S7-1200PLC OPC UA服务器数据。

        8、可以看出上图中读到的PLC数据,Write和Read的方法还没有进行测试。等到后期研究清楚再慢慢测试。

相关网站

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:/a/326632.html

如若内容造成侵权/违法违规/事实不符,请联系我们进行投诉反馈qq邮箱809451989@qq.com,一经查实,立即删除!

相关文章

Spring基础属性一览:注释、对象装配、作用域、生命周期

在Spring中想要更简单的存储和读取对象的核心是使用注解,也就是我们接下来要学的Spring中相关注解。 之前我们存储Bean时,需要在自己添加的配置文件中添加一行bean才行: 而现在我们只需要一个注解就可以替代之前要写的一行配置的繁琐了。 …

基于域账户及西门子simatic logon的集中权限管理的实现(二)

上次我们完成了域环境及simatic logon服务器的搭建,今天我们将在wincc及HMI上进行组态,实现用域账户进行登录。 3.WINCC用户管理组态引文:博途工控人平时在哪里技术交流博途工控人社群 3.1 首先将要安装WINCC的服务器加入域。 3.2 在wincc…

springboot实现黑名单和白名单功能

题外话 关于黑名单和白名单功能,我觉得可以直接用linux服务器的iptables或nftables来实现黑名单和白名单功能。这两个工具都是Linux系统上用于配置防火墙规则的命令行工具。 iptables: 描述: iptables 是一个用于配置IPv4数据包过滤规则的工具…

Netty开篇——NIO章中(四)

通道(Channel) Channel类似于流,有些区别 同时进行读写,而流只能读或者只能写实现异步读写数据可以从缓冲读数据,也可以写数据到缓冲 Channel在 NIO 中是一个接口:public interface Channel extends Closeable{} 常用的Channel类有:FileChan…

【昕宝爸爸小模块】深入浅出之JDK21 中的虚拟线程到底是怎么回事(二)

➡️博客首页 https://blog.csdn.net/Java_Yangxiaoyuan 欢迎优秀的你👍点赞、🗂️收藏、加❤️关注哦。 本文章CSDN首发,欢迎转载,要注明出处哦! 先感谢优秀的你能认真的看完本文&…

Arthas项目实战用法

一、简介 1、项目所在位置 2、安装Arthas 1. 下载arthas-boot.jar 2. 运行arthas-boot.jar 3. 选择进程 3、卸载Arthas 二、核心监视功能 1、monitor:监控方法的执行情况 2、watch:检测函数返回值 3、trace:根据路径追踪,…

低代码自动化测试的实践

何为低代码测试 传统上,功能、 UI、端到端等测试自动化的实现都涉及编写测试脚本,代替测试人员执行重复的手动测试任务。自动化脚本的开发工作通常由 QA 工程师或开发人员完成,这需要编写大量代码。 而低代码甚至无代码的理念也是在自动化测…

海外盲盒系统搭建:盲盒出海成为了盲盒企业的新机遇

盲盒在我国作为一个新型的消费模式,取得了较大的成功,也成为了当下流行的潮玩文化。盲盒在国内爆火的优势下,也为我国盲盒出海提供了市场基础。当下,海外市场具有较大的发展潜力,除此之外,盲盒出海也成为当…

transformer详解

transformer 框架注意力机制注意力评分函数(scoring function)自注意力机制(self-attention)masked self-attention多头注意力(multi-head attention) 位置编码Layer normalizationResnet(Add) 框架 框架解…

使用AI自动生成PPT提高制作效率

使用AI自动生成PPT提高制作效率 在制作PPT方面,很多制作者都会轻易跳进一个怪圈:“我要制作一个关于关爱老人的PPT,该怎么做呢,有模板没有?”这个会涉及很多逻辑需要经过不断的思考,制作PPT要通过很多素材、使用技巧、…

【报错】检索 COM 类工厂中 CLSID 为 {28E68F9A-8D75-11D1-8DC3-3C302A000000} 的组件失败错误

情况描述 在使用C#进行工控软件开发,需要连接通过OPC连接DCS系统时,需要通过visual studio的NuGet包管理器添加OpcAutomation,如下图所示: 这样便可以实现通过C#连接读取数据。但是在通过C#连接OPC server时,会出现错…

性能压力测试:企业成功的关键要素

性能压力测试在现代企业软件开发中扮演着至关重要的角色,它不仅仅是一项技术手段,更是保障企业成功的关键要素。本文将探讨性能压力测试在企业中的重要性,并阐述其对业务稳定性、用户体验和品牌声誉的影响。 一、保障业务稳定性 1、应对高负载…

java数据结构与算法刷题-----LeetCode96. 不同的二叉搜索树

java数据结构与算法刷题目录(剑指Offer、LeetCode、ACM)-----主目录-----持续更新(进不去说明我没写完):https://blog.csdn.net/grd_java/article/details/123063846 很多人觉得动态规划很难,但它就是固定套路而已。其实动态规划只…

走迷宫之推箱子

前言: 在上一篇文章当中我介绍了一个走迷宫的写法,但是那个迷宫没什么可玩性和趣味性,所以我打算在迷宫的基础上加上一个推箱子,使之有更好的操作空间,从而增强了游戏的可玩性和趣味性。 1. 打印菜单 void menu() {…

[WUSTCTF2020]alison_likes_jojo 1

BUUCTF:https://buuoj.cn/challenges 题目描述: 得到的 flag 请包上 flag{} 提交。 感谢 Iven Huang 师傅供题。 比赛平台:https://ctfgame.w-ais.cn/ 密文: 下载附件解压,得到两张jpg图片和一个文本文件。 解题思路&#x…

HNU-编译原理-实验2-Bison

编译原理实验2Bison 计科210X 甘晴void 202108010XXX 实验要求 详细的实验项目文档为 https://gitee.com/coderwym/cminus_compiler-2023-fall/tree/master/Documentations/lab2 实验步骤 本次实验需要在 Lab1 已完成的 flex 词法分析器的基础上,进一步使用 b…

【Java】源码文件开头添加注释

需求 应公司质量部要求,需要对代码做静态检查。质量部要求,源码文件必须在起始行起设置一些注释,然而项目已经开发了一年之久,且没有维护这个注释。 此时,面对好几千个源码文件,我们如何快速添加相应的注…

滑块拖动验证

效果 代码 svg图标 初始图标 <svg t"1705397535958" class"icon" viewBox"0 0 1024 1024" version"1.1" xmlns"http://www.w3.org/2000/svg" p-id"1492" width"200" height"200">&l…

Kubernetes核心实战

kubernetes&#xff08;一&#xff09;概述与架构 kubernetes&#xff08;二&#xff09;创建集群 云原生实战 语雀 官网 Kubernetes 文档 | Kubernetes B站课程&#xff1a;https://www.bilibili.com/video/BV13Q4y1C7hS/?p41 1.Namespace 名称空间&#xff0c;用来对集群…

【书生·浦语】大模型实战营——LMDeploy 大模型量化部署实战

大模型部署背景 大模型部署是指将训练好的模型在特定的软硬件环境中启动的过程&#xff0c;使模型能够接收输入并返回预测结果。大模型的内存开销巨大&#xff0c;7B模型仅权重需要14G内存。另外大模型是自回归生成&#xff0c;需要缓存Attention的 k/v。 LMDeploy 简介 推理性…