@t0a5tbr0t/node-red-contrib-opcua 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/LICENSE +20 -0
- package/Readme.md +239 -0
- package/images/PROSYS-OPC-UA-EXAMPLE2.png +0 -0
- package/images/nodeopcua64.png +0 -0
- package/images/opcuanode.png +0 -0
- package/images/opcuanodeLogo64.png +0 -0
- package/opcua/101-opcuaitem.html +106 -0
- package/opcua/101-opcuaitem.js +82 -0
- package/opcua/102-opcuaclient.html +274 -0
- package/opcua/102-opcuaclient.js +2741 -0
- package/opcua/103-opcuabrowser.html +71 -0
- package/opcua/103-opcuabrowser.js +230 -0
- package/opcua/104-opcuaserver.html +261 -0
- package/opcua/104-opcuaserver.js +1844 -0
- package/opcua/105-opcuaendpoint.html +224 -0
- package/opcua/105-opcuaendpoint.js +64 -0
- package/opcua/106-opcuaevent.html +110 -0
- package/opcua/106-opcuaevent.js +50 -0
- package/opcua/107-opcuamethod.html +244 -0
- package/opcua/107-opcuamethod.js +521 -0
- package/opcua/108-opcuarights.html +223 -0
- package/opcua/108-opcuarights.js +156 -0
- package/opcua/109-opcuadiscovery.html +51 -0
- package/opcua/109-opcuadiscovery.js +180 -0
- package/opcua/dump_certificates.js +55 -0
- package/opcua/icons/opcuanode.png +0 -0
- package/opcua/icons/opcuanodeLogo.png +0 -0
- package/opcua/opcua-basics.js +1061 -0
- package/opcua/public/vendor/opc-foundation/binary/OPC.ISA95.Types.bsd.xml +141 -0
- package/opcua/public/vendor/opc-foundation/binary/Opc.Ua.Adi.Types.bsd.xml +76 -0
- package/opcua/public/vendor/opc-foundation/binary/Opc.Ua.Di.Types.bsd.xml +11 -0
- package/opcua/public/vendor/opc-foundation/binary/Opc.Ua.Gds.Types.bsd.xml +25 -0
- package/opcua/public/vendor/opc-foundation/binary/Opc.Ua.Types.bsd.xml +2391 -0
- package/opcua/public/vendor/opc-foundation/csv/AttributeIds.csv +22 -0
- package/opcua/public/vendor/opc-foundation/csv/NodeIds.csv +5746 -0
- package/opcua/public/vendor/opc-foundation/csv/Opc.Ua.StatusCodes.csv +227 -0
- package/opcua/public/vendor/opc-foundation/csv/OpcUaDiModel.csv +1523 -0
- package/opcua/public/vendor/opc-foundation/csv/OpcUaGdsModel.csv +400 -0
- package/opcua/public/vendor/opc-foundation/csv/ServerCapabilities.csv +13 -0
- package/opcua/public/vendor/opc-foundation/csv/ServerCapabilityIdentifiers.csv +13 -0
- package/opcua/public/vendor/opc-foundation/csv/StatusCode.csv +227 -0
- package/opcua/public/vendor/opc-foundation/csv/StatusCodes.csv +227 -0
- package/opcua/public/vendor/opc-foundation/schema/OPC.ISA95.Types.xsd +163 -0
- package/opcua/public/vendor/opc-foundation/schema/OPCBinarySchema.xsd +119 -0
- package/opcua/public/vendor/opc-foundation/schema/Opc.Ua.Types.xsd +3938 -0
- package/opcua/public/vendor/opc-foundation/schema/SecuredApplication.xsd +106 -0
- package/opcua/public/vendor/opc-foundation/schema/UANodeSet.xsd +420 -0
- package/opcua/public/vendor/opc-foundation/xml/OPC.ISA95.NodeSet2.Nov52013.xml +3293 -0
- package/opcua/public/vendor/opc-foundation/xml/Opc.ISA95.NodeSet2.xml +3589 -0
- package/opcua/public/vendor/opc-foundation/xml/Opc.Ua.Adi.NodeSet2.xml +8301 -0
- package/opcua/public/vendor/opc-foundation/xml/Opc.Ua.Adi.Types.bsd.xml +76 -0
- package/opcua/public/vendor/opc-foundation/xml/Opc.Ua.Adi.Types.xsd +157 -0
- package/opcua/public/vendor/opc-foundation/xml/Opc.Ua.AutoID.NodeSet2.xml +6062 -0
- package/opcua/public/vendor/opc-foundation/xml/Opc.Ua.Di.NodeSet2.xml +5066 -0
- package/opcua/public/vendor/opc-foundation/xml/Opc.Ua.Di.PredefinedNodes.xml +11495 -0
- package/opcua/public/vendor/opc-foundation/xml/Opc.Ua.Di.Types.bsd +86 -0
- package/opcua/public/vendor/opc-foundation/xml/Opc.Ua.Di.Types.bsd.xml +11 -0
- package/opcua/public/vendor/opc-foundation/xml/Opc.Ua.Di.Types.xsd +155 -0
- package/opcua/public/vendor/opc-foundation/xml/Opc.Ua.Gds.NodeSet.xml +15226 -0
- package/opcua/public/vendor/opc-foundation/xml/Opc.Ua.Gds.NodeSet2.xml +6214 -0
- package/opcua/public/vendor/opc-foundation/xml/Opc.Ua.Gds.Types.bsd.xml +25 -0
- package/opcua/public/vendor/opc-foundation/xml/Opc.Ua.Gds.Types.xsd +30 -0
- package/opcua/public/vendor/opc-foundation/xml/Opc.Ua.NodeSet-2.xml +134881 -0
- package/opcua/public/vendor/opc-foundation/xml/Opc.Ua.NodeSet-3.xml +134881 -0
- package/opcua/public/vendor/opc-foundation/xml/Opc.Ua.NodeSet.xml +134881 -0
- package/opcua/public/vendor/opc-foundation/xml/Opc.Ua.NodeSet2.Part10.xml +832 -0
- package/opcua/public/vendor/opc-foundation/xml/Opc.Ua.NodeSet2.Part11.xml +793 -0
- package/opcua/public/vendor/opc-foundation/xml/Opc.Ua.NodeSet2.Part12.xml +3877 -0
- package/opcua/public/vendor/opc-foundation/xml/Opc.Ua.NodeSet2.Part13.xml +344 -0
- package/opcua/public/vendor/opc-foundation/xml/Opc.Ua.NodeSet2.Part3.xml +1103 -0
- package/opcua/public/vendor/opc-foundation/xml/Opc.Ua.NodeSet2.Part4.xml +3091 -0
- package/opcua/public/vendor/opc-foundation/xml/Opc.Ua.NodeSet2.Part5.xml +17092 -0
- package/opcua/public/vendor/opc-foundation/xml/Opc.Ua.NodeSet2.Part8.xml +525 -0
- package/opcua/public/vendor/opc-foundation/xml/Opc.Ua.NodeSet2.Part9.xml +2049 -0
- package/opcua/public/vendor/opc-foundation/xml/Opc.Ua.NodeSet2.Part999.xml +134 -0
- package/opcua/public/vendor/opc-foundation/xml/Opc.Ua.NodeSet2.xml +67169 -0
- package/opcua/public/vendor/opc-foundation/xml/Opc.Ua.PredefinedNodes.xml +64500 -0
- package/opcua/public/vendor/opc-foundation/xml/OpcUaDiModel.xml +1239 -0
- package/opcua/utils.js +55 -0
- package/package.json +68 -0
- package/users.json +22 -0
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
|
2
|
+
<xs:schema
|
|
3
|
+
targetNamespace="http://opcfoundation.org/BinarySchema/"
|
|
4
|
+
elementFormDefault="qualified"
|
|
5
|
+
xmlns="http://opcfoundation.org/BinarySchema/"
|
|
6
|
+
xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
|
7
|
+
>
|
|
8
|
+
<xs:element name="Documentation">
|
|
9
|
+
<xs:complexType mixed="true">
|
|
10
|
+
<xs:choice minOccurs="0" maxOccurs="unbounded">
|
|
11
|
+
<xs:any minOccurs="0" maxOccurs="unbounded"/>
|
|
12
|
+
</xs:choice>
|
|
13
|
+
<xs:anyAttribute/>
|
|
14
|
+
</xs:complexType>
|
|
15
|
+
</xs:element>
|
|
16
|
+
|
|
17
|
+
<xs:complexType name="ImportDirective">
|
|
18
|
+
<xs:attribute name="Namespace" type="xs:string" use="optional" />
|
|
19
|
+
<xs:attribute name="Location" type="xs:string" use="optional" />
|
|
20
|
+
</xs:complexType>
|
|
21
|
+
|
|
22
|
+
<xs:simpleType name="ByteOrder">
|
|
23
|
+
<xs:restriction base="xs:string">
|
|
24
|
+
<xs:enumeration value="BigEndian" />
|
|
25
|
+
<xs:enumeration value="LittleEndian" />
|
|
26
|
+
</xs:restriction>
|
|
27
|
+
</xs:simpleType>
|
|
28
|
+
|
|
29
|
+
<xs:complexType name="TypeDescription">
|
|
30
|
+
<xs:sequence>
|
|
31
|
+
<xs:element ref="Documentation" minOccurs="0" maxOccurs="1" />
|
|
32
|
+
</xs:sequence>
|
|
33
|
+
<xs:attribute name="Name" type="xs:NCName" use="required" />
|
|
34
|
+
<xs:attribute name="DefaultByteOrder" type="ByteOrder" use="optional" />
|
|
35
|
+
<xs:anyAttribute processContents="lax" />
|
|
36
|
+
</xs:complexType>
|
|
37
|
+
|
|
38
|
+
<xs:complexType name="OpaqueType">
|
|
39
|
+
<xs:complexContent>
|
|
40
|
+
<xs:extension base="TypeDescription">
|
|
41
|
+
<xs:attribute name="LengthInBits" type="xs:int" use="optional" />
|
|
42
|
+
<xs:attribute name="ByteOrderSignificant" type="xs:boolean" default="false" />
|
|
43
|
+
</xs:extension>
|
|
44
|
+
</xs:complexContent>
|
|
45
|
+
</xs:complexType>
|
|
46
|
+
|
|
47
|
+
<xs:complexType name="EnumeratedValue">
|
|
48
|
+
<xs:sequence>
|
|
49
|
+
<xs:element ref="Documentation" minOccurs="0" maxOccurs="1" />
|
|
50
|
+
</xs:sequence>
|
|
51
|
+
<xs:attribute name="Name" type="xs:string" use="optional" />
|
|
52
|
+
<xs:attribute name="Value" type="xs:int" use="optional" />
|
|
53
|
+
</xs:complexType>
|
|
54
|
+
|
|
55
|
+
<xs:complexType name="EnumeratedType">
|
|
56
|
+
<xs:complexContent>
|
|
57
|
+
<xs:extension base="OpaqueType">
|
|
58
|
+
<xs:sequence>
|
|
59
|
+
<xs:element name="EnumeratedValue" type="EnumeratedValue" maxOccurs="unbounded" />
|
|
60
|
+
</xs:sequence>
|
|
61
|
+
</xs:extension>
|
|
62
|
+
</xs:complexContent>
|
|
63
|
+
</xs:complexType>
|
|
64
|
+
|
|
65
|
+
<xs:simpleType name="SwitchOperand">
|
|
66
|
+
<xs:restriction base="xs:string">
|
|
67
|
+
<xs:enumeration value="Equals" />
|
|
68
|
+
<xs:enumeration value="GreaterThan" />
|
|
69
|
+
<xs:enumeration value="LessThan" />
|
|
70
|
+
<xs:enumeration value="GreaterThanOrEqual" />
|
|
71
|
+
<xs:enumeration value="LessThanOrEqual" />
|
|
72
|
+
<xs:enumeration value="NotEqual" />
|
|
73
|
+
</xs:restriction>
|
|
74
|
+
</xs:simpleType>
|
|
75
|
+
|
|
76
|
+
<xs:complexType name="FieldType">
|
|
77
|
+
<xs:sequence>
|
|
78
|
+
<xs:element ref="Documentation" minOccurs="0" maxOccurs="1" />
|
|
79
|
+
</xs:sequence>
|
|
80
|
+
<xs:attribute name="Name" type="xs:string" use="required" />
|
|
81
|
+
<xs:attribute name="TypeName" type="xs:QName" use="optional" />
|
|
82
|
+
<xs:attribute name="Length" type="xs:unsignedInt" use="optional" />
|
|
83
|
+
<xs:attribute name="LengthField" type="xs:string" use="optional" />
|
|
84
|
+
<xs:attribute name="IsLengthInBytes" type="xs:boolean" default="false" />
|
|
85
|
+
<xs:attribute name="SwitchField" type="xs:string" use="optional" />
|
|
86
|
+
<xs:attribute name="SwitchValue" type="xs:unsignedInt" use="optional" />
|
|
87
|
+
<xs:attribute name="SwitchOperand" type="SwitchOperand" use="optional" />
|
|
88
|
+
<xs:attribute name="Terminator" type="xs:hexBinary" use="optional" />
|
|
89
|
+
<xs:anyAttribute processContents="lax" />
|
|
90
|
+
</xs:complexType>
|
|
91
|
+
|
|
92
|
+
<xs:complexType name="StructuredType">
|
|
93
|
+
<xs:complexContent>
|
|
94
|
+
<xs:extension base="TypeDescription">
|
|
95
|
+
<xs:sequence>
|
|
96
|
+
<xs:element name="Field" type="FieldType" minOccurs="0" maxOccurs="unbounded" />
|
|
97
|
+
</xs:sequence>
|
|
98
|
+
</xs:extension>
|
|
99
|
+
</xs:complexContent>
|
|
100
|
+
</xs:complexType>
|
|
101
|
+
|
|
102
|
+
<xs:element name="TypeDictionary">
|
|
103
|
+
<xs:complexType>
|
|
104
|
+
<xs:sequence>
|
|
105
|
+
<xs:element ref="Documentation" minOccurs="0" maxOccurs="1" />
|
|
106
|
+
<xs:element name="Import" type="ImportDirective" minOccurs="0" maxOccurs="unbounded" />
|
|
107
|
+
<xs:choice minOccurs="0" maxOccurs="unbounded">
|
|
108
|
+
<xs:element name="OpaqueType" type="OpaqueType" />
|
|
109
|
+
<xs:element name="EnumeratedType" type="EnumeratedType" />
|
|
110
|
+
<xs:element name="StructuredType" type="StructuredType" />
|
|
111
|
+
</xs:choice>
|
|
112
|
+
</xs:sequence>
|
|
113
|
+
<xs:attribute name="TargetNamespace" type="xs:string" use="required" />
|
|
114
|
+
<xs:attribute name="DefaultByteOrder" type="ByteOrder" use="optional" />
|
|
115
|
+
<xs:anyAttribute processContents="lax" />
|
|
116
|
+
</xs:complexType>
|
|
117
|
+
</xs:element>
|
|
118
|
+
|
|
119
|
+
</xs:schema>
|