On Wed, Jul 22, 2026 at 05:38:44PM +0100, Stuart Henderson wrote:
> On 2026/07/22 16:26, Alexander Bluhm wrote:
> > On Wed, Jul 22, 2026 at 03:04:44PM +0200, Alexander Bluhm wrote:
> > > On Wed, Jul 22, 2026 at 11:06:21AM +0100, Stuart Henderson wrote:
> > > >  11602 | UA_Variant_setArray(&attr.value, 
> > > > &variablenode_ns_1_i_15006_variant_DataContents, (UA_Int32) 1, 
> > > > &UA_TYPES[UA_TYPES_IDTYPE]);
> > > >        |                                                                
> > > >                                            ^~~~~~~~~~~~~~~
> > > > 1 error generated.
> > > > ninja: build stopped: subcommand failed.
> > > 
> > > I can reproduce it.  Happens on i386 and amd64 with ns0_full flavor.
> > > But we have packages with this version in snapshots from July 16
> > > and 18.
> > 
> > Flavor ns0_full build fails if non-flavor open62541 package is
> > installed.  Include files are different.  pkg_delete open62541 fixes
> > it.
> > 
> > Either live with the situation or "someone" digs though the cmake
> > ninja build process to search pobj/open62541/include before
> > /usr/include.
> > 
> > bluhm
> > 
> 
> It's a problem for bulk builds because p5-OPCUA-Open62541 has a lib
> dependency on the unflavoured version, so it is guaranteed that
> sometimes that ns0_full will be built while the unflavoured
> version is installed.
> 
> It also seems that the libraries are not compatible, for example
> if I install unflavoured open62541, "make fake" in p5-OPCUA-Open62541,
> then remove open62541 and install ns0_full flavour, then run tests,
> there are crashes:
> 
> ===>  Regression tests for p5-OPCUA-Open62541-2.10
> "/usr/bin/perl" -MExtUtils::Command::MM -e 'cp_nonempty' -- Open62541.bs 
> blib/arch/auto/OPCUA/Open62541/Open62541.bs 6
> 44
> PERL_DL_NONLAZY=1 "/usr/bin/perl" "-MExtUtils::Command::MM" "-MTest::Harness" 
> "-e" "undef *Test::Harness::Switches; te
> st_harness(0, 'blib/lib', 'blib/arch')" t/*.t
> perl(92229) in malloc(): write to free mem 0x70befabc0f0[0..7]@16
> t/client-browse-async.t ...................
> Failed 58/83 subtests
> perl(51059) in malloc(): write to free mem 0x3fa0b77b540[0..7]@16
> t/client-browse.t .........................
> Failed 12/37 subtests
> perl(44620) in malloc(): write to free mem 0x9e7768c020[0..7]@16
> t/client-browsenext-async.t ...............
> 
> (etc.)
> 
> Can we remove the flavour one way or another? e.g. by building with
> ns0_full in the unflavoured version, or removing the ns0_full support?
> If it is still required, then we need something more clever to cope
> with p5-OPCUA-Open62541.

I need both flavors.  With ns0_full debugging open62541 is hard
because everything is so big.  But in production I must install
ns0_full.

Would two flavors of p5-OPCUA-Open62541 help?  Each on would have
a dependency to one version of open62541.

And the include search path during build of open62541 has to be
fixed.

bluhm

> Index: Makefile
> ===================================================================
> RCS file: /cvs/ports/misc/Makefile,v
> diff -u -p -r1.224 Makefile
> --- Makefile  7 May 2026 17:03:00 -0000       1.224
> +++ Makefile  22 Jul 2026 16:37:39 -0000
> @@ -62,7 +62,6 @@
>       SUBDIR += most
>       SUBDIR += nyancat
>       SUBDIR += open62541
> -     SUBDIR += open62541,ns0_full
>       SUBDIR += openbabel
>       SUBDIR += openhab
>       SUBDIR += openhab-addons
> Index: open62541/Makefile
> ===================================================================
> RCS file: /cvs/ports/misc/open62541/Makefile,v
> diff -u -p -r1.38 Makefile
> --- open62541/Makefile        8 Jul 2026 16:11:16 -0000       1.38
> +++ open62541/Makefile        22 Jul 2026 16:37:39 -0000
> @@ -1,10 +1,14 @@
>  COMMENT =    library implementation of OPC UA
>  
>  VERSION =    1.3.18
> +REVISION =   0
>  DISTNAME =   open62541-${VERSION}
>  PKGNAME =    open62541-${VERSION}
> +DIST_TUPLE +=        github open62541 open62541 v${VERSION} .
> +DIST_TUPLE +=        github OPCFoundation UA-Nodeset UA-1.04.10-2021-09-15 \
> +                     ../UA-Nodeset-UA
>  
> -SHARED_LIBS =        open62541       6.0
> +SHARED_LIBS =        open62541       7.0
>  
>  CATEGORIES = misc
>  
> @@ -17,11 +21,6 @@ PERMIT_PACKAGE =   Yes
>  
>  WANTLIB =            c crypto m pthread ssl tls
>  
> -SITES =                      https://github.com/open62541/open62541/
> -SITES.ua =           https://github.com/OPCFoundation/UA-Nodeset/archive/
> -DISTFILES =          open62541-{archive/refs/tags/v}${VERSION}.tar.gz
> -DISTFILES.ua=                UA-1.04.10-2021-09-15.tar.gz
> -
>  MODULES =            devel/cmake
>  
>  # needed to build unit tests and documentation
> @@ -35,6 +34,7 @@ BUILD_DEPENDS =             devel/check \
>  
>  CONFIGURE_ARGS =     -DCMAKE_BUILD_TYPE=RelWithDebInfo \
>                       -DOPEN62541_VERSION=v${VERSION} \
> +                     -DUA_NAMESPACE_ZERO=FULL \
>                       -DBUILD_SHARED_LIBS=ON \
>                       -DUA_ENABLE_ENCRYPTION=LIBRESSL \
>                       -DUA_ENABLE_AMALGAMATION=OFF \
> @@ -43,20 +43,5 @@ CONFIGURE_ARGS =   -DCMAKE_BUILD_TYPE=RelW
>                       -DUA_BUILD_UNIT_TESTS=ON
>  
>  DEBUG_PACKAGES =     ${BUILD_PACKAGES}
> -
> -FLAVORS =            ns0_full
> -FLAVOR ?=
> -
> -.if ${FLAVOR:Mns0_full}
> -CONFIGURE_ARGS +=    -DUA_NAMESPACE_ZERO=FULL
> -.else
> -CONFIGURE_ARGS +=    -DUA_NAMESPACE_ZERO=REDUCED
> -.endif
> -
> -.if ${FLAVOR:Mns0_full}
> -post-extract:
> -     rmdir ${WRKSRC}/deps/ua-nodeset/
> -     mv ${WRKDIR}/UA-Nodeset-UA-*/ ${WRKSRC}/deps/ua-nodeset/
> -.endif
>  
>  .include <bsd.port.mk>
> Index: open62541/distinfo
> ===================================================================
> RCS file: /cvs/ports/misc/open62541/distinfo,v
> diff -u -p -r1.16 distinfo
> --- open62541/distinfo        8 Jul 2026 16:11:16 -0000       1.16
> +++ open62541/distinfo        22 Jul 2026 16:37:39 -0000
> @@ -1,4 +1,4 @@
> -SHA256 (UA-1.04.10-2021-09-15.tar.gz) = 
> TaoMRz1MU01hSqnlSqhrcb7CREZnO550yF5a3SYkw5M=
> -SHA256 (open62541-1.3.18.tar.gz) = 
> gnM4J8RkaVyO2NX05/dG9uQ7KUj8k8o3px2a9iTErQM=
> -SIZE (UA-1.04.10-2021-09-15.tar.gz) = 5720040
> -SIZE (open62541-1.3.18.tar.gz) = 3899790
> +SHA256 (OPCFoundation-UA-Nodeset-UA-1.04.10-2021-09-15.tar.gz) = 
> TaoMRz1MU01hSqnlSqhrcb7CREZnO550yF5a3SYkw5M=
> +SHA256 (open62541-open62541-v1.3.18.tar.gz) = 
> gnM4J8RkaVyO2NX05/dG9uQ7KUj8k8o3px2a9iTErQM=
> +SIZE (OPCFoundation-UA-Nodeset-UA-1.04.10-2021-09-15.tar.gz) = 5720040
> +SIZE (open62541-open62541-v1.3.18.tar.gz) = 3899790
> Index: open62541/pkg/PFRAG.ns0_full
> ===================================================================
> RCS file: open62541/pkg/PFRAG.ns0_full
> diff -N open62541/pkg/PFRAG.ns0_full
> --- open62541/pkg/PFRAG.ns0_full      27 Jul 2023 09:26:03 -0000      1.4
> +++ /dev/null 1 Jan 1970 00:00:00 -0000
> @@ -1,382 +0,0 @@
> -share/open62541/tools/ua-nodeset/ADI/
> -share/open62541/tools/ua-nodeset/ADI/Opc.Ua.Adi.Classes.cs
> -share/open62541/tools/ua-nodeset/ADI/Opc.Ua.Adi.Constants.cs
> -share/open62541/tools/ua-nodeset/ADI/Opc.Ua.Adi.DataTypes.cs
> -share/open62541/tools/ua-nodeset/ADI/Opc.Ua.Adi.NodeSet2.xml
> -share/open62541/tools/ua-nodeset/ADI/Opc.Ua.Adi.PredefinedNodes.uanodes
> -share/open62541/tools/ua-nodeset/ADI/Opc.Ua.Adi.PredefinedNodes.xml
> -share/open62541/tools/ua-nodeset/ADI/Opc.Ua.Adi.Types.bsd
> -share/open62541/tools/ua-nodeset/ADI/Opc.Ua.Adi.Types.xsd
> -share/open62541/tools/ua-nodeset/ADI/OpcUaAdiModel.csv
> -share/open62541/tools/ua-nodeset/ADI/OpcUaAdiModel.xml
> -share/open62541/tools/ua-nodeset/AML/
> -share/open62541/tools/ua-nodeset/AML/Opc.Ua.AMLBaseTypes.NodeSet2.xml
> -share/open62541/tools/ua-nodeset/AML/Opc.Ua.AMLLibraries.NodeSet2.xml
> -share/open62541/tools/ua-nodeset/AML/Topology.aml
> -share/open62541/tools/ua-nodeset/AML/Topology.xml
> -share/open62541/tools/ua-nodeset/AnsiC/
> -share/open62541/tools/ua-nodeset/AnsiC/Opc.Ua.Endpoints.wsdl
> -share/open62541/tools/ua-nodeset/AnsiC/Opc.Ua.Services.wsdl
> -share/open62541/tools/ua-nodeset/AnsiC/opcua_attributes.h
> -share/open62541/tools/ua-nodeset/AnsiC/opcua_browsenames.h
> -share/open62541/tools/ua-nodeset/AnsiC/opcua_clientapi.c
> -share/open62541/tools/ua-nodeset/AnsiC/opcua_clientapi.h
> -share/open62541/tools/ua-nodeset/AnsiC/opcua_exclusions.h
> -share/open62541/tools/ua-nodeset/AnsiC/opcua_identifiers.h
> -share/open62541/tools/ua-nodeset/AnsiC/opcua_serverapi.c
> -share/open62541/tools/ua-nodeset/AnsiC/opcua_serverapi.h
> -share/open62541/tools/ua-nodeset/AnsiC/opcua_statuscodes.h
> -share/open62541/tools/ua-nodeset/AnsiC/opcua_types.c
> -share/open62541/tools/ua-nodeset/AnsiC/opcua_types.h
> -share/open62541/tools/ua-nodeset/AutoID/
> -share/open62541/tools/ua-nodeset/AutoID/Opc.Ua.AutoID.NodeIds.csv
> -share/open62541/tools/ua-nodeset/AutoID/Opc.Ua.AutoID.NodeSet2.xml
> -share/open62541/tools/ua-nodeset/CAS/
> -share/open62541/tools/ua-nodeset/CAS/Opc.Ua.CAS.NodeIds.csv
> -share/open62541/tools/ua-nodeset/CAS/Opc.Ua.CAS.NodeSet2.xml
> -share/open62541/tools/ua-nodeset/CAS/Opc.Ua.CAS.bsd
> -share/open62541/tools/ua-nodeset/CAS/Opc.Ua.CAS.xsd
> -share/open62541/tools/ua-nodeset/CNC/
> -share/open62541/tools/ua-nodeset/CNC/Opc.Ua.CNC.NodeIds.csv
> -share/open62541/tools/ua-nodeset/CNC/Opc.Ua.CNC.NodeSet.xml
> -share/open62541/tools/ua-nodeset/CSPPlusForMachine/
> -share/open62541/tools/ua-nodeset/CSPPlusForMachine/Opc.Ua.CSPPlusForMachine.NodeIds.csv
> -share/open62541/tools/ua-nodeset/CSPPlusForMachine/Opc.Ua.CSPPlusForMachine.NodeSet2.xml
> -share/open62541/tools/ua-nodeset/CommercialKitchenEquipment/
> -share/open62541/tools/ua-nodeset/CommercialKitchenEquipment/NodeIds.csv
> -share/open62541/tools/ua-nodeset/CommercialKitchenEquipment/Opc.Ua.CommercialKitchenEquipment.NodeSet2.xml
> -share/open62541/tools/ua-nodeset/DEXPI/
> -share/open62541/tools/ua-nodeset/DEXPI/Opc.Ua.DEXPI.NodeIds.csv
> -share/open62541/tools/ua-nodeset/DEXPI/Opc.Ua.DEXPI.NodeSet2.xml
> -share/open62541/tools/ua-nodeset/DI/
> -share/open62541/tools/ua-nodeset/DI/Opc.Ua.Di.Classes.cs
> -share/open62541/tools/ua-nodeset/DI/Opc.Ua.Di.Constants.cs
> -share/open62541/tools/ua-nodeset/DI/Opc.Ua.Di.DataTypes.cs
> -share/open62541/tools/ua-nodeset/DI/Opc.Ua.Di.NodeSet2.xml
> -share/open62541/tools/ua-nodeset/DI/Opc.Ua.Di.PredefinedNodes.uanodes
> -share/open62541/tools/ua-nodeset/DI/Opc.Ua.Di.PredefinedNodes.xml
> -share/open62541/tools/ua-nodeset/DI/Opc.Ua.Di.Types.bsd
> -share/open62541/tools/ua-nodeset/DI/Opc.Ua.Di.Types.xsd
> -share/open62541/tools/ua-nodeset/DI/OpcUaDiModel.csv
> -share/open62541/tools/ua-nodeset/DI/OpcUaDiModel.xml
> -share/open62541/tools/ua-nodeset/DotNet/
> -share/open62541/tools/ua-nodeset/DotNet/Opc.Ua.Attributes.cs
> -share/open62541/tools/ua-nodeset/DotNet/Opc.Ua.Channels.cs
> -share/open62541/tools/ua-nodeset/DotNet/Opc.Ua.Client.cs
> -share/open62541/tools/ua-nodeset/DotNet/Opc.Ua.Endpoints.cs
> -share/open62541/tools/ua-nodeset/DotNet/Opc.Ua.Endpoints.wsdl
> -share/open62541/tools/ua-nodeset/DotNet/Opc.Ua.Interfaces.cs
> -share/open62541/tools/ua-nodeset/DotNet/Opc.Ua.Messages.cs
> -share/open62541/tools/ua-nodeset/DotNet/Opc.Ua.ServerBase.cs
> -share/open62541/tools/ua-nodeset/DotNet/Opc.Ua.Services.wsdl
> -share/open62541/tools/ua-nodeset/DotNet/Opc.Ua.StatusCodes.cs
> -share/open62541/tools/ua-nodeset/DotNet/Opc.Ua.StatusCodes.csv
> -share/open62541/tools/ua-nodeset/FDI/
> -share/open62541/tools/ua-nodeset/FDI/Opc.Ua.Fdi5.Classes.cs
> -share/open62541/tools/ua-nodeset/FDI/Opc.Ua.Fdi5.Constants.cs
> -share/open62541/tools/ua-nodeset/FDI/Opc.Ua.Fdi5.DataTypes.cs
> -share/open62541/tools/ua-nodeset/FDI/Opc.Ua.Fdi5.NodeSet2.xml
> -share/open62541/tools/ua-nodeset/FDI/Opc.Ua.Fdi5.PredefinedNodes.uanodes
> -share/open62541/tools/ua-nodeset/FDI/Opc.Ua.Fdi5.PredefinedNodes.xml
> -share/open62541/tools/ua-nodeset/FDI/Opc.Ua.Fdi5.Types.bsd
> -share/open62541/tools/ua-nodeset/FDI/Opc.Ua.Fdi5.Types.xsd
> -share/open62541/tools/ua-nodeset/FDI/Opc.Ua.Fdi7.Classes.cs
> -share/open62541/tools/ua-nodeset/FDI/Opc.Ua.Fdi7.Constants.cs
> -share/open62541/tools/ua-nodeset/FDI/Opc.Ua.Fdi7.DataTypes.cs
> -share/open62541/tools/ua-nodeset/FDI/Opc.Ua.Fdi7.NodeSet2.xml
> -share/open62541/tools/ua-nodeset/FDI/Opc.Ua.Fdi7.PredefinedNodes.uanodes
> -share/open62541/tools/ua-nodeset/FDI/Opc.Ua.Fdi7.PredefinedNodes.xml
> -share/open62541/tools/ua-nodeset/FDI/Opc.Ua.Fdi7.Types.bsd
> -share/open62541/tools/ua-nodeset/FDI/Opc.Ua.Fdi7.Types.xsd
> -share/open62541/tools/ua-nodeset/FDI/OpcUaFdiPart5Model.csv
> -share/open62541/tools/ua-nodeset/FDI/OpcUaFdiPart5Model.xml
> -share/open62541/tools/ua-nodeset/FDI/OpcUaFdiPart7Model.csv
> -share/open62541/tools/ua-nodeset/FDI/OpcUaFdiPart7Model.xml
> -share/open62541/tools/ua-nodeset/FDT/
> -share/open62541/tools/ua-nodeset/FDT/Opc.Ua.FDT.NodeSet.csv
> -share/open62541/tools/ua-nodeset/FDT/Opc.Ua.FDT.NodeSet.xml
> -share/open62541/tools/ua-nodeset/FDT/Opc.Ua.FDT.NodeSet.xsd
> -share/open62541/tools/ua-nodeset/GDS/
> -share/open62541/tools/ua-nodeset/GDS/Opc.Ua.Gds.Classes.cs
> -share/open62541/tools/ua-nodeset/GDS/Opc.Ua.Gds.Constants.cs
> -share/open62541/tools/ua-nodeset/GDS/Opc.Ua.Gds.DataTypes.cs
> -share/open62541/tools/ua-nodeset/GDS/Opc.Ua.Gds.NodeSet2.Part12.xml
> -share/open62541/tools/ua-nodeset/GDS/Opc.Ua.Gds.NodeSet2.xml
> -share/open62541/tools/ua-nodeset/GDS/Opc.Ua.Gds.PredefinedNodes.uanodes
> -share/open62541/tools/ua-nodeset/GDS/Opc.Ua.Gds.PredefinedNodes.xml
> -share/open62541/tools/ua-nodeset/GDS/Opc.Ua.Gds.Types.bsd
> -share/open62541/tools/ua-nodeset/GDS/Opc.Ua.Gds.Types.xsd
> -share/open62541/tools/ua-nodeset/GDS/OpcUaGdsModel.csv
> -share/open62541/tools/ua-nodeset/GDS/OpcUaGdsModel.xml
> -share/open62541/tools/ua-nodeset/I4AAS/
> -share/open62541/tools/ua-nodeset/I4AAS/NodeIds.csv
> -share/open62541/tools/ua-nodeset/I4AAS/Opc.Ua.I4AAS.NodeSet2.xml
> -share/open62541/tools/ua-nodeset/IA/
> -share/open62541/tools/ua-nodeset/IA/Opc.Ua.IA.NodeIds.csv
> -share/open62541/tools/ua-nodeset/IA/Opc.Ua.IA.NodeSet2.bsd
> -share/open62541/tools/ua-nodeset/IA/Opc.Ua.IA.NodeSet2.csv
> -share/open62541/tools/ua-nodeset/IA/Opc.Ua.IA.NodeSet2.examples.csv
> -share/open62541/tools/ua-nodeset/IA/Opc.Ua.IA.NodeSet2.examples.xml
> -share/open62541/tools/ua-nodeset/IA/Opc.Ua.IA.NodeSet2.xml
> -share/open62541/tools/ua-nodeset/IA/Opc.Ua.IA.NodeSet2.xsd
> -share/open62541/tools/ua-nodeset/IA/Opc.Ua.IA.Types.bsd
> -share/open62541/tools/ua-nodeset/IA/Opc.Ua.IA.Types.xsd
> -share/open62541/tools/ua-nodeset/IA/Opc.Ua.IA.ua
> -share/open62541/tools/ua-nodeset/IEC61850/
> -share/open62541/tools/ua-nodeset/IEC61850/Opc.Ua.IEC61850-6.NodeSet2.xml
> -share/open62541/tools/ua-nodeset/IEC61850/Opc.Ua.IEC61850-7-3.NodeSet2.xml
> -share/open62541/tools/ua-nodeset/IEC61850/Opc.Ua.IEC61850-7-4.NodeSet2.xml
> -share/open62541/tools/ua-nodeset/IOLink/
> -share/open62541/tools/ua-nodeset/IOLink/EngineeringUnits.csv
> -share/open62541/tools/ua-nodeset/IOLink/Opc.Ua.IOLink.NodeIds.csv
> -share/open62541/tools/ua-nodeset/IOLink/Opc.Ua.IOLink.NodeSet2.xml
> -share/open62541/tools/ua-nodeset/IOLink/Opc.Ua.IOLinkIODD.NodeIds.csv
> -share/open62541/tools/ua-nodeset/IOLink/Opc.Ua.IOLinkIODD.NodeSet2.xml
> -share/open62541/tools/ua-nodeset/ISA-95/
> -share/open62541/tools/ua-nodeset/ISA-95/OPC.ISA95.Types.bsd
> -share/open62541/tools/ua-nodeset/ISA-95/OPC.ISA95.Types.xsd
> -share/open62541/tools/ua-nodeset/ISA-95/Opc.ISA95.NodeSet2.xml
> -share/open62541/tools/ua-nodeset/ISA95-JOBCONTROL/
> -share/open62541/tools/ua-nodeset/ISA95-JOBCONTROL/opc.ua.isa95-jobcontrol.nodeset2.bsd
> -share/open62541/tools/ua-nodeset/ISA95-JOBCONTROL/opc.ua.isa95-jobcontrol.nodeset2.csv
> -share/open62541/tools/ua-nodeset/ISA95-JOBCONTROL/opc.ua.isa95-jobcontrol.nodeset2.xml
> -share/open62541/tools/ua-nodeset/ISA95-JOBCONTROL/opc.ua.isa95-jobcontrol.nodeset2.xsd
> -share/open62541/tools/ua-nodeset/MDIS/
> -share/open62541/tools/ua-nodeset/MDIS/MDIS.csv
> -share/open62541/tools/ua-nodeset/MDIS/MDIS.xml
> -share/open62541/tools/ua-nodeset/MDIS/Opc.MDIS.Classes.cs
> -share/open62541/tools/ua-nodeset/MDIS/Opc.MDIS.Constants.cs
> -share/open62541/tools/ua-nodeset/MDIS/Opc.MDIS.DataTypes.cs
> -share/open62541/tools/ua-nodeset/MDIS/Opc.MDIS.NodeSet2.xml
> -share/open62541/tools/ua-nodeset/MDIS/Opc.MDIS.PredefinedNodes.uanodes
> -share/open62541/tools/ua-nodeset/MDIS/Opc.MDIS.PredefinedNodes.xml
> -share/open62541/tools/ua-nodeset/MDIS/Opc.MDIS.Types.bsd
> -share/open62541/tools/ua-nodeset/MDIS/Opc.MDIS.Types.xsd
> -share/open62541/tools/ua-nodeset/MTConnect/
> -share/open62541/tools/ua-nodeset/MTConnect/MTConnect.NodeIds.csv
> -share/open62541/tools/ua-nodeset/MTConnect/MTConnectModel.csv
> -share/open62541/tools/ua-nodeset/MTConnect/MTConnectModel.xml
> -share/open62541/tools/ua-nodeset/MTConnect/Opc.Ua.MTConnect.Classes.cs
> -share/open62541/tools/ua-nodeset/MTConnect/Opc.Ua.MTConnect.Constants.cs
> -share/open62541/tools/ua-nodeset/MTConnect/Opc.Ua.MTConnect.DataTypes.cs
> -share/open62541/tools/ua-nodeset/MTConnect/Opc.Ua.MTConnect.NodeSet2.xml
> -share/open62541/tools/ua-nodeset/MTConnect/Opc.Ua.MTConnect.PredefinedNodes.uanodes
> -share/open62541/tools/ua-nodeset/MTConnect/Opc.Ua.MTConnect.PredefinedNodes.xml
> -share/open62541/tools/ua-nodeset/MTConnect/Opc.Ua.MTConnect.Types.bsd
> -share/open62541/tools/ua-nodeset/MTConnect/Opc.Ua.MTConnect.Types.xsd
> -share/open62541/tools/ua-nodeset/MachineTool/
> -share/open62541/tools/ua-nodeset/MachineTool/Machinetool-Example.NodeIds.csv
> -share/open62541/tools/ua-nodeset/MachineTool/Machinetool-Example.xml
> -share/open62541/tools/ua-nodeset/MachineTool/NodeIds.csv
> -share/open62541/tools/ua-nodeset/MachineTool/Opc.Ua.MachineTool.NodeSet2.bsd
> -share/open62541/tools/ua-nodeset/MachineTool/Opc.Ua.MachineTool.NodeSet2.xml
> -share/open62541/tools/ua-nodeset/MachineTool/Opc.Ua.MachineTool.NodeSet2.xsd
> -share/open62541/tools/ua-nodeset/MachineVision/
> -share/open62541/tools/ua-nodeset/MachineVision/NodeIds.csv
> -share/open62541/tools/ua-nodeset/MachineVision/Opc.Ua.MachineVision.NodeSet2.xml
> -share/open62541/tools/ua-nodeset/Machinery/
> -share/open62541/tools/ua-nodeset/Machinery/NodeIds.csv
> -share/open62541/tools/ua-nodeset/Machinery/Opc.Ua.Machinery.NodeSet2.xml
> -share/open62541/tools/ua-nodeset/OpenSCS/
> -share/open62541/tools/ua-nodeset/OpenSCS/NodeIds.csv
> -share/open62541/tools/ua-nodeset/OpenSCS/Opc.Ua.OPENSCS.NodeSet2.xml
> -share/open62541/tools/ua-nodeset/OpenSCS/Opc.Ua.OPENSCS.Types.bsd
> -share/open62541/tools/ua-nodeset/OpenSCS/Opc.Ua.OPENSCS.Types.xsd
> -share/open62541/tools/ua-nodeset/PADIM/
> -share/open62541/tools/ua-nodeset/PADIM/Opc.Ua.IRDI.NodeSet2.xml
> -share/open62541/tools/ua-nodeset/PADIM/Opc.Ua.PADIM.NodeIds.csv
> -share/open62541/tools/ua-nodeset/PADIM/Opc.Ua.PADIM.NodeSet2.xml
> -share/open62541/tools/ua-nodeset/PLCopen/
> -share/open62541/tools/ua-nodeset/PLCopen/Opc.Ua.PLCopen.NodeSet2_V1.02.csv
> -share/open62541/tools/ua-nodeset/PLCopen/Opc.Ua.PLCopen.NodeSet2_V1.02.xml
> -share/open62541/tools/ua-nodeset/PNEM/
> -share/open62541/tools/ua-nodeset/PNEM/NodeIds.csv
> -share/open62541/tools/ua-nodeset/PNEM/Opc.Ua.PnEm.NodeSet2.xml
> -share/open62541/tools/ua-nodeset/POWERLINK/
> -share/open62541/tools/ua-nodeset/POWERLINK/Opc.Ua.POWERLINK.NodeIds.csv
> -share/open62541/tools/ua-nodeset/POWERLINK/Opc.Ua.POWERLINK.NodeSet2.xml
> -share/open62541/tools/ua-nodeset/PROFINET/
> -share/open62541/tools/ua-nodeset/PROFINET/Opc.Ua.Pn.NodeIds.csv
> -share/open62541/tools/ua-nodeset/PROFINET/Opc.Ua.Pn.NodeSet2.xml
> -share/open62541/tools/ua-nodeset/PROFINET/Opc.Ua.Pn.Types.bsd
> -share/open62541/tools/ua-nodeset/PROFINET/Opc.Ua.Pn.Types.xsd
> -share/open62541/tools/ua-nodeset/PackML/
> -share/open62541/tools/ua-nodeset/PackML/Opc.Ua.PackML.NodeSet2.xml
> -share/open62541/tools/ua-nodeset/PackML/PackML.NodeIds.csv
> -share/open62541/tools/ua-nodeset/PlasticsRubber/
> -share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/
> -share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/Calender/
> -share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/Calender/1.00/
> -share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/Calender/1.00/NodeIds.csv
> -share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/Calender/1.00/Opc.Ua.PlasticsRubber.Extrusion.Calender.NodeSet2.xml
> -share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/Calibrator/
> -share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/Calibrator/1.00/
> -share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/Calibrator/1.00/NodeIds.csv
> -share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/Calibrator/1.00/Opc.Ua.PlasticsRubber.Extrusion.Calibrator.NodeSet2.xml
> -share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/Corrugator/
> -share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/Corrugator/1.00/
> -share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/Corrugator/1.00/NodeIds.csv
> -share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/Corrugator/1.00/Opc.Ua.PlasticsRubber.Extrusion.Corrugator.NodeSet2.xml
> -share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/Cutter/
> -share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/Cutter/1.00/
> -share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/Cutter/1.00/NodeIds.csv
> -share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/Cutter/1.00/Opc.Ua.PlasticsRubber.Extrusion.Cutter.NodeSet2.xml
> -share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/Die/
> -share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/Die/1.00/
> -share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/Die/1.00/NodeIds.csv
> -share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/Die/1.00/Opc.Ua.PlasticsRubber.Extrusion.Die.NodeSet2.xml
> -share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/Extruder/
> -share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/Extruder/1.00/
> -share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/Extruder/1.00/NodeIds.csv
> -share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/Extruder/1.00/Opc.Ua.PlasticsRubber.Extrusion.Extruder.NodeSet2.xml
> -share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/ExtrusionLine/
> -share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/ExtrusionLine/1.00/
> -share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/ExtrusionLine/1.00/NodeIds.csv
> -share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/ExtrusionLine/1.00/Opc.Ua.PlasticsRubber.Extrusion.ExtrusionLine.NodeSet2.xml
> -share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/Filter/
> -share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/Filter/1.00/
> -share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/Filter/1.00/NodeIds.csv
> -share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/Filter/1.00/Opc.Ua.PlasticsRubber.Extrusion.Filter.NodeSet2.xml
> -share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/GeneralTypes/
> -share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/GeneralTypes/1.00/
> -share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/GeneralTypes/1.00/NodeIds.csv
> -share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/GeneralTypes/1.00/Opc.Ua.PlasticsRubber.Extrusion.GeneralTypes.NodeSet2.xml
> -share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/GeneralTypes/1.01/
> -share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/GeneralTypes/1.01/NodeIds.csv
> -share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/GeneralTypes/1.01/Opc.Ua.PlasticsRubber.Extrusion.GeneralTypes.NodeSet2.bsd
> -share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/GeneralTypes/1.01/Opc.Ua.PlasticsRubber.Extrusion.GeneralTypes.NodeSet2.xml
> -share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/GeneralTypes/1.01/Opc.Ua.PlasticsRubber.Extrusion.GeneralTypes.NodeSet2.xsd
> -share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/HaulOff/
> -share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/HaulOff/1.00/
> -share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/HaulOff/1.00/NodeIds.csv
> -share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/HaulOff/1.00/Opc.Ua.PlasticsRubber.Extrusion.HaulOff.NodeSet2.xml
> -share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/MeltPump/
> -share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/MeltPump/1.00/
> -share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/MeltPump/1.00/NodeIds.csv
> -share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/MeltPump/1.00/Opc.Ua.PlasticsRubber.Extrusion.MeltPump.NodeSet2.xml
> -share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/Pelletizer/
> -share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/Pelletizer/1.00/
> -share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/Pelletizer/1.00/NodeIds.csv
> -share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/Pelletizer/1.00/Opc.Ua.PlasticsRubber.Extrusion.Pelletizer.NodeSet2.xml
> -share/open62541/tools/ua-nodeset/PlasticsRubber/GeneralTypes/
> -share/open62541/tools/ua-nodeset/PlasticsRubber/GeneralTypes/1.02/
> -share/open62541/tools/ua-nodeset/PlasticsRubber/GeneralTypes/1.02/NodeIds.csv
> -share/open62541/tools/ua-nodeset/PlasticsRubber/GeneralTypes/1.02/Opc.Ua.PlasticsRubber.GeneralTypes.NodeSet2.bsd
> -share/open62541/tools/ua-nodeset/PlasticsRubber/GeneralTypes/1.02/Opc.Ua.PlasticsRubber.GeneralTypes.NodeSet2.xml
> -share/open62541/tools/ua-nodeset/PlasticsRubber/GeneralTypes/1.02/Opc.Ua.PlasticsRubber.GeneralTypes.NodeSet2.xsd
> -share/open62541/tools/ua-nodeset/PlasticsRubber/GeneralTypes/1.03/
> -share/open62541/tools/ua-nodeset/PlasticsRubber/GeneralTypes/1.03/NodeIds.csv
> -share/open62541/tools/ua-nodeset/PlasticsRubber/GeneralTypes/1.03/Opc.Ua.PlasticsRubber.GeneralTypes.NodeSet2.bsd
> -share/open62541/tools/ua-nodeset/PlasticsRubber/GeneralTypes/1.03/Opc.Ua.PlasticsRubber.GeneralTypes.NodeSet2.xml
> -share/open62541/tools/ua-nodeset/PlasticsRubber/GeneralTypes/1.03/Opc.Ua.PlasticsRubber.GeneralTypes.NodeSet2.xsd
> -share/open62541/tools/ua-nodeset/PlasticsRubber/GeneralTypes/Opc.Ua.PlasticsRubber.GeneralTypes.NodeSet2.bsd
> -share/open62541/tools/ua-nodeset/PlasticsRubber/GeneralTypes/Opc.Ua.PlasticsRubber.GeneralTypes.NodeSet2.xsd
> -share/open62541/tools/ua-nodeset/PlasticsRubber/HotRunner/
> -share/open62541/tools/ua-nodeset/PlasticsRubber/HotRunner/1.00/
> -share/open62541/tools/ua-nodeset/PlasticsRubber/HotRunner/1.00/NodeIds.csv
> -share/open62541/tools/ua-nodeset/PlasticsRubber/HotRunner/1.00/Opc.Ua.PlasticsRubber.HotRunner.NodeSet2.bsd
> -share/open62541/tools/ua-nodeset/PlasticsRubber/HotRunner/1.00/Opc.Ua.PlasticsRubber.HotRunner.NodeSet2.xml
> -share/open62541/tools/ua-nodeset/PlasticsRubber/HotRunner/1.00/Opc.Ua.PlasticsRubber.HotRunner.NodeSet2.xsd
> -share/open62541/tools/ua-nodeset/PlasticsRubber/IMM2MES/
> -share/open62541/tools/ua-nodeset/PlasticsRubber/IMM2MES/1.01/
> -share/open62541/tools/ua-nodeset/PlasticsRubber/IMM2MES/1.01/NodeIds.csv
> -share/open62541/tools/ua-nodeset/PlasticsRubber/IMM2MES/1.01/Opc.Ua.PlasticsRubber.IMM2MES.NodeSet2.bsd
> -share/open62541/tools/ua-nodeset/PlasticsRubber/IMM2MES/1.01/Opc.Ua.PlasticsRubber.IMM2MES.NodeSet2.xml
> -share/open62541/tools/ua-nodeset/PlasticsRubber/IMM2MES/1.01/Opc.Ua.PlasticsRubber.IMM2MES.NodeSet2.xsd
> -share/open62541/tools/ua-nodeset/PlasticsRubber/LDS/
> -share/open62541/tools/ua-nodeset/PlasticsRubber/LDS/1.00/
> -share/open62541/tools/ua-nodeset/PlasticsRubber/LDS/1.00/NodeIds.csv
> -share/open62541/tools/ua-nodeset/PlasticsRubber/LDS/1.00/Opc.Ua.PlasticsRubber.LDS.NodeSet2.bsd
> -share/open62541/tools/ua-nodeset/PlasticsRubber/LDS/1.00/Opc.Ua.PlasticsRubber.LDS.NodeSet2.xml
> -share/open62541/tools/ua-nodeset/PlasticsRubber/LDS/1.00/Opc.Ua.PlasticsRubber.LDS.NodeSet2.xsd
> -share/open62541/tools/ua-nodeset/PlasticsRubber/TCD/
> -share/open62541/tools/ua-nodeset/PlasticsRubber/TCD/1.01/
> -share/open62541/tools/ua-nodeset/PlasticsRubber/TCD/1.01/NodeIds.csv
> -share/open62541/tools/ua-nodeset/PlasticsRubber/TCD/1.01/Opc.Ua.PlasticsRubber.TCD.NodeSet2.xml
> -share/open62541/tools/ua-nodeset/PublishNodeSets.bat
> -share/open62541/tools/ua-nodeset/Pumps/
> -share/open62541/tools/ua-nodeset/Pumps/Opc.Ua.Pumps.NodeSet2.bsd
> -share/open62541/tools/ua-nodeset/Pumps/Opc.Ua.Pumps.NodeSet2.csv
> -share/open62541/tools/ua-nodeset/Pumps/Opc.Ua.Pumps.NodeSet2.xml
> -share/open62541/tools/ua-nodeset/Pumps/Opc.Ua.Pumps.NodeSet2.xsd
> -share/open62541/tools/ua-nodeset/Pumps/instanceexample.xml
> -share/open62541/tools/ua-nodeset/Robotics/
> -share/open62541/tools/ua-nodeset/Robotics/NodeIds.csv
> -share/open62541/tools/ua-nodeset/Robotics/Opc.Ua.Robotics.Classes.cs
> -share/open62541/tools/ua-nodeset/Robotics/Opc.Ua.Robotics.Constants.cs
> -share/open62541/tools/ua-nodeset/Robotics/Opc.Ua.Robotics.DataTypes.cs
> -share/open62541/tools/ua-nodeset/Robotics/Opc.Ua.Robotics.NodeIds.csv
> -share/open62541/tools/ua-nodeset/Robotics/Opc.Ua.Robotics.NodeSet2.xml
> -share/open62541/tools/ua-nodeset/Robotics/Opc.Ua.Robotics.Types.bsd
> -share/open62541/tools/ua-nodeset/Robotics/Opc.Ua.Robotics.Types.xsd
> -share/open62541/tools/ua-nodeset/Robotics/OpcUaRoboticsModel.xml
> -share/open62541/tools/ua-nodeset/Safety/
> -share/open62541/tools/ua-nodeset/Safety/Opc.Ua.Safety.NodeIds.csv
> -share/open62541/tools/ua-nodeset/Safety/Opc.Ua.Safety.NodeSet2.xml
> -share/open62541/tools/ua-nodeset/Safety/Opc.Ua.Safety.Types.bsd
> -share/open62541/tools/ua-nodeset/Safety/Opc.Ua.Safety.Types.xsd
> -share/open62541/tools/ua-nodeset/Safety/opc.ua.safety.nodeset2.ua
> -share/open62541/tools/ua-nodeset/Safety/opc_ua_safety_nodeset2.tt2pro
> -share/open62541/tools/ua-nodeset/Scales/
> -share/open62541/tools/ua-nodeset/Scales/Opc.Ua.Scales.NodeIds.csv
> -share/open62541/tools/ua-nodeset/Scales/Opc.Ua.Scales.NodeSet2.xml
> -share/open62541/tools/ua-nodeset/Schema/
> -share/open62541/tools/ua-nodeset/Schema/AttributeIds.csv
> -share/open62541/tools/ua-nodeset/Schema/NodeIds.csv
> -share/open62541/tools/ua-nodeset/Schema/OPCBinarySchema.xsd
> -share/open62541/tools/ua-nodeset/Schema/Opc.Ua.Classes.cs
> -share/open62541/tools/ua-nodeset/Schema/Opc.Ua.Constants.cs
> -share/open62541/tools/ua-nodeset/Schema/Opc.Ua.DataTypes.cs
> -share/open62541/tools/ua-nodeset/Schema/Opc.Ua.NodeIds.Services.csv
> -share/open62541/tools/ua-nodeset/Schema/Opc.Ua.NodeIds.csv
> -share/open62541/tools/ua-nodeset/Schema/Opc.Ua.NodeSet.xml
> -share/open62541/tools/ua-nodeset/Schema/Opc.Ua.NodeSet2.Part10.xml
> -share/open62541/tools/ua-nodeset/Schema/Opc.Ua.NodeSet2.Part11.xml
> -share/open62541/tools/ua-nodeset/Schema/Opc.Ua.NodeSet2.Part12.xml
> -share/open62541/tools/ua-nodeset/Schema/Opc.Ua.NodeSet2.Part13.xml
> -share/open62541/tools/ua-nodeset/Schema/Opc.Ua.NodeSet2.Part14.xml
> -share/open62541/tools/ua-nodeset/Schema/Opc.Ua.NodeSet2.Part17.xml
> -share/open62541/tools/ua-nodeset/Schema/Opc.Ua.NodeSet2.Part19.xml
> -share/open62541/tools/ua-nodeset/Schema/Opc.Ua.NodeSet2.Part22.xml
> -share/open62541/tools/ua-nodeset/Schema/Opc.Ua.NodeSet2.Part3.xml
> -share/open62541/tools/ua-nodeset/Schema/Opc.Ua.NodeSet2.Part4.xml
> -share/open62541/tools/ua-nodeset/Schema/Opc.Ua.NodeSet2.Part5.xml
> -share/open62541/tools/ua-nodeset/Schema/Opc.Ua.NodeSet2.Part8.xml
> -share/open62541/tools/ua-nodeset/Schema/Opc.Ua.NodeSet2.Part9.xml
> -share/open62541/tools/ua-nodeset/Schema/Opc.Ua.NodeSet2.Services.xml
> -share/open62541/tools/ua-nodeset/Schema/Opc.Ua.NodeSet2.xml
> -share/open62541/tools/ua-nodeset/Schema/Opc.Ua.PredefinedNodes.uanodes
> -share/open62541/tools/ua-nodeset/Schema/Opc.Ua.PredefinedNodes.xml
> -share/open62541/tools/ua-nodeset/Schema/Opc.Ua.Types.bsd
> -share/open62541/tools/ua-nodeset/Schema/Opc.Ua.Types.xsd
> -share/open62541/tools/ua-nodeset/Schema/SecuredApplication.xsd
> -share/open62541/tools/ua-nodeset/Schema/ServerCapabilities.csv
> -share/open62541/tools/ua-nodeset/Schema/StatusCode.csv
> -share/open62541/tools/ua-nodeset/Schema/UANodeSet.xsd
> -share/open62541/tools/ua-nodeset/Schema/UNECE_to_OPCUA.csv
> -share/open62541/tools/ua-nodeset/Schema/rec20_latest_a1.csv
> -share/open62541/tools/ua-nodeset/Schema/rec20_latest_a2-3.csv
> -share/open62541/tools/ua-nodeset/Sercos/
> -share/open62541/tools/ua-nodeset/Sercos/Sercos.Classes.cs
> -share/open62541/tools/ua-nodeset/Sercos/Sercos.Constants.cs
> -share/open62541/tools/ua-nodeset/Sercos/Sercos.DataTypes.cs
> -share/open62541/tools/ua-nodeset/Sercos/Sercos.NodeSet2.xml
> -share/open62541/tools/ua-nodeset/Sercos/Sercos.PredefinedNodes.uanodes
> -share/open62541/tools/ua-nodeset/Sercos/Sercos.PredefinedNodes.xml
> -share/open62541/tools/ua-nodeset/Sercos/Sercos.Types.bsd
> -share/open62541/tools/ua-nodeset/Sercos/Sercos.Types.xsd
> -share/open62541/tools/ua-nodeset/Sercos/SercosModel.csv
> -share/open62541/tools/ua-nodeset/Sercos/SercosModel.xml
> -share/open62541/tools/ua-nodeset/TMC/
> -share/open62541/tools/ua-nodeset/TMC/Opc.Ua.TMC.NodeIds.csv
> -share/open62541/tools/ua-nodeset/TMC/Opc.Ua.TMC.NodeSet2.bsd
> -share/open62541/tools/ua-nodeset/TMC/Opc.Ua.TMC.NodeSet2.xml
> -share/open62541/tools/ua-nodeset/TMC/Opc.Ua.TMC.NodeSet2.xsd
> -share/open62541/tools/ua-nodeset/Weihenstephan/
> -share/open62541/tools/ua-nodeset/Weihenstephan/NodeIds.csv
> -share/open62541/tools/ua-nodeset/Weihenstephan/Opc.Ua.Weihenstephan.NodeSet2.bsd
> -share/open62541/tools/ua-nodeset/Weihenstephan/Opc.Ua.Weihenstephan.NodeSet2.xml
> -share/open62541/tools/ua-nodeset/Weihenstephan/Opc.Ua.Weihenstephan.NodeSet2.xsd
> -share/open62541/tools/ua-nodeset/readme.md
> -share/open62541/tools/ua-nodeset/v1.03 NodeSet Errata 2016-04-16.txt
> -share/open62541/tools/ua-nodeset/v1.04 NodeSet Errata.txt
> Index: open62541/pkg/PLIST
> ===================================================================
> RCS file: /cvs/ports/misc/open62541/pkg/PLIST,v
> diff -u -p -r1.6 PLIST
> --- open62541/pkg/PLIST       27 Jul 2023 09:26:03 -0000      1.6
> +++ open62541/pkg/PLIST       22 Jul 2026 16:37:39 -0000
> @@ -1,3 +1,4 @@
> +@pkgpath misc/open62541,ns0_full
>  include/aa_tree.h
>  @comment include/ms_stdint.h
>  include/open62541/
> @@ -214,4 +215,385 @@ share/open62541/tools/schema/datatypes_s
>  share/open62541/tools/schema/datatypes_transport.txt
>  share/open62541/tools/schema/datatypes_typedescription.txt
>  share/open62541/tools/ua-nodeset/
> -%%ns0_full%%
> +share/open62541/tools/ua-nodeset/ADI/
> +share/open62541/tools/ua-nodeset/ADI/Opc.Ua.Adi.Classes.cs
> +share/open62541/tools/ua-nodeset/ADI/Opc.Ua.Adi.Constants.cs
> +share/open62541/tools/ua-nodeset/ADI/Opc.Ua.Adi.DataTypes.cs
> +share/open62541/tools/ua-nodeset/ADI/Opc.Ua.Adi.NodeSet2.xml
> +share/open62541/tools/ua-nodeset/ADI/Opc.Ua.Adi.PredefinedNodes.uanodes
> +share/open62541/tools/ua-nodeset/ADI/Opc.Ua.Adi.PredefinedNodes.xml
> +share/open62541/tools/ua-nodeset/ADI/Opc.Ua.Adi.Types.bsd
> +share/open62541/tools/ua-nodeset/ADI/Opc.Ua.Adi.Types.xsd
> +share/open62541/tools/ua-nodeset/ADI/OpcUaAdiModel.csv
> +share/open62541/tools/ua-nodeset/ADI/OpcUaAdiModel.xml
> +share/open62541/tools/ua-nodeset/AML/
> +share/open62541/tools/ua-nodeset/AML/Opc.Ua.AMLBaseTypes.NodeSet2.xml
> +share/open62541/tools/ua-nodeset/AML/Opc.Ua.AMLLibraries.NodeSet2.xml
> +share/open62541/tools/ua-nodeset/AML/Topology.aml
> +share/open62541/tools/ua-nodeset/AML/Topology.xml
> +share/open62541/tools/ua-nodeset/AnsiC/
> +share/open62541/tools/ua-nodeset/AnsiC/Opc.Ua.Endpoints.wsdl
> +share/open62541/tools/ua-nodeset/AnsiC/Opc.Ua.Services.wsdl
> +share/open62541/tools/ua-nodeset/AnsiC/opcua_attributes.h
> +share/open62541/tools/ua-nodeset/AnsiC/opcua_browsenames.h
> +share/open62541/tools/ua-nodeset/AnsiC/opcua_clientapi.c
> +share/open62541/tools/ua-nodeset/AnsiC/opcua_clientapi.h
> +share/open62541/tools/ua-nodeset/AnsiC/opcua_exclusions.h
> +share/open62541/tools/ua-nodeset/AnsiC/opcua_identifiers.h
> +share/open62541/tools/ua-nodeset/AnsiC/opcua_serverapi.c
> +share/open62541/tools/ua-nodeset/AnsiC/opcua_serverapi.h
> +share/open62541/tools/ua-nodeset/AnsiC/opcua_statuscodes.h
> +share/open62541/tools/ua-nodeset/AnsiC/opcua_types.c
> +share/open62541/tools/ua-nodeset/AnsiC/opcua_types.h
> +share/open62541/tools/ua-nodeset/AutoID/
> +share/open62541/tools/ua-nodeset/AutoID/Opc.Ua.AutoID.NodeIds.csv
> +share/open62541/tools/ua-nodeset/AutoID/Opc.Ua.AutoID.NodeSet2.xml
> +share/open62541/tools/ua-nodeset/CAS/
> +share/open62541/tools/ua-nodeset/CAS/Opc.Ua.CAS.NodeIds.csv
> +share/open62541/tools/ua-nodeset/CAS/Opc.Ua.CAS.NodeSet2.xml
> +share/open62541/tools/ua-nodeset/CAS/Opc.Ua.CAS.bsd
> +share/open62541/tools/ua-nodeset/CAS/Opc.Ua.CAS.xsd
> +share/open62541/tools/ua-nodeset/CNC/
> +share/open62541/tools/ua-nodeset/CNC/Opc.Ua.CNC.NodeIds.csv
> +share/open62541/tools/ua-nodeset/CNC/Opc.Ua.CNC.NodeSet.xml
> +share/open62541/tools/ua-nodeset/CSPPlusForMachine/
> +share/open62541/tools/ua-nodeset/CSPPlusForMachine/Opc.Ua.CSPPlusForMachine.NodeIds.csv
> +share/open62541/tools/ua-nodeset/CSPPlusForMachine/Opc.Ua.CSPPlusForMachine.NodeSet2.xml
> +share/open62541/tools/ua-nodeset/CommercialKitchenEquipment/
> +share/open62541/tools/ua-nodeset/CommercialKitchenEquipment/NodeIds.csv
> +share/open62541/tools/ua-nodeset/CommercialKitchenEquipment/Opc.Ua.CommercialKitchenEquipment.NodeSet2.xml
> +share/open62541/tools/ua-nodeset/DEXPI/
> +share/open62541/tools/ua-nodeset/DEXPI/Opc.Ua.DEXPI.NodeIds.csv
> +share/open62541/tools/ua-nodeset/DEXPI/Opc.Ua.DEXPI.NodeSet2.xml
> +share/open62541/tools/ua-nodeset/DI/
> +share/open62541/tools/ua-nodeset/DI/Opc.Ua.Di.Classes.cs
> +share/open62541/tools/ua-nodeset/DI/Opc.Ua.Di.Constants.cs
> +share/open62541/tools/ua-nodeset/DI/Opc.Ua.Di.DataTypes.cs
> +share/open62541/tools/ua-nodeset/DI/Opc.Ua.Di.NodeSet2.xml
> +share/open62541/tools/ua-nodeset/DI/Opc.Ua.Di.PredefinedNodes.uanodes
> +share/open62541/tools/ua-nodeset/DI/Opc.Ua.Di.PredefinedNodes.xml
> +share/open62541/tools/ua-nodeset/DI/Opc.Ua.Di.Types.bsd
> +share/open62541/tools/ua-nodeset/DI/Opc.Ua.Di.Types.xsd
> +share/open62541/tools/ua-nodeset/DI/OpcUaDiModel.csv
> +share/open62541/tools/ua-nodeset/DI/OpcUaDiModel.xml
> +share/open62541/tools/ua-nodeset/DotNet/
> +share/open62541/tools/ua-nodeset/DotNet/Opc.Ua.Attributes.cs
> +share/open62541/tools/ua-nodeset/DotNet/Opc.Ua.Channels.cs
> +share/open62541/tools/ua-nodeset/DotNet/Opc.Ua.Client.cs
> +share/open62541/tools/ua-nodeset/DotNet/Opc.Ua.Endpoints.cs
> +share/open62541/tools/ua-nodeset/DotNet/Opc.Ua.Endpoints.wsdl
> +share/open62541/tools/ua-nodeset/DotNet/Opc.Ua.Interfaces.cs
> +share/open62541/tools/ua-nodeset/DotNet/Opc.Ua.Messages.cs
> +share/open62541/tools/ua-nodeset/DotNet/Opc.Ua.ServerBase.cs
> +share/open62541/tools/ua-nodeset/DotNet/Opc.Ua.Services.wsdl
> +share/open62541/tools/ua-nodeset/DotNet/Opc.Ua.StatusCodes.cs
> +share/open62541/tools/ua-nodeset/DotNet/Opc.Ua.StatusCodes.csv
> +share/open62541/tools/ua-nodeset/FDI/
> +share/open62541/tools/ua-nodeset/FDI/Opc.Ua.Fdi5.Classes.cs
> +share/open62541/tools/ua-nodeset/FDI/Opc.Ua.Fdi5.Constants.cs
> +share/open62541/tools/ua-nodeset/FDI/Opc.Ua.Fdi5.DataTypes.cs
> +share/open62541/tools/ua-nodeset/FDI/Opc.Ua.Fdi5.NodeSet2.xml
> +share/open62541/tools/ua-nodeset/FDI/Opc.Ua.Fdi5.PredefinedNodes.uanodes
> +share/open62541/tools/ua-nodeset/FDI/Opc.Ua.Fdi5.PredefinedNodes.xml
> +share/open62541/tools/ua-nodeset/FDI/Opc.Ua.Fdi5.Types.bsd
> +share/open62541/tools/ua-nodeset/FDI/Opc.Ua.Fdi5.Types.xsd
> +share/open62541/tools/ua-nodeset/FDI/Opc.Ua.Fdi7.Classes.cs
> +share/open62541/tools/ua-nodeset/FDI/Opc.Ua.Fdi7.Constants.cs
> +share/open62541/tools/ua-nodeset/FDI/Opc.Ua.Fdi7.DataTypes.cs
> +share/open62541/tools/ua-nodeset/FDI/Opc.Ua.Fdi7.NodeSet2.xml
> +share/open62541/tools/ua-nodeset/FDI/Opc.Ua.Fdi7.PredefinedNodes.uanodes
> +share/open62541/tools/ua-nodeset/FDI/Opc.Ua.Fdi7.PredefinedNodes.xml
> +share/open62541/tools/ua-nodeset/FDI/Opc.Ua.Fdi7.Types.bsd
> +share/open62541/tools/ua-nodeset/FDI/Opc.Ua.Fdi7.Types.xsd
> +share/open62541/tools/ua-nodeset/FDI/OpcUaFdiPart5Model.csv
> +share/open62541/tools/ua-nodeset/FDI/OpcUaFdiPart5Model.xml
> +share/open62541/tools/ua-nodeset/FDI/OpcUaFdiPart7Model.csv
> +share/open62541/tools/ua-nodeset/FDI/OpcUaFdiPart7Model.xml
> +share/open62541/tools/ua-nodeset/FDT/
> +share/open62541/tools/ua-nodeset/FDT/Opc.Ua.FDT.NodeSet.csv
> +share/open62541/tools/ua-nodeset/FDT/Opc.Ua.FDT.NodeSet.xml
> +share/open62541/tools/ua-nodeset/FDT/Opc.Ua.FDT.NodeSet.xsd
> +share/open62541/tools/ua-nodeset/GDS/
> +share/open62541/tools/ua-nodeset/GDS/Opc.Ua.Gds.Classes.cs
> +share/open62541/tools/ua-nodeset/GDS/Opc.Ua.Gds.Constants.cs
> +share/open62541/tools/ua-nodeset/GDS/Opc.Ua.Gds.DataTypes.cs
> +share/open62541/tools/ua-nodeset/GDS/Opc.Ua.Gds.NodeSet2.Part12.xml
> +share/open62541/tools/ua-nodeset/GDS/Opc.Ua.Gds.NodeSet2.xml
> +share/open62541/tools/ua-nodeset/GDS/Opc.Ua.Gds.PredefinedNodes.uanodes
> +share/open62541/tools/ua-nodeset/GDS/Opc.Ua.Gds.PredefinedNodes.xml
> +share/open62541/tools/ua-nodeset/GDS/Opc.Ua.Gds.Types.bsd
> +share/open62541/tools/ua-nodeset/GDS/Opc.Ua.Gds.Types.xsd
> +share/open62541/tools/ua-nodeset/GDS/OpcUaGdsModel.csv
> +share/open62541/tools/ua-nodeset/GDS/OpcUaGdsModel.xml
> +share/open62541/tools/ua-nodeset/I4AAS/
> +share/open62541/tools/ua-nodeset/I4AAS/NodeIds.csv
> +share/open62541/tools/ua-nodeset/I4AAS/Opc.Ua.I4AAS.NodeSet2.xml
> +share/open62541/tools/ua-nodeset/IA/
> +share/open62541/tools/ua-nodeset/IA/Opc.Ua.IA.NodeIds.csv
> +share/open62541/tools/ua-nodeset/IA/Opc.Ua.IA.NodeSet2.bsd
> +share/open62541/tools/ua-nodeset/IA/Opc.Ua.IA.NodeSet2.csv
> +share/open62541/tools/ua-nodeset/IA/Opc.Ua.IA.NodeSet2.examples.csv
> +share/open62541/tools/ua-nodeset/IA/Opc.Ua.IA.NodeSet2.examples.xml
> +share/open62541/tools/ua-nodeset/IA/Opc.Ua.IA.NodeSet2.xml
> +share/open62541/tools/ua-nodeset/IA/Opc.Ua.IA.NodeSet2.xsd
> +share/open62541/tools/ua-nodeset/IA/Opc.Ua.IA.Types.bsd
> +share/open62541/tools/ua-nodeset/IA/Opc.Ua.IA.Types.xsd
> +share/open62541/tools/ua-nodeset/IA/Opc.Ua.IA.ua
> +share/open62541/tools/ua-nodeset/IEC61850/
> +share/open62541/tools/ua-nodeset/IEC61850/Opc.Ua.IEC61850-6.NodeSet2.xml
> +share/open62541/tools/ua-nodeset/IEC61850/Opc.Ua.IEC61850-7-3.NodeSet2.xml
> +share/open62541/tools/ua-nodeset/IEC61850/Opc.Ua.IEC61850-7-4.NodeSet2.xml
> +share/open62541/tools/ua-nodeset/IOLink/
> +share/open62541/tools/ua-nodeset/IOLink/EngineeringUnits.csv
> +share/open62541/tools/ua-nodeset/IOLink/Opc.Ua.IOLink.NodeIds.csv
> +share/open62541/tools/ua-nodeset/IOLink/Opc.Ua.IOLink.NodeSet2.xml
> +share/open62541/tools/ua-nodeset/IOLink/Opc.Ua.IOLinkIODD.NodeIds.csv
> +share/open62541/tools/ua-nodeset/IOLink/Opc.Ua.IOLinkIODD.NodeSet2.xml
> +share/open62541/tools/ua-nodeset/ISA-95/
> +share/open62541/tools/ua-nodeset/ISA-95/OPC.ISA95.Types.bsd
> +share/open62541/tools/ua-nodeset/ISA-95/OPC.ISA95.Types.xsd
> +share/open62541/tools/ua-nodeset/ISA-95/Opc.ISA95.NodeSet2.xml
> +share/open62541/tools/ua-nodeset/ISA95-JOBCONTROL/
> +share/open62541/tools/ua-nodeset/ISA95-JOBCONTROL/opc.ua.isa95-jobcontrol.nodeset2.bsd
> +share/open62541/tools/ua-nodeset/ISA95-JOBCONTROL/opc.ua.isa95-jobcontrol.nodeset2.csv
> +share/open62541/tools/ua-nodeset/ISA95-JOBCONTROL/opc.ua.isa95-jobcontrol.nodeset2.xml
> +share/open62541/tools/ua-nodeset/ISA95-JOBCONTROL/opc.ua.isa95-jobcontrol.nodeset2.xsd
> +share/open62541/tools/ua-nodeset/MDIS/
> +share/open62541/tools/ua-nodeset/MDIS/MDIS.csv
> +share/open62541/tools/ua-nodeset/MDIS/MDIS.xml
> +share/open62541/tools/ua-nodeset/MDIS/Opc.MDIS.Classes.cs
> +share/open62541/tools/ua-nodeset/MDIS/Opc.MDIS.Constants.cs
> +share/open62541/tools/ua-nodeset/MDIS/Opc.MDIS.DataTypes.cs
> +share/open62541/tools/ua-nodeset/MDIS/Opc.MDIS.NodeSet2.xml
> +share/open62541/tools/ua-nodeset/MDIS/Opc.MDIS.PredefinedNodes.uanodes
> +share/open62541/tools/ua-nodeset/MDIS/Opc.MDIS.PredefinedNodes.xml
> +share/open62541/tools/ua-nodeset/MDIS/Opc.MDIS.Types.bsd
> +share/open62541/tools/ua-nodeset/MDIS/Opc.MDIS.Types.xsd
> +share/open62541/tools/ua-nodeset/MTConnect/
> +share/open62541/tools/ua-nodeset/MTConnect/MTConnect.NodeIds.csv
> +share/open62541/tools/ua-nodeset/MTConnect/MTConnectModel.csv
> +share/open62541/tools/ua-nodeset/MTConnect/MTConnectModel.xml
> +share/open62541/tools/ua-nodeset/MTConnect/Opc.Ua.MTConnect.Classes.cs
> +share/open62541/tools/ua-nodeset/MTConnect/Opc.Ua.MTConnect.Constants.cs
> +share/open62541/tools/ua-nodeset/MTConnect/Opc.Ua.MTConnect.DataTypes.cs
> +share/open62541/tools/ua-nodeset/MTConnect/Opc.Ua.MTConnect.NodeSet2.xml
> +share/open62541/tools/ua-nodeset/MTConnect/Opc.Ua.MTConnect.PredefinedNodes.uanodes
> +share/open62541/tools/ua-nodeset/MTConnect/Opc.Ua.MTConnect.PredefinedNodes.xml
> +share/open62541/tools/ua-nodeset/MTConnect/Opc.Ua.MTConnect.Types.bsd
> +share/open62541/tools/ua-nodeset/MTConnect/Opc.Ua.MTConnect.Types.xsd
> +share/open62541/tools/ua-nodeset/MachineTool/
> +share/open62541/tools/ua-nodeset/MachineTool/Machinetool-Example.NodeIds.csv
> +share/open62541/tools/ua-nodeset/MachineTool/Machinetool-Example.xml
> +share/open62541/tools/ua-nodeset/MachineTool/NodeIds.csv
> +share/open62541/tools/ua-nodeset/MachineTool/Opc.Ua.MachineTool.NodeSet2.bsd
> +share/open62541/tools/ua-nodeset/MachineTool/Opc.Ua.MachineTool.NodeSet2.xml
> +share/open62541/tools/ua-nodeset/MachineTool/Opc.Ua.MachineTool.NodeSet2.xsd
> +share/open62541/tools/ua-nodeset/MachineVision/
> +share/open62541/tools/ua-nodeset/MachineVision/NodeIds.csv
> +share/open62541/tools/ua-nodeset/MachineVision/Opc.Ua.MachineVision.NodeSet2.xml
> +share/open62541/tools/ua-nodeset/Machinery/
> +share/open62541/tools/ua-nodeset/Machinery/NodeIds.csv
> +share/open62541/tools/ua-nodeset/Machinery/Opc.Ua.Machinery.NodeSet2.xml
> +share/open62541/tools/ua-nodeset/OpenSCS/
> +share/open62541/tools/ua-nodeset/OpenSCS/NodeIds.csv
> +share/open62541/tools/ua-nodeset/OpenSCS/Opc.Ua.OPENSCS.NodeSet2.xml
> +share/open62541/tools/ua-nodeset/OpenSCS/Opc.Ua.OPENSCS.Types.bsd
> +share/open62541/tools/ua-nodeset/OpenSCS/Opc.Ua.OPENSCS.Types.xsd
> +share/open62541/tools/ua-nodeset/PADIM/
> +share/open62541/tools/ua-nodeset/PADIM/Opc.Ua.IRDI.NodeSet2.xml
> +share/open62541/tools/ua-nodeset/PADIM/Opc.Ua.PADIM.NodeIds.csv
> +share/open62541/tools/ua-nodeset/PADIM/Opc.Ua.PADIM.NodeSet2.xml
> +share/open62541/tools/ua-nodeset/PLCopen/
> +share/open62541/tools/ua-nodeset/PLCopen/Opc.Ua.PLCopen.NodeSet2_V1.02.csv
> +share/open62541/tools/ua-nodeset/PLCopen/Opc.Ua.PLCopen.NodeSet2_V1.02.xml
> +share/open62541/tools/ua-nodeset/PNEM/
> +share/open62541/tools/ua-nodeset/PNEM/NodeIds.csv
> +share/open62541/tools/ua-nodeset/PNEM/Opc.Ua.PnEm.NodeSet2.xml
> +share/open62541/tools/ua-nodeset/POWERLINK/
> +share/open62541/tools/ua-nodeset/POWERLINK/Opc.Ua.POWERLINK.NodeIds.csv
> +share/open62541/tools/ua-nodeset/POWERLINK/Opc.Ua.POWERLINK.NodeSet2.xml
> +share/open62541/tools/ua-nodeset/PROFINET/
> +share/open62541/tools/ua-nodeset/PROFINET/Opc.Ua.Pn.NodeIds.csv
> +share/open62541/tools/ua-nodeset/PROFINET/Opc.Ua.Pn.NodeSet2.xml
> +share/open62541/tools/ua-nodeset/PROFINET/Opc.Ua.Pn.Types.bsd
> +share/open62541/tools/ua-nodeset/PROFINET/Opc.Ua.Pn.Types.xsd
> +share/open62541/tools/ua-nodeset/PackML/
> +share/open62541/tools/ua-nodeset/PackML/Opc.Ua.PackML.NodeSet2.xml
> +share/open62541/tools/ua-nodeset/PackML/PackML.NodeIds.csv
> +share/open62541/tools/ua-nodeset/PlasticsRubber/
> +share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/
> +share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/Calender/
> +share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/Calender/1.00/
> +share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/Calender/1.00/NodeIds.csv
> +share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/Calender/1.00/Opc.Ua.PlasticsRubber.Extrusion.Calender.NodeSet2.xml
> +share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/Calibrator/
> +share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/Calibrator/1.00/
> +share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/Calibrator/1.00/NodeIds.csv
> +share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/Calibrator/1.00/Opc.Ua.PlasticsRubber.Extrusion.Calibrator.NodeSet2.xml
> +share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/Corrugator/
> +share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/Corrugator/1.00/
> +share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/Corrugator/1.00/NodeIds.csv
> +share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/Corrugator/1.00/Opc.Ua.PlasticsRubber.Extrusion.Corrugator.NodeSet2.xml
> +share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/Cutter/
> +share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/Cutter/1.00/
> +share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/Cutter/1.00/NodeIds.csv
> +share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/Cutter/1.00/Opc.Ua.PlasticsRubber.Extrusion.Cutter.NodeSet2.xml
> +share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/Die/
> +share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/Die/1.00/
> +share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/Die/1.00/NodeIds.csv
> +share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/Die/1.00/Opc.Ua.PlasticsRubber.Extrusion.Die.NodeSet2.xml
> +share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/Extruder/
> +share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/Extruder/1.00/
> +share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/Extruder/1.00/NodeIds.csv
> +share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/Extruder/1.00/Opc.Ua.PlasticsRubber.Extrusion.Extruder.NodeSet2.xml
> +share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/ExtrusionLine/
> +share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/ExtrusionLine/1.00/
> +share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/ExtrusionLine/1.00/NodeIds.csv
> +share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/ExtrusionLine/1.00/Opc.Ua.PlasticsRubber.Extrusion.ExtrusionLine.NodeSet2.xml
> +share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/Filter/
> +share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/Filter/1.00/
> +share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/Filter/1.00/NodeIds.csv
> +share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/Filter/1.00/Opc.Ua.PlasticsRubber.Extrusion.Filter.NodeSet2.xml
> +share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/GeneralTypes/
> +share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/GeneralTypes/1.00/
> +share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/GeneralTypes/1.00/NodeIds.csv
> +share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/GeneralTypes/1.00/Opc.Ua.PlasticsRubber.Extrusion.GeneralTypes.NodeSet2.xml
> +share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/GeneralTypes/1.01/
> +share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/GeneralTypes/1.01/NodeIds.csv
> +share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/GeneralTypes/1.01/Opc.Ua.PlasticsRubber.Extrusion.GeneralTypes.NodeSet2.bsd
> +share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/GeneralTypes/1.01/Opc.Ua.PlasticsRubber.Extrusion.GeneralTypes.NodeSet2.xml
> +share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/GeneralTypes/1.01/Opc.Ua.PlasticsRubber.Extrusion.GeneralTypes.NodeSet2.xsd
> +share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/HaulOff/
> +share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/HaulOff/1.00/
> +share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/HaulOff/1.00/NodeIds.csv
> +share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/HaulOff/1.00/Opc.Ua.PlasticsRubber.Extrusion.HaulOff.NodeSet2.xml
> +share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/MeltPump/
> +share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/MeltPump/1.00/
> +share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/MeltPump/1.00/NodeIds.csv
> +share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/MeltPump/1.00/Opc.Ua.PlasticsRubber.Extrusion.MeltPump.NodeSet2.xml
> +share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/Pelletizer/
> +share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/Pelletizer/1.00/
> +share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/Pelletizer/1.00/NodeIds.csv
> +share/open62541/tools/ua-nodeset/PlasticsRubber/Extrusion/Pelletizer/1.00/Opc.Ua.PlasticsRubber.Extrusion.Pelletizer.NodeSet2.xml
> +share/open62541/tools/ua-nodeset/PlasticsRubber/GeneralTypes/
> +share/open62541/tools/ua-nodeset/PlasticsRubber/GeneralTypes/1.02/
> +share/open62541/tools/ua-nodeset/PlasticsRubber/GeneralTypes/1.02/NodeIds.csv
> +share/open62541/tools/ua-nodeset/PlasticsRubber/GeneralTypes/1.02/Opc.Ua.PlasticsRubber.GeneralTypes.NodeSet2.bsd
> +share/open62541/tools/ua-nodeset/PlasticsRubber/GeneralTypes/1.02/Opc.Ua.PlasticsRubber.GeneralTypes.NodeSet2.xml
> +share/open62541/tools/ua-nodeset/PlasticsRubber/GeneralTypes/1.02/Opc.Ua.PlasticsRubber.GeneralTypes.NodeSet2.xsd
> +share/open62541/tools/ua-nodeset/PlasticsRubber/GeneralTypes/1.03/
> +share/open62541/tools/ua-nodeset/PlasticsRubber/GeneralTypes/1.03/NodeIds.csv
> +share/open62541/tools/ua-nodeset/PlasticsRubber/GeneralTypes/1.03/Opc.Ua.PlasticsRubber.GeneralTypes.NodeSet2.bsd
> +share/open62541/tools/ua-nodeset/PlasticsRubber/GeneralTypes/1.03/Opc.Ua.PlasticsRubber.GeneralTypes.NodeSet2.xml
> +share/open62541/tools/ua-nodeset/PlasticsRubber/GeneralTypes/1.03/Opc.Ua.PlasticsRubber.GeneralTypes.NodeSet2.xsd
> +share/open62541/tools/ua-nodeset/PlasticsRubber/GeneralTypes/Opc.Ua.PlasticsRubber.GeneralTypes.NodeSet2.bsd
> +share/open62541/tools/ua-nodeset/PlasticsRubber/GeneralTypes/Opc.Ua.PlasticsRubber.GeneralTypes.NodeSet2.xsd
> +share/open62541/tools/ua-nodeset/PlasticsRubber/HotRunner/
> +share/open62541/tools/ua-nodeset/PlasticsRubber/HotRunner/1.00/
> +share/open62541/tools/ua-nodeset/PlasticsRubber/HotRunner/1.00/NodeIds.csv
> +share/open62541/tools/ua-nodeset/PlasticsRubber/HotRunner/1.00/Opc.Ua.PlasticsRubber.HotRunner.NodeSet2.bsd
> +share/open62541/tools/ua-nodeset/PlasticsRubber/HotRunner/1.00/Opc.Ua.PlasticsRubber.HotRunner.NodeSet2.xml
> +share/open62541/tools/ua-nodeset/PlasticsRubber/HotRunner/1.00/Opc.Ua.PlasticsRubber.HotRunner.NodeSet2.xsd
> +share/open62541/tools/ua-nodeset/PlasticsRubber/IMM2MES/
> +share/open62541/tools/ua-nodeset/PlasticsRubber/IMM2MES/1.01/
> +share/open62541/tools/ua-nodeset/PlasticsRubber/IMM2MES/1.01/NodeIds.csv
> +share/open62541/tools/ua-nodeset/PlasticsRubber/IMM2MES/1.01/Opc.Ua.PlasticsRubber.IMM2MES.NodeSet2.bsd
> +share/open62541/tools/ua-nodeset/PlasticsRubber/IMM2MES/1.01/Opc.Ua.PlasticsRubber.IMM2MES.NodeSet2.xml
> +share/open62541/tools/ua-nodeset/PlasticsRubber/IMM2MES/1.01/Opc.Ua.PlasticsRubber.IMM2MES.NodeSet2.xsd
> +share/open62541/tools/ua-nodeset/PlasticsRubber/LDS/
> +share/open62541/tools/ua-nodeset/PlasticsRubber/LDS/1.00/
> +share/open62541/tools/ua-nodeset/PlasticsRubber/LDS/1.00/NodeIds.csv
> +share/open62541/tools/ua-nodeset/PlasticsRubber/LDS/1.00/Opc.Ua.PlasticsRubber.LDS.NodeSet2.bsd
> +share/open62541/tools/ua-nodeset/PlasticsRubber/LDS/1.00/Opc.Ua.PlasticsRubber.LDS.NodeSet2.xml
> +share/open62541/tools/ua-nodeset/PlasticsRubber/LDS/1.00/Opc.Ua.PlasticsRubber.LDS.NodeSet2.xsd
> +share/open62541/tools/ua-nodeset/PlasticsRubber/TCD/
> +share/open62541/tools/ua-nodeset/PlasticsRubber/TCD/1.01/
> +share/open62541/tools/ua-nodeset/PlasticsRubber/TCD/1.01/NodeIds.csv
> +share/open62541/tools/ua-nodeset/PlasticsRubber/TCD/1.01/Opc.Ua.PlasticsRubber.TCD.NodeSet2.xml
> +share/open62541/tools/ua-nodeset/PublishNodeSets.bat
> +share/open62541/tools/ua-nodeset/Pumps/
> +share/open62541/tools/ua-nodeset/Pumps/Opc.Ua.Pumps.NodeSet2.bsd
> +share/open62541/tools/ua-nodeset/Pumps/Opc.Ua.Pumps.NodeSet2.csv
> +share/open62541/tools/ua-nodeset/Pumps/Opc.Ua.Pumps.NodeSet2.xml
> +share/open62541/tools/ua-nodeset/Pumps/Opc.Ua.Pumps.NodeSet2.xsd
> +share/open62541/tools/ua-nodeset/Pumps/instanceexample.xml
> +share/open62541/tools/ua-nodeset/Robotics/
> +share/open62541/tools/ua-nodeset/Robotics/NodeIds.csv
> +share/open62541/tools/ua-nodeset/Robotics/Opc.Ua.Robotics.Classes.cs
> +share/open62541/tools/ua-nodeset/Robotics/Opc.Ua.Robotics.Constants.cs
> +share/open62541/tools/ua-nodeset/Robotics/Opc.Ua.Robotics.DataTypes.cs
> +share/open62541/tools/ua-nodeset/Robotics/Opc.Ua.Robotics.NodeIds.csv
> +share/open62541/tools/ua-nodeset/Robotics/Opc.Ua.Robotics.NodeSet2.xml
> +share/open62541/tools/ua-nodeset/Robotics/Opc.Ua.Robotics.Types.bsd
> +share/open62541/tools/ua-nodeset/Robotics/Opc.Ua.Robotics.Types.xsd
> +share/open62541/tools/ua-nodeset/Robotics/OpcUaRoboticsModel.xml
> +share/open62541/tools/ua-nodeset/Safety/
> +share/open62541/tools/ua-nodeset/Safety/Opc.Ua.Safety.NodeIds.csv
> +share/open62541/tools/ua-nodeset/Safety/Opc.Ua.Safety.NodeSet2.xml
> +share/open62541/tools/ua-nodeset/Safety/Opc.Ua.Safety.Types.bsd
> +share/open62541/tools/ua-nodeset/Safety/Opc.Ua.Safety.Types.xsd
> +share/open62541/tools/ua-nodeset/Safety/opc.ua.safety.nodeset2.ua
> +share/open62541/tools/ua-nodeset/Safety/opc_ua_safety_nodeset2.tt2pro
> +share/open62541/tools/ua-nodeset/Scales/
> +share/open62541/tools/ua-nodeset/Scales/Opc.Ua.Scales.NodeIds.csv
> +share/open62541/tools/ua-nodeset/Scales/Opc.Ua.Scales.NodeSet2.xml
> +share/open62541/tools/ua-nodeset/Schema/
> +share/open62541/tools/ua-nodeset/Schema/AttributeIds.csv
> +share/open62541/tools/ua-nodeset/Schema/NodeIds.csv
> +share/open62541/tools/ua-nodeset/Schema/OPCBinarySchema.xsd
> +share/open62541/tools/ua-nodeset/Schema/Opc.Ua.Classes.cs
> +share/open62541/tools/ua-nodeset/Schema/Opc.Ua.Constants.cs
> +share/open62541/tools/ua-nodeset/Schema/Opc.Ua.DataTypes.cs
> +share/open62541/tools/ua-nodeset/Schema/Opc.Ua.NodeIds.Services.csv
> +share/open62541/tools/ua-nodeset/Schema/Opc.Ua.NodeIds.csv
> +share/open62541/tools/ua-nodeset/Schema/Opc.Ua.NodeSet.xml
> +share/open62541/tools/ua-nodeset/Schema/Opc.Ua.NodeSet2.Part10.xml
> +share/open62541/tools/ua-nodeset/Schema/Opc.Ua.NodeSet2.Part11.xml
> +share/open62541/tools/ua-nodeset/Schema/Opc.Ua.NodeSet2.Part12.xml
> +share/open62541/tools/ua-nodeset/Schema/Opc.Ua.NodeSet2.Part13.xml
> +share/open62541/tools/ua-nodeset/Schema/Opc.Ua.NodeSet2.Part14.xml
> +share/open62541/tools/ua-nodeset/Schema/Opc.Ua.NodeSet2.Part17.xml
> +share/open62541/tools/ua-nodeset/Schema/Opc.Ua.NodeSet2.Part19.xml
> +share/open62541/tools/ua-nodeset/Schema/Opc.Ua.NodeSet2.Part22.xml
> +share/open62541/tools/ua-nodeset/Schema/Opc.Ua.NodeSet2.Part3.xml
> +share/open62541/tools/ua-nodeset/Schema/Opc.Ua.NodeSet2.Part4.xml
> +share/open62541/tools/ua-nodeset/Schema/Opc.Ua.NodeSet2.Part5.xml
> +share/open62541/tools/ua-nodeset/Schema/Opc.Ua.NodeSet2.Part8.xml
> +share/open62541/tools/ua-nodeset/Schema/Opc.Ua.NodeSet2.Part9.xml
> +share/open62541/tools/ua-nodeset/Schema/Opc.Ua.NodeSet2.Services.xml
> +share/open62541/tools/ua-nodeset/Schema/Opc.Ua.NodeSet2.xml
> +share/open62541/tools/ua-nodeset/Schema/Opc.Ua.PredefinedNodes.uanodes
> +share/open62541/tools/ua-nodeset/Schema/Opc.Ua.PredefinedNodes.xml
> +share/open62541/tools/ua-nodeset/Schema/Opc.Ua.Types.bsd
> +share/open62541/tools/ua-nodeset/Schema/Opc.Ua.Types.xsd
> +share/open62541/tools/ua-nodeset/Schema/SecuredApplication.xsd
> +share/open62541/tools/ua-nodeset/Schema/ServerCapabilities.csv
> +share/open62541/tools/ua-nodeset/Schema/StatusCode.csv
> +share/open62541/tools/ua-nodeset/Schema/UANodeSet.xsd
> +share/open62541/tools/ua-nodeset/Schema/UNECE_to_OPCUA.csv
> +share/open62541/tools/ua-nodeset/Schema/rec20_latest_a1.csv
> +share/open62541/tools/ua-nodeset/Schema/rec20_latest_a2-3.csv
> +share/open62541/tools/ua-nodeset/Sercos/
> +share/open62541/tools/ua-nodeset/Sercos/Sercos.Classes.cs
> +share/open62541/tools/ua-nodeset/Sercos/Sercos.Constants.cs
> +share/open62541/tools/ua-nodeset/Sercos/Sercos.DataTypes.cs
> +share/open62541/tools/ua-nodeset/Sercos/Sercos.NodeSet2.xml
> +share/open62541/tools/ua-nodeset/Sercos/Sercos.PredefinedNodes.uanodes
> +share/open62541/tools/ua-nodeset/Sercos/Sercos.PredefinedNodes.xml
> +share/open62541/tools/ua-nodeset/Sercos/Sercos.Types.bsd
> +share/open62541/tools/ua-nodeset/Sercos/Sercos.Types.xsd
> +share/open62541/tools/ua-nodeset/Sercos/SercosModel.csv
> +share/open62541/tools/ua-nodeset/Sercos/SercosModel.xml
> +share/open62541/tools/ua-nodeset/TMC/
> +share/open62541/tools/ua-nodeset/TMC/Opc.Ua.TMC.NodeIds.csv
> +share/open62541/tools/ua-nodeset/TMC/Opc.Ua.TMC.NodeSet2.bsd
> +share/open62541/tools/ua-nodeset/TMC/Opc.Ua.TMC.NodeSet2.xml
> +share/open62541/tools/ua-nodeset/TMC/Opc.Ua.TMC.NodeSet2.xsd
> +share/open62541/tools/ua-nodeset/Weihenstephan/
> +share/open62541/tools/ua-nodeset/Weihenstephan/NodeIds.csv
> +share/open62541/tools/ua-nodeset/Weihenstephan/Opc.Ua.Weihenstephan.NodeSet2.bsd
> +share/open62541/tools/ua-nodeset/Weihenstephan/Opc.Ua.Weihenstephan.NodeSet2.xml
> +share/open62541/tools/ua-nodeset/Weihenstephan/Opc.Ua.Weihenstephan.NodeSet2.xsd
> +share/open62541/tools/ua-nodeset/readme.md
> +share/open62541/tools/ua-nodeset/v1.03 NodeSet Errata 2016-04-16.txt
> +share/open62541/tools/ua-nodeset/v1.04 NodeSet Errata.txt
> 

Reply via email to