open62541-nodeset-loader icon indicating copy to clipboard operation
open62541-nodeset-loader copied to clipboard

Library for loading opc ua nodesets from xml and sorting the nodes

Results 17 open62541-nodeset-loader issues
Sort by recently updated
recently updated
newest added

Hi! I'll duplicate the problem with Open62541 v1.4.0 here just in case. https://github.com/open62541/open62541/issues/6401

Nodeset schema defines a _MinimumSamplingInterval_ attribute for _UAVariable_

good first issue

I noticed that `UA_findDataTypeWithCustom()` can't find the data types of imported UAVariables with custom/aliased UADataTypes. Given the following namespaces: ``` http://foobar.example.com/Types/v2 http://foobar.example.com/Instances ``` Given these Aliases: ```xml i=2365 ns=1;s=af28ed20-dbb6-5624-aa65-4b42023ab1c4 ns=1;s=0cde5300-0cef-4699-b5c3-acb5011e0aa3...

because nodesetLoader relies on open62541/v1.4 but conan package is not availabe

Hi again)) There is some code in **import.c** Code num 1. ```C static NL_Reference *getHierachicalInverseReference(const NL_Node *node) { NL_Reference *hierachicalRef = node->hierachicalRefs; while (hierachicalRef) { if (!hierachicalRef->isForward) { return hierachicalRef;...

This issue is related to the loading of companion nodeset files into the OPC UA server (using [open62541](https://github.com/open62541/open62541)). The version of the UA-Nodeset tested: - Repository: **https://github.com/OPCFoundation/UA-Nodeset** - Branch: **latest**...

take a look on this todo: https://github.com/open62541/open62541-nodeset-loader/blob/a4a7ce087fed6d6fa9a2af7f21bdfc3fa01bace6/CMakeLists.txt#L23

The issue appeared when loading the companion nodeset into the OPC UA server. The version of the UA-Nodeset tested: - Repository: **https://github.com/OPCFoundation/UA-Nodeset** - Branch: **latest** - Commit: **a2208e8** When testing...

When the following PR was merged, the DataTypeImporter sub-module (within open62541 backend) was extended with support for additional data types: - **UA_DATATYPEKIND_GUID** - **UA_DATATYPEKIND_EXTENSIONOBJECT** - **UA_DATATYPEKIND_UNION** However, the DataTypeImporter is...

1) If a Structure contains a member that is of an abstract DataType, the member is encoded as ExtensionObject. 2) If a Structure contains a member that is of the...