You are here: Start » Function Reference » System » OPC UA » OPCUAClient_WriteByteBufferValue
Header: | STD.h |
---|---|
Namespace: | fil |
Module: | FoundationLite |
Writes a ByteString value to a variable node in a OPC UA server.
Syntax
void fil::OPCUAClient_WriteByteBufferValue ( int inConnectionId, const fil::OpcUaNodeId& inNodeId, const ftl::Conditional<fil::ByteBuffer>& inValue, int inStatus = 0 )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() |
inConnectionId | int | 0 - 99 | 0 | Slot id of the open connection to the server |
![]() |
inNodeId | const OpcUaNodeId& | Id of the variable node to write the value to | ||
![]() |
inValue | const Conditional<ByteBuffer>& | The value to write to the variable node | ||
![]() |
inStatus | int | 0 | OPC UA status code for the variable value |
Description
This filter is used to write (send) a value into the "Value" property of a Variable Class node on a OPC UA server.
The inConnectionId input specifies the server connection slot id and must correspond to the value specified in the OPCUAClient_Connect filter.
The inNodeId input specifies the Node Id of the server node to write the value to (see OpcUaNodeId for details). The node pointed to by this id must be of Variable class and with a compatible value data type (see below), otherwise the filter will throw an IOError exception.
The inValue input specifies the value to be written. This input has a conditional type. Setting the value to Nil will result in writing Null to the node's value variant.
The inStatus input specifies the value's usability Status Code to be assigned to the value in the server. In most cases, when writing a valid non-Null value, this input will be left on the default status of 0 (StatusCodeGood). Writing a Null value usually requires to specify a status code in the "Bad" severity range.
This filter can write a scalar value to variables with OPC UA basic data type of ByteString or derived from it, by converting the inValue input value of type ByteBuffer.
This filter can be used to send an image to the OPC UA server, by writing to variable nodes of types Image, ImageBMP, ImageJPG or ImagePNG (all deriving from the ByteString type). To achieve this the source Image must be first saved to an in-memory buffer using the SaveImageToBuffer filter, selecting the image file format appropriate for the destination node type, then writing the intermediate ByteBuffer with the stored image to the OPC UA server.
Errors
This filter will throw an IOError exception on network connection errors, server service call errors and write operation or data conversion errors.
See Also
- OPCUAClient_Connect – Establishes a connection to a OPC UA server
- OPCUAClient_ReadByteBufferValue – Reads a ByteString compatible value of a variable node from a OPC UA server.
- SaveImageToBuffer – Saves an image to a file stored in ByteBuffer.