Difference between revisions of "What's new in QuickOPC 2022.1"

From OPC Labs Knowledge Base
Jump to navigation Jump to search
Line 34: Line 34:
 
-->
 
-->
 
== Services ==  
 
== Services ==  
* Added the {{Style=Identifier|IEasyUAClientConnectionControl}} service on the {{Style=Identifier|EasyUAClient}} component. It provides methods to control the OPC UA client connections to the server, and contains methods like {{Style=Identifier|LockConnection}} and {{Style=Identifier|UnlockConnection}}. When the connection is locked, the component will attempt to open it and keep open, and will not automatically disconnect from the server after the connection is unused for certain time. The service is also available via COM, as {{Style=Identifier|_EasyUAClientConnectionControl}} interface. In .NET, it is also possible to use the {{Style=Identifier|DisposableLockConnection}} extension method, which works nicely with "using" statements in C# and VB.NET.
+
* Added the {{Style=Identifier|IEasyUAClientConnectionControl}} service on the {{Style=Identifier|EasyUAClient}} component (Professional Edition and higher). It provides methods to control the OPC UA client connections to the server, and contains methods like {{Style=Identifier|LockConnection}} and {{Style=Identifier|UnlockConnection}}. When the connection is locked, the component will attempt to open it and keep open, and will not automatically disconnect from the server after the connection is unused for certain time. The service is also available via COM, as {{Style=Identifier|_EasyUAClientConnectionControl}} interface. In .NET, it is also possible to use the {{Style=Identifier|DisposableLockConnection}} extension method, which works nicely with "using" statements in C# and VB.NET.
* Added the {{Style=Identifier|IEasyUAClientNodeRegistration}} service on the {{Style=Identifier|EasyUAClient}} component. It provides methods to register and unregister nodes, using the corresponding OPC UA services. Node registration (with OPC UA servers that support it) can improve performance with repeatedly accessed nodes. The service is also available via COM, as {{Style=Identifier|_EasyUAClientNodeRegistration}} interface.  
+
* Added the {{Style=Identifier|IEasyUAClientNodeRegistration}} service on the {{Style=Identifier|EasyUAClient}} component (Professional Edition and higher). It provides methods to register and unregister nodes, using the corresponding OPC UA services. Node registration (with OPC UA servers that support it) can improve performance with repeatedly accessed nodes. The service is also available via COM, as {{Style=Identifier|_EasyUAClientNodeRegistration}} interface.  
 
<!--
 
<!--
 
== Specialized Client Objects ==
 
== Specialized Client Objects ==

Revision as of 14:10, 27 November 2021

See also: Versions; Previous version: What's new in QuickOPC 2021.3

Internal version number: 5.63

Key changes:


Component Improvements

OPC UA PubSub

  • In JSON message mapping, added support for DataSetWriterName and ReversibleFieldEncoding flags, introduced in OPC UA specification 1.05.01.

COM Components

  • Updated QuickOpc.h include file (Microsoft C++) for use with ISO C++ 20 Standard.

Services

  • Added the IEasyUAClientConnectionControl service on the EasyUAClient component (Professional Edition and higher). It provides methods to control the OPC UA client connections to the server, and contains methods like LockConnection and UnlockConnection. When the connection is locked, the component will attempt to open it and keep open, and will not automatically disconnect from the server after the connection is unused for certain time. The service is also available via COM, as _EasyUAClientConnectionControl interface. In .NET, it is also possible to use the DisposableLockConnection extension method, which works nicely with "using" statements in C# and VB.NET.
  • Added the IEasyUAClientNodeRegistration service on the EasyUAClient component (Professional Edition and higher). It provides methods to register and unregister nodes, using the corresponding OPC UA services. Node registration (with OPC UA servers that support it) can improve performance with repeatedly accessed nodes. The service is also available via COM, as _EasyUAClientNodeRegistration interface.

Component Refactorings

OPC UA

  • The ServerConditionChanged event, previously available on the IEasyUAClient interface, has been moved to a new service, IEasyUAClientConnectionMonitoring, available from the EasyUAClient component. The service is also available via COM, as _EasyUAClientConnectionMonitoring interface.

Tools and Online Services

OpcCmd Utility

  • Added uaClient getService uaClientConnectivityControl command, with lockConnection and unlockConnection subcommands.
  • Added uaClient getService uaClientNodeRegistration command, with registerNode and unregisterNode subcommands.

Examples

OPC UA Client-Server

  • Added a C# example showing how to lock and unlock connections to an OPC UA server, using the new IEasyUAClientConnectionControl service.
  • Added a C# example showing how to register an unregister nodes in an OPC UA server, using the new IEasyUAClientNodeRegistration service.
  • Added a VBScript example showing how to connections to and disconnections from the OPC UA server, using the IEasyUAClientConnectionMonitoring service and the event pull mechanism.