Stefano
Stefano

Reputation: 1722

How to define Apache Camel OPC UA client string syntax to configure multitag aquisition

I'm using Apache Camel OPC UA client to acquire signals from Industrial Gateway OPCUA Server. My aim is to try to acquire a set of tags value with a sampling interval defined in only a Camel route.

As technologies I'm using:

I'm able to acquire a single tag value with sampling interval to 2000 ms by the following Camel route:

from(milo-client:opc.tcp://127.0.0.1:49310?
    keyStoreUrl=file:C:\Temp\application\certificate\clientkeystore.jks
    &keyPassword=123456&keyStorePassword=123456
    &applicationUri=urn:8409:test:camelopcua
    &applicationName=camelopcua
    &node=RAW(ns=2;s=Channel2 SIMUL.SIM_1.BNAp1.18VGG1_1XA)&samplingInterval=2000).log(">>> ${body}")

As written in Camel documentation the node key to define tag value acquisition. See below

node=RAW(ns=2;s=Channel2 SIMUL.SIM_1.BNAp1.18VGG1_1XA)&samplingInterval=2000

Apache Camel OPC UA Client link

Does Apache Camel OPC UA client have the feature to let me define different tags in only camel route?

In case that Camel OPC UA client has implemented the multitag definition in only a route, what is the right string syntax ?

Upvotes: 1

Views: 107

Answers (0)

Related Questions