@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,2391 @@
|
|
|
1
|
+
<opc:TypeDictionary
|
|
2
|
+
xmlns:opc="http://opcfoundation.org/BinarySchema/"
|
|
3
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
4
|
+
xmlns:ua="http://opcfoundation.org/UA/"
|
|
5
|
+
xmlns:tns="http://opcfoundation.org/UA/"
|
|
6
|
+
DefaultByteOrder="LittleEndian"
|
|
7
|
+
TargetNamespace="http://opcfoundation.org/UA/"
|
|
8
|
+
>
|
|
9
|
+
<!-- This File was generated on 2015-08-18 and supports the specifications supported by version 1.1.335.1 of the OPC UA deliverables. -->
|
|
10
|
+
|
|
11
|
+
<opc:Import Namespace="http://opcfoundation.org/BinarySchema/" />
|
|
12
|
+
|
|
13
|
+
<opc:StructuredType Name="XmlElement">
|
|
14
|
+
<opc:Documentation>An XML element encoded as a UTF-8 string.</opc:Documentation>
|
|
15
|
+
<opc:Field Name="Length" TypeName="opc:Int32" />
|
|
16
|
+
<opc:Field Name="Value" TypeName="opc:Char" LengthField="Length" />
|
|
17
|
+
</opc:StructuredType>
|
|
18
|
+
|
|
19
|
+
<opc:EnumeratedType Name="NodeIdType" LengthInBits="6">
|
|
20
|
+
<opc:Documentation>The possible encodings for a NodeId value.</opc:Documentation>
|
|
21
|
+
<opc:EnumeratedValue Name="TwoByte" Value="0" />
|
|
22
|
+
<opc:EnumeratedValue Name="FourByte" Value="1" />
|
|
23
|
+
<opc:EnumeratedValue Name="Numeric" Value="2" />
|
|
24
|
+
<opc:EnumeratedValue Name="String" Value="3" />
|
|
25
|
+
<opc:EnumeratedValue Name="Guid" Value="4" />
|
|
26
|
+
<opc:EnumeratedValue Name="ByteString" Value="5" />
|
|
27
|
+
</opc:EnumeratedType>
|
|
28
|
+
|
|
29
|
+
<opc:StructuredType Name="TwoByteNodeId">
|
|
30
|
+
<opc:Field Name="Identifier" TypeName="opc:Byte" />
|
|
31
|
+
</opc:StructuredType>
|
|
32
|
+
|
|
33
|
+
<opc:StructuredType Name="FourByteNodeId">
|
|
34
|
+
<opc:Field Name="NamespaceIndex" TypeName="opc:Byte" />
|
|
35
|
+
<opc:Field Name="Identifier" TypeName="opc:UInt16" />
|
|
36
|
+
</opc:StructuredType>
|
|
37
|
+
|
|
38
|
+
<opc:StructuredType Name="NumericNodeId">
|
|
39
|
+
<opc:Field Name="NamespaceIndex" TypeName="opc:UInt16" />
|
|
40
|
+
<opc:Field Name="Identifier" TypeName="opc:UInt32" />
|
|
41
|
+
</opc:StructuredType>
|
|
42
|
+
|
|
43
|
+
<opc:StructuredType Name="StringNodeId">
|
|
44
|
+
<opc:Field Name="NamespaceIndex" TypeName="opc:UInt16" />
|
|
45
|
+
<opc:Field Name="Identifier" TypeName="opc:CharArray" />
|
|
46
|
+
</opc:StructuredType>
|
|
47
|
+
|
|
48
|
+
<opc:StructuredType Name="GuidNodeId">
|
|
49
|
+
<opc:Field Name="NamespaceIndex" TypeName="opc:UInt16" />
|
|
50
|
+
<opc:Field Name="Identifier" TypeName="opc:Guid" />
|
|
51
|
+
</opc:StructuredType>
|
|
52
|
+
|
|
53
|
+
<opc:StructuredType Name="ByteStringNodeId">
|
|
54
|
+
<opc:Field Name="NamespaceIndex" TypeName="opc:UInt16" />
|
|
55
|
+
<opc:Field Name="Identifier" TypeName="opc:ByteString" />
|
|
56
|
+
</opc:StructuredType>
|
|
57
|
+
|
|
58
|
+
<opc:StructuredType Name="NodeId">
|
|
59
|
+
<opc:Documentation>An identifier for a node in a UA server address space.</opc:Documentation>
|
|
60
|
+
<opc:Field Name="NodeIdType" TypeName="ua:NodeIdType" />
|
|
61
|
+
<opc:Field Name="Reserved1" TypeName="opc:Bit" Length="2" />
|
|
62
|
+
<opc:Field Name="TwoByte" TypeName="ua:TwoByteNodeId" SwitchField="NodeIdType" SwitchValue="0" />
|
|
63
|
+
<opc:Field Name="FourByte" TypeName="ua:FourByteNodeId" SwitchField="NodeIdType" SwitchValue="1" />
|
|
64
|
+
<opc:Field Name="Numeric" TypeName="ua:NumericNodeId" SwitchField="NodeIdType" SwitchValue="2" />
|
|
65
|
+
<opc:Field Name="String" TypeName="ua:StringNodeId" SwitchField="NodeIdType" SwitchValue="3" />
|
|
66
|
+
<opc:Field Name="Guid" TypeName="ua:GuidNodeId" SwitchField="NodeIdType" SwitchValue="4" />
|
|
67
|
+
<opc:Field Name="ByteString" TypeName="ua:ByteStringNodeId" SwitchField="NodeIdType" SwitchValue="5" />
|
|
68
|
+
</opc:StructuredType>
|
|
69
|
+
|
|
70
|
+
<opc:StructuredType Name="ExpandedNodeId">
|
|
71
|
+
<opc:Documentation>An identifier for a node in a UA server address space qualified with a complete namespace string.</opc:Documentation>
|
|
72
|
+
<opc:Field Name="NodeIdType" TypeName="ua:NodeIdType" />
|
|
73
|
+
<opc:Field Name="ServerIndexSpecified" TypeName="opc:Bit" />
|
|
74
|
+
<opc:Field Name="NamespaceURISpecified" TypeName="opc:Bit" />
|
|
75
|
+
<opc:Field Name="TwoByte" TypeName="ua:TwoByteNodeId" SwitchField="NodeIdType" SwitchValue="0" />
|
|
76
|
+
<opc:Field Name="FourByte" TypeName="ua:FourByteNodeId" SwitchField="NodeIdType" SwitchValue="1" />
|
|
77
|
+
<opc:Field Name="Numeric" TypeName="ua:NumericNodeId" SwitchField="NodeIdType" SwitchValue="2" />
|
|
78
|
+
<opc:Field Name="String" TypeName="ua:StringNodeId" SwitchField="NodeIdType" SwitchValue="3" />
|
|
79
|
+
<opc:Field Name="Guid" TypeName="ua:GuidNodeId" SwitchField="NodeIdType" SwitchValue="4" />
|
|
80
|
+
<opc:Field Name="ByteString" TypeName="ua:ByteStringNodeId" SwitchField="NodeIdType" SwitchValue="5" />
|
|
81
|
+
<opc:Field Name="NamespaceURI" TypeName="opc:CharArray" SwitchField="NamespaceURISpecified"/>
|
|
82
|
+
<opc:Field Name="ServerIndex" TypeName="opc:UInt32" SwitchField="ServerIndexSpecified"/>
|
|
83
|
+
</opc:StructuredType>
|
|
84
|
+
|
|
85
|
+
<opc:OpaqueType Name="StatusCode" LengthInBits="32" ByteOrderSignificant="true">
|
|
86
|
+
<opc:Documentation>A 32-bit status code value.</opc:Documentation>
|
|
87
|
+
</opc:OpaqueType>
|
|
88
|
+
|
|
89
|
+
<opc:StructuredType Name="DiagnosticInfo">
|
|
90
|
+
<opc:Documentation>A recursive structure containing diagnostic information associated with a status code.</opc:Documentation>
|
|
91
|
+
<opc:Field Name="SymbolicIdSpecified" TypeName="opc:Bit" />
|
|
92
|
+
<opc:Field Name="NamespaceURISpecified" TypeName="opc:Bit" />
|
|
93
|
+
<opc:Field Name="LocaleSpecified" TypeName="opc:Bit" />
|
|
94
|
+
<opc:Field Name="LocalizedTextSpecified" TypeName="opc:Bit" />
|
|
95
|
+
<opc:Field Name="AdditionalInfoSpecified" TypeName="opc:Bit" />
|
|
96
|
+
<opc:Field Name="InnerStatusCodeSpecified" TypeName="opc:Bit" />
|
|
97
|
+
<opc:Field Name="InnerDiagnosticInfoSpecified" TypeName="opc:Bit" />
|
|
98
|
+
<opc:Field Name="Reserved1" TypeName="opc:Bit" Length="2" />
|
|
99
|
+
<opc:Field Name="SymbolicId" TypeName="opc:Int32" SwitchField="SymbolicIdSpecified" />
|
|
100
|
+
<opc:Field Name="NamespaceURI" TypeName="opc:Int32" SwitchField="NamespaceURISpecified" />
|
|
101
|
+
<opc:Field Name="Locale" TypeName="opc:Int32" SwitchField="LocaleSpecified" />
|
|
102
|
+
<opc:Field Name="LocalizedText" TypeName="opc:Int32" SwitchField="LocalizedTextSpecified" />
|
|
103
|
+
<opc:Field Name="AdditionalInfo" TypeName="opc:CharArray" SwitchField="AdditionalInfoSpecified" />
|
|
104
|
+
<opc:Field Name="InnerStatusCode" TypeName="ua:StatusCode" SwitchField="InnerStatusCodeSpecified" />
|
|
105
|
+
<opc:Field Name="InnerDiagnosticInfo" TypeName="ua:DiagnosticInfo" SwitchField="InnerDiagnosticInfoSpecified" />
|
|
106
|
+
</opc:StructuredType>
|
|
107
|
+
|
|
108
|
+
<opc:StructuredType Name="QualifiedName">
|
|
109
|
+
<opc:Documentation>A string qualified with a namespace index.</opc:Documentation>
|
|
110
|
+
<opc:Field Name="NamespaceIndex" TypeName="opc:Int32" />
|
|
111
|
+
<opc:Field Name="Name" TypeName="opc:CharArray" />
|
|
112
|
+
</opc:StructuredType>
|
|
113
|
+
|
|
114
|
+
<opc:StructuredType Name="LocalizedText">
|
|
115
|
+
<opc:Documentation>A string qualified with a namespace index.</opc:Documentation>
|
|
116
|
+
<opc:Field Name="LocaleSpecified" TypeName="opc:Bit" />
|
|
117
|
+
<opc:Field Name="TextSpecified" TypeName="opc:Bit" />
|
|
118
|
+
<opc:Field Name="Reserved1" TypeName="opc:Bit" Length="6" />
|
|
119
|
+
<opc:Field Name="Locale" TypeName="opc:CharArray" SwitchField="LocaleSpecified" />
|
|
120
|
+
<opc:Field Name="Text" TypeName="opc:CharArray" SwitchField="TextSpecified" />
|
|
121
|
+
</opc:StructuredType>
|
|
122
|
+
|
|
123
|
+
<opc:StructuredType Name="DataValue">
|
|
124
|
+
<opc:Documentation>A value with an associated timestamp, and quality.</opc:Documentation>
|
|
125
|
+
<opc:Field Name="ValueSpecified" TypeName="opc:Bit" />
|
|
126
|
+
<opc:Field Name="StatusCodeSpecified" TypeName="opc:Bit" />
|
|
127
|
+
<opc:Field Name="SourceTimestampSpecified" TypeName="opc:Bit" />
|
|
128
|
+
<opc:Field Name="SourcePicosecondsSpecified" TypeName="opc:Bit" />
|
|
129
|
+
<opc:Field Name="ServerTimestampSpecified" TypeName="opc:Bit" />
|
|
130
|
+
<opc:Field Name="ServerPicosecondsSpecified" TypeName="opc:Bit" />
|
|
131
|
+
<opc:Field Name="Reserved1" TypeName="opc:Bit" Length="2" />
|
|
132
|
+
<opc:Field Name="Value" TypeName="ua:Variant" SwitchField="ValueSpecified" />
|
|
133
|
+
<opc:Field Name="StatusCode" TypeName="ua:StatusCode" SwitchField="StatusCodeSpecified" />
|
|
134
|
+
<opc:Field Name="SourceTimestamp" TypeName="opc:DateTime" SwitchField="SourceTimestampSpecified" />
|
|
135
|
+
<opc:Field Name="SourcePicoseconds" TypeName="opc:UInt16" SwitchField="SourcePicosecondsSpecified" />
|
|
136
|
+
<opc:Field Name="ServerTimestamp" TypeName="opc:DateTime" SwitchField="ServerTimestampSpecified" />
|
|
137
|
+
<opc:Field Name="ServerPicoseconds" TypeName="opc:UInt16" SwitchField="ServerPicosecondsSpecified" />
|
|
138
|
+
</opc:StructuredType>
|
|
139
|
+
|
|
140
|
+
<opc:StructuredType Name="ExtensionObject">
|
|
141
|
+
<opc:Documentation>A serialized object prefixed with its data type identifier.</opc:Documentation>
|
|
142
|
+
<opc:Field Name="TypeIdSpecified" TypeName="opc:Bit" />
|
|
143
|
+
<opc:Field Name="BinaryBody" TypeName="opc:Bit" />
|
|
144
|
+
<opc:Field Name="XmlBody" TypeName="opc:Bit" />
|
|
145
|
+
<opc:Field Name="Reserved1" TypeName="opc:Bit" Length="5" />
|
|
146
|
+
<opc:Field Name="TypeId" TypeName="ua:ExpandedNodeId" SwitchField="TypeIdSpecified" />
|
|
147
|
+
<opc:Field Name="BodyLength" TypeName="opc:Int32" />
|
|
148
|
+
<opc:Field Name="Body" TypeName="opc:Byte" LengthField="BodyLength" />
|
|
149
|
+
</opc:StructuredType>
|
|
150
|
+
|
|
151
|
+
<opc:StructuredType Name="Variant">
|
|
152
|
+
<opc:Documentation>A union of several types.</opc:Documentation>
|
|
153
|
+
<opc:Field Name="VariantType" TypeName="opc:Bit" Length="6" />
|
|
154
|
+
<opc:Field Name="ArrayDimensionsSpecified" TypeName="opc:Bit" Length="1"/>
|
|
155
|
+
<opc:Field Name="ArrayLengthSpecified" TypeName="opc:Bit" Length="1"/>
|
|
156
|
+
<opc:Field Name="ArrayLength" TypeName="opc:Int32" SwitchField="ArrayLengthSpecified" />
|
|
157
|
+
<opc:Field Name="Boolean" TypeName="opc:Boolean" LengthField="ArrayLength" SwitchField="VariantType" SwitchValue="1" />
|
|
158
|
+
<opc:Field Name="SByte" TypeName="opc:SByte" LengthField="ArrayLength" SwitchField="VariantType" SwitchValue="2" />
|
|
159
|
+
<opc:Field Name="Byte" TypeName="opc:Byte" LengthField="ArrayLength" SwitchField="VariantType" SwitchValue="3" />
|
|
160
|
+
<opc:Field Name="Int16" TypeName="opc:Int16" LengthField="ArrayLength" SwitchField="VariantType" SwitchValue="4" />
|
|
161
|
+
<opc:Field Name="UInt16" TypeName="opc:UInt16" LengthField="ArrayLength" SwitchField="VariantType" SwitchValue="5" />
|
|
162
|
+
<opc:Field Name="Int32" TypeName="opc:Int32" LengthField="ArrayLength" SwitchField="VariantType" SwitchValue="6" />
|
|
163
|
+
<opc:Field Name="UInt32" TypeName="opc:UInt32" LengthField="ArrayLength" SwitchField="VariantType" SwitchValue="7" />
|
|
164
|
+
<opc:Field Name="Int64" TypeName="opc:Int64" LengthField="ArrayLength" SwitchField="VariantType" SwitchValue="8" />
|
|
165
|
+
<opc:Field Name="UInt64" TypeName="opc:UInt64" LengthField="ArrayLength" SwitchField="VariantType" SwitchValue="9" />
|
|
166
|
+
<opc:Field Name="Float" TypeName="opc:Float" LengthField="ArrayLength" SwitchField="VariantType" SwitchValue="10" />
|
|
167
|
+
<opc:Field Name="Double" TypeName="opc:Double" LengthField="ArrayLength" SwitchField="VariantType" SwitchValue="11" />
|
|
168
|
+
<opc:Field Name="String" TypeName="opc:CharArray" LengthField="ArrayLength" SwitchField="VariantType" SwitchValue="12" />
|
|
169
|
+
<opc:Field Name="DateTime" TypeName="opc:DateTime" LengthField="ArrayLength" SwitchField="VariantType" SwitchValue="13" />
|
|
170
|
+
<opc:Field Name="Guid" TypeName="opc:Guid" LengthField="ArrayLength" SwitchField="VariantType" SwitchValue="14" />
|
|
171
|
+
<opc:Field Name="ByteString" TypeName="opc:ByteString" LengthField="ArrayLength" SwitchField="VariantType" SwitchValue="15" />
|
|
172
|
+
<opc:Field Name="XmlElement" TypeName="ua:XmlElement" LengthField="ArrayLength" SwitchField="VariantType" SwitchValue="16" />
|
|
173
|
+
<opc:Field Name="NodeId" TypeName="ua:NodeId" LengthField="ArrayLength" SwitchField="VariantType" SwitchValue="17" />
|
|
174
|
+
<opc:Field Name="ExpandedNodeId" TypeName="ua:ExpandedNodeId" LengthField="ArrayLength" SwitchField="VariantType" SwitchValue="18" />
|
|
175
|
+
<opc:Field Name="StatusCode" TypeName="ua:StatusCode" LengthField="ArrayLength" SwitchField="VariantType" SwitchValue="19" />
|
|
176
|
+
<opc:Field Name="QualifiedName" TypeName="ua:QualifiedName" LengthField="ArrayLength" SwitchField="VariantType" SwitchValue="20" />
|
|
177
|
+
<opc:Field Name="LocalizedText" TypeName="ua:LocalizedText" LengthField="ArrayLength" SwitchField="VariantType" SwitchValue="21" />
|
|
178
|
+
<opc:Field Name="ExtensionObject" TypeName="ua:ExtensionObject" LengthField="ArrayLength" SwitchField="VariantType" SwitchValue="22" />
|
|
179
|
+
<opc:Field Name="DataValue" TypeName="ua:DataValue" LengthField="ArrayLength" SwitchField="VariantType" SwitchValue="23" />
|
|
180
|
+
<opc:Field Name="Variant" TypeName="ua:Variant" LengthField="ArrayLength" SwitchField="VariantType" SwitchValue="24" />
|
|
181
|
+
<opc:Field Name="DiagnosticInfo" TypeName="ua:DiagnosticInfo" LengthField="ArrayLength" SwitchField="VariantType" SwitchValue="25" />
|
|
182
|
+
<opc:Field Name="NoOfArrayDimensions" TypeName="opc:Int32" SwitchField="ArrayDimensionsSpecified" />
|
|
183
|
+
<opc:Field Name="ArrayDimensions" TypeName="opc:Int32" LengthField="NoOfArrayDimensions" SwitchField="ArrayDimensionsSpecified" />
|
|
184
|
+
</opc:StructuredType>
|
|
185
|
+
|
|
186
|
+
<opc:EnumeratedType Name="NamingRuleType" LengthInBits="32">
|
|
187
|
+
<opc:EnumeratedValue Name="Mandatory" Value="1" />
|
|
188
|
+
<opc:EnumeratedValue Name="Optional" Value="2" />
|
|
189
|
+
<opc:EnumeratedValue Name="Constraint" Value="3" />
|
|
190
|
+
</opc:EnumeratedType>
|
|
191
|
+
|
|
192
|
+
|
|
193
|
+
<opc:OpaqueType Name="ImageBMP">
|
|
194
|
+
<opc:Documentation>An image encoded in BMP format.</opc:Documentation>
|
|
195
|
+
</opc:OpaqueType>
|
|
196
|
+
|
|
197
|
+
<opc:OpaqueType Name="ImageGIF">
|
|
198
|
+
<opc:Documentation>An image encoded in GIF format.</opc:Documentation>
|
|
199
|
+
</opc:OpaqueType>
|
|
200
|
+
|
|
201
|
+
<opc:OpaqueType Name="ImageJPG">
|
|
202
|
+
<opc:Documentation>An image encoded in JPEG format.</opc:Documentation>
|
|
203
|
+
</opc:OpaqueType>
|
|
204
|
+
|
|
205
|
+
<opc:OpaqueType Name="ImagePNG">
|
|
206
|
+
<opc:Documentation>An image encoded in PNG format.</opc:Documentation>
|
|
207
|
+
</opc:OpaqueType>
|
|
208
|
+
|
|
209
|
+
<opc:OpaqueType Name="BitFieldMaskDataType">
|
|
210
|
+
<opc:Documentation>A mask of 32 bits that can be updated individually by using the top 32 bits as a mask.</opc:Documentation>
|
|
211
|
+
</opc:OpaqueType>
|
|
212
|
+
|
|
213
|
+
<opc:EnumeratedType Name="OpenFileMode" LengthInBits="32">
|
|
214
|
+
<opc:EnumeratedValue Name="Read" Value="1" />
|
|
215
|
+
<opc:EnumeratedValue Name="Write" Value="2" />
|
|
216
|
+
<opc:EnumeratedValue Name="EraseExisting" Value="4" />
|
|
217
|
+
<opc:EnumeratedValue Name="Append" Value="8" />
|
|
218
|
+
</opc:EnumeratedType>
|
|
219
|
+
|
|
220
|
+
<opc:EnumeratedType Name="TrustListMasks" LengthInBits="32">
|
|
221
|
+
<opc:EnumeratedValue Name="None" Value="0" />
|
|
222
|
+
<opc:EnumeratedValue Name="TrustedCertificates" Value="1" />
|
|
223
|
+
<opc:EnumeratedValue Name="TrustedCrls" Value="2" />
|
|
224
|
+
<opc:EnumeratedValue Name="IssuerCertificates" Value="4" />
|
|
225
|
+
<opc:EnumeratedValue Name="IssuerCrls" Value="8" />
|
|
226
|
+
<opc:EnumeratedValue Name="All" Value="15" />
|
|
227
|
+
</opc:EnumeratedType>
|
|
228
|
+
|
|
229
|
+
<opc:StructuredType Name="TrustListDataType" BaseType="ua:ExtensionObject">
|
|
230
|
+
<opc:Field Name="SpecifiedLists" TypeName="opc:UInt32" />
|
|
231
|
+
<opc:Field Name="NoOfTrustedCertificates" TypeName="opc:Int32" />
|
|
232
|
+
<opc:Field Name="TrustedCertificates" TypeName="opc:ByteString" LengthField="NoOfTrustedCertificates" />
|
|
233
|
+
<opc:Field Name="NoOfTrustedCrls" TypeName="opc:Int32" />
|
|
234
|
+
<opc:Field Name="TrustedCrls" TypeName="opc:ByteString" LengthField="NoOfTrustedCrls" />
|
|
235
|
+
<opc:Field Name="NoOfIssuerCertificates" TypeName="opc:Int32" />
|
|
236
|
+
<opc:Field Name="IssuerCertificates" TypeName="opc:ByteString" LengthField="NoOfIssuerCertificates" />
|
|
237
|
+
<opc:Field Name="NoOfIssuerCrls" TypeName="opc:Int32" />
|
|
238
|
+
<opc:Field Name="IssuerCrls" TypeName="opc:ByteString" LengthField="NoOfIssuerCrls" />
|
|
239
|
+
</opc:StructuredType>
|
|
240
|
+
|
|
241
|
+
<opc:EnumeratedType Name="IdType" LengthInBits="32">
|
|
242
|
+
<opc:Documentation>The type of identifier used in a node id.</opc:Documentation>
|
|
243
|
+
<opc:EnumeratedValue Name="Numeric" Value="0" />
|
|
244
|
+
<opc:EnumeratedValue Name="String" Value="1" />
|
|
245
|
+
<opc:EnumeratedValue Name="Guid" Value="2" />
|
|
246
|
+
<opc:EnumeratedValue Name="Opaque" Value="3" />
|
|
247
|
+
</opc:EnumeratedType>
|
|
248
|
+
|
|
249
|
+
<opc:EnumeratedType Name="NodeClass" LengthInBits="32">
|
|
250
|
+
<opc:Documentation>A mask specifying the class of the node.</opc:Documentation>
|
|
251
|
+
<opc:EnumeratedValue Name="Unspecified" Value="0" />
|
|
252
|
+
<opc:EnumeratedValue Name="Object" Value="1" />
|
|
253
|
+
<opc:EnumeratedValue Name="Variable" Value="2" />
|
|
254
|
+
<opc:EnumeratedValue Name="Method" Value="4" />
|
|
255
|
+
<opc:EnumeratedValue Name="ObjectType" Value="8" />
|
|
256
|
+
<opc:EnumeratedValue Name="VariableType" Value="16" />
|
|
257
|
+
<opc:EnumeratedValue Name="ReferenceType" Value="32" />
|
|
258
|
+
<opc:EnumeratedValue Name="DataType" Value="64" />
|
|
259
|
+
<opc:EnumeratedValue Name="View" Value="128" />
|
|
260
|
+
</opc:EnumeratedType>
|
|
261
|
+
|
|
262
|
+
<opc:StructuredType Name="Node" BaseType="ua:ExtensionObject">
|
|
263
|
+
<opc:Documentation>Specifies the attributes which belong to all nodes.</opc:Documentation>
|
|
264
|
+
<opc:Field Name="NodeId" TypeName="ua:NodeId" />
|
|
265
|
+
<opc:Field Name="NodeClass" TypeName="tns:NodeClass" />
|
|
266
|
+
<opc:Field Name="BrowseName" TypeName="ua:QualifiedName" />
|
|
267
|
+
<opc:Field Name="DisplayName" TypeName="ua:LocalizedText" />
|
|
268
|
+
<opc:Field Name="Description" TypeName="ua:LocalizedText" />
|
|
269
|
+
<opc:Field Name="WriteMask" TypeName="opc:UInt32" />
|
|
270
|
+
<opc:Field Name="UserWriteMask" TypeName="opc:UInt32" />
|
|
271
|
+
<opc:Field Name="NoOfReferences" TypeName="opc:Int32" />
|
|
272
|
+
<opc:Field Name="References" TypeName="tns:ReferenceNode" LengthField="NoOfReferences" />
|
|
273
|
+
</opc:StructuredType>
|
|
274
|
+
|
|
275
|
+
<opc:StructuredType Name="InstanceNode" BaseType="tns:Node">
|
|
276
|
+
<opc:Field Name="NodeId" TypeName="ua:NodeId" SourceType="tns:Node" />
|
|
277
|
+
<opc:Field Name="NodeClass" TypeName="tns:NodeClass" SourceType="tns:Node" />
|
|
278
|
+
<opc:Field Name="BrowseName" TypeName="ua:QualifiedName" SourceType="tns:Node" />
|
|
279
|
+
<opc:Field Name="DisplayName" TypeName="ua:LocalizedText" SourceType="tns:Node" />
|
|
280
|
+
<opc:Field Name="Description" TypeName="ua:LocalizedText" SourceType="tns:Node" />
|
|
281
|
+
<opc:Field Name="WriteMask" TypeName="opc:UInt32" SourceType="tns:Node" />
|
|
282
|
+
<opc:Field Name="UserWriteMask" TypeName="opc:UInt32" SourceType="tns:Node" />
|
|
283
|
+
<opc:Field Name="NoOfReferences" TypeName="opc:Int32" />
|
|
284
|
+
<opc:Field Name="References" TypeName="tns:ReferenceNode" LengthField="NoOfReferences" />
|
|
285
|
+
</opc:StructuredType>
|
|
286
|
+
|
|
287
|
+
<opc:StructuredType Name="TypeNode" BaseType="tns:Node">
|
|
288
|
+
<opc:Field Name="NodeId" TypeName="ua:NodeId" SourceType="tns:Node" />
|
|
289
|
+
<opc:Field Name="NodeClass" TypeName="tns:NodeClass" SourceType="tns:Node" />
|
|
290
|
+
<opc:Field Name="BrowseName" TypeName="ua:QualifiedName" SourceType="tns:Node" />
|
|
291
|
+
<opc:Field Name="DisplayName" TypeName="ua:LocalizedText" SourceType="tns:Node" />
|
|
292
|
+
<opc:Field Name="Description" TypeName="ua:LocalizedText" SourceType="tns:Node" />
|
|
293
|
+
<opc:Field Name="WriteMask" TypeName="opc:UInt32" SourceType="tns:Node" />
|
|
294
|
+
<opc:Field Name="UserWriteMask" TypeName="opc:UInt32" SourceType="tns:Node" />
|
|
295
|
+
<opc:Field Name="NoOfReferences" TypeName="opc:Int32" />
|
|
296
|
+
<opc:Field Name="References" TypeName="tns:ReferenceNode" LengthField="NoOfReferences" />
|
|
297
|
+
</opc:StructuredType>
|
|
298
|
+
|
|
299
|
+
<opc:StructuredType Name="ObjectNode" BaseType="tns:InstanceNode">
|
|
300
|
+
<opc:Documentation>Specifies the attributes which belong to object nodes.</opc:Documentation>
|
|
301
|
+
<opc:Field Name="NodeId" TypeName="ua:NodeId" SourceType="tns:Node" />
|
|
302
|
+
<opc:Field Name="NodeClass" TypeName="tns:NodeClass" SourceType="tns:Node" />
|
|
303
|
+
<opc:Field Name="BrowseName" TypeName="ua:QualifiedName" SourceType="tns:Node" />
|
|
304
|
+
<opc:Field Name="DisplayName" TypeName="ua:LocalizedText" SourceType="tns:Node" />
|
|
305
|
+
<opc:Field Name="Description" TypeName="ua:LocalizedText" SourceType="tns:Node" />
|
|
306
|
+
<opc:Field Name="WriteMask" TypeName="opc:UInt32" SourceType="tns:Node" />
|
|
307
|
+
<opc:Field Name="UserWriteMask" TypeName="opc:UInt32" SourceType="tns:Node" />
|
|
308
|
+
<opc:Field Name="NoOfReferences" TypeName="opc:Int32" />
|
|
309
|
+
<opc:Field Name="References" TypeName="tns:ReferenceNode" LengthField="NoOfReferences" />
|
|
310
|
+
<opc:Field Name="EventNotifier" TypeName="opc:Byte" />
|
|
311
|
+
</opc:StructuredType>
|
|
312
|
+
|
|
313
|
+
<opc:StructuredType Name="ObjectTypeNode" BaseType="tns:TypeNode">
|
|
314
|
+
<opc:Documentation>Specifies the attributes which belong to object type nodes.</opc:Documentation>
|
|
315
|
+
<opc:Field Name="NodeId" TypeName="ua:NodeId" SourceType="tns:Node" />
|
|
316
|
+
<opc:Field Name="NodeClass" TypeName="tns:NodeClass" SourceType="tns:Node" />
|
|
317
|
+
<opc:Field Name="BrowseName" TypeName="ua:QualifiedName" SourceType="tns:Node" />
|
|
318
|
+
<opc:Field Name="DisplayName" TypeName="ua:LocalizedText" SourceType="tns:Node" />
|
|
319
|
+
<opc:Field Name="Description" TypeName="ua:LocalizedText" SourceType="tns:Node" />
|
|
320
|
+
<opc:Field Name="WriteMask" TypeName="opc:UInt32" SourceType="tns:Node" />
|
|
321
|
+
<opc:Field Name="UserWriteMask" TypeName="opc:UInt32" SourceType="tns:Node" />
|
|
322
|
+
<opc:Field Name="NoOfReferences" TypeName="opc:Int32" />
|
|
323
|
+
<opc:Field Name="References" TypeName="tns:ReferenceNode" LengthField="NoOfReferences" />
|
|
324
|
+
<opc:Field Name="IsAbstract" TypeName="opc:Boolean" />
|
|
325
|
+
</opc:StructuredType>
|
|
326
|
+
|
|
327
|
+
<opc:StructuredType Name="VariableNode" BaseType="tns:InstanceNode">
|
|
328
|
+
<opc:Documentation>Specifies the attributes which belong to variable nodes.</opc:Documentation>
|
|
329
|
+
<opc:Field Name="NodeId" TypeName="ua:NodeId" SourceType="tns:Node" />
|
|
330
|
+
<opc:Field Name="NodeClass" TypeName="tns:NodeClass" SourceType="tns:Node" />
|
|
331
|
+
<opc:Field Name="BrowseName" TypeName="ua:QualifiedName" SourceType="tns:Node" />
|
|
332
|
+
<opc:Field Name="DisplayName" TypeName="ua:LocalizedText" SourceType="tns:Node" />
|
|
333
|
+
<opc:Field Name="Description" TypeName="ua:LocalizedText" SourceType="tns:Node" />
|
|
334
|
+
<opc:Field Name="WriteMask" TypeName="opc:UInt32" SourceType="tns:Node" />
|
|
335
|
+
<opc:Field Name="UserWriteMask" TypeName="opc:UInt32" SourceType="tns:Node" />
|
|
336
|
+
<opc:Field Name="NoOfReferences" TypeName="opc:Int32" />
|
|
337
|
+
<opc:Field Name="References" TypeName="tns:ReferenceNode" LengthField="NoOfReferences" />
|
|
338
|
+
<opc:Field Name="Value" TypeName="ua:Variant" />
|
|
339
|
+
<opc:Field Name="DataType" TypeName="ua:NodeId" />
|
|
340
|
+
<opc:Field Name="ValueRank" TypeName="opc:Int32" />
|
|
341
|
+
<opc:Field Name="NoOfArrayDimensions" TypeName="opc:Int32" />
|
|
342
|
+
<opc:Field Name="ArrayDimensions" TypeName="opc:UInt32" LengthField="NoOfArrayDimensions" />
|
|
343
|
+
<opc:Field Name="AccessLevel" TypeName="opc:Byte" />
|
|
344
|
+
<opc:Field Name="UserAccessLevel" TypeName="opc:Byte" />
|
|
345
|
+
<opc:Field Name="MinimumSamplingInterval" TypeName="opc:Double" />
|
|
346
|
+
<opc:Field Name="Historizing" TypeName="opc:Boolean" />
|
|
347
|
+
</opc:StructuredType>
|
|
348
|
+
|
|
349
|
+
<opc:StructuredType Name="VariableTypeNode" BaseType="tns:TypeNode">
|
|
350
|
+
<opc:Documentation>Specifies the attributes which belong to variable type nodes.</opc:Documentation>
|
|
351
|
+
<opc:Field Name="NodeId" TypeName="ua:NodeId" SourceType="tns:Node" />
|
|
352
|
+
<opc:Field Name="NodeClass" TypeName="tns:NodeClass" SourceType="tns:Node" />
|
|
353
|
+
<opc:Field Name="BrowseName" TypeName="ua:QualifiedName" SourceType="tns:Node" />
|
|
354
|
+
<opc:Field Name="DisplayName" TypeName="ua:LocalizedText" SourceType="tns:Node" />
|
|
355
|
+
<opc:Field Name="Description" TypeName="ua:LocalizedText" SourceType="tns:Node" />
|
|
356
|
+
<opc:Field Name="WriteMask" TypeName="opc:UInt32" SourceType="tns:Node" />
|
|
357
|
+
<opc:Field Name="UserWriteMask" TypeName="opc:UInt32" SourceType="tns:Node" />
|
|
358
|
+
<opc:Field Name="NoOfReferences" TypeName="opc:Int32" />
|
|
359
|
+
<opc:Field Name="References" TypeName="tns:ReferenceNode" LengthField="NoOfReferences" />
|
|
360
|
+
<opc:Field Name="Value" TypeName="ua:Variant" />
|
|
361
|
+
<opc:Field Name="DataType" TypeName="ua:NodeId" />
|
|
362
|
+
<opc:Field Name="ValueRank" TypeName="opc:Int32" />
|
|
363
|
+
<opc:Field Name="NoOfArrayDimensions" TypeName="opc:Int32" />
|
|
364
|
+
<opc:Field Name="ArrayDimensions" TypeName="opc:UInt32" LengthField="NoOfArrayDimensions" />
|
|
365
|
+
<opc:Field Name="IsAbstract" TypeName="opc:Boolean" />
|
|
366
|
+
</opc:StructuredType>
|
|
367
|
+
|
|
368
|
+
<opc:StructuredType Name="ReferenceTypeNode" BaseType="tns:TypeNode">
|
|
369
|
+
<opc:Documentation>Specifies the attributes which belong to reference type nodes.</opc:Documentation>
|
|
370
|
+
<opc:Field Name="NodeId" TypeName="ua:NodeId" SourceType="tns:Node" />
|
|
371
|
+
<opc:Field Name="NodeClass" TypeName="tns:NodeClass" SourceType="tns:Node" />
|
|
372
|
+
<opc:Field Name="BrowseName" TypeName="ua:QualifiedName" SourceType="tns:Node" />
|
|
373
|
+
<opc:Field Name="DisplayName" TypeName="ua:LocalizedText" SourceType="tns:Node" />
|
|
374
|
+
<opc:Field Name="Description" TypeName="ua:LocalizedText" SourceType="tns:Node" />
|
|
375
|
+
<opc:Field Name="WriteMask" TypeName="opc:UInt32" SourceType="tns:Node" />
|
|
376
|
+
<opc:Field Name="UserWriteMask" TypeName="opc:UInt32" SourceType="tns:Node" />
|
|
377
|
+
<opc:Field Name="NoOfReferences" TypeName="opc:Int32" />
|
|
378
|
+
<opc:Field Name="References" TypeName="tns:ReferenceNode" LengthField="NoOfReferences" />
|
|
379
|
+
<opc:Field Name="IsAbstract" TypeName="opc:Boolean" />
|
|
380
|
+
<opc:Field Name="Symmetric" TypeName="opc:Boolean" />
|
|
381
|
+
<opc:Field Name="InverseName" TypeName="ua:LocalizedText" />
|
|
382
|
+
</opc:StructuredType>
|
|
383
|
+
|
|
384
|
+
<opc:StructuredType Name="MethodNode" BaseType="tns:InstanceNode">
|
|
385
|
+
<opc:Documentation>Specifies the attributes which belong to method nodes.</opc:Documentation>
|
|
386
|
+
<opc:Field Name="NodeId" TypeName="ua:NodeId" SourceType="tns:Node" />
|
|
387
|
+
<opc:Field Name="NodeClass" TypeName="tns:NodeClass" SourceType="tns:Node" />
|
|
388
|
+
<opc:Field Name="BrowseName" TypeName="ua:QualifiedName" SourceType="tns:Node" />
|
|
389
|
+
<opc:Field Name="DisplayName" TypeName="ua:LocalizedText" SourceType="tns:Node" />
|
|
390
|
+
<opc:Field Name="Description" TypeName="ua:LocalizedText" SourceType="tns:Node" />
|
|
391
|
+
<opc:Field Name="WriteMask" TypeName="opc:UInt32" SourceType="tns:Node" />
|
|
392
|
+
<opc:Field Name="UserWriteMask" TypeName="opc:UInt32" SourceType="tns:Node" />
|
|
393
|
+
<opc:Field Name="NoOfReferences" TypeName="opc:Int32" />
|
|
394
|
+
<opc:Field Name="References" TypeName="tns:ReferenceNode" LengthField="NoOfReferences" />
|
|
395
|
+
<opc:Field Name="Executable" TypeName="opc:Boolean" />
|
|
396
|
+
<opc:Field Name="UserExecutable" TypeName="opc:Boolean" />
|
|
397
|
+
</opc:StructuredType>
|
|
398
|
+
|
|
399
|
+
<opc:StructuredType Name="ViewNode" BaseType="tns:InstanceNode">
|
|
400
|
+
<opc:Field Name="NodeId" TypeName="ua:NodeId" SourceType="tns:Node" />
|
|
401
|
+
<opc:Field Name="NodeClass" TypeName="tns:NodeClass" SourceType="tns:Node" />
|
|
402
|
+
<opc:Field Name="BrowseName" TypeName="ua:QualifiedName" SourceType="tns:Node" />
|
|
403
|
+
<opc:Field Name="DisplayName" TypeName="ua:LocalizedText" SourceType="tns:Node" />
|
|
404
|
+
<opc:Field Name="Description" TypeName="ua:LocalizedText" SourceType="tns:Node" />
|
|
405
|
+
<opc:Field Name="WriteMask" TypeName="opc:UInt32" SourceType="tns:Node" />
|
|
406
|
+
<opc:Field Name="UserWriteMask" TypeName="opc:UInt32" SourceType="tns:Node" />
|
|
407
|
+
<opc:Field Name="NoOfReferences" TypeName="opc:Int32" />
|
|
408
|
+
<opc:Field Name="References" TypeName="tns:ReferenceNode" LengthField="NoOfReferences" />
|
|
409
|
+
<opc:Field Name="ContainsNoLoops" TypeName="opc:Boolean" />
|
|
410
|
+
<opc:Field Name="EventNotifier" TypeName="opc:Byte" />
|
|
411
|
+
</opc:StructuredType>
|
|
412
|
+
|
|
413
|
+
<opc:StructuredType Name="DataTypeNode" BaseType="tns:TypeNode">
|
|
414
|
+
<opc:Field Name="NodeId" TypeName="ua:NodeId" SourceType="tns:Node" />
|
|
415
|
+
<opc:Field Name="NodeClass" TypeName="tns:NodeClass" SourceType="tns:Node" />
|
|
416
|
+
<opc:Field Name="BrowseName" TypeName="ua:QualifiedName" SourceType="tns:Node" />
|
|
417
|
+
<opc:Field Name="DisplayName" TypeName="ua:LocalizedText" SourceType="tns:Node" />
|
|
418
|
+
<opc:Field Name="Description" TypeName="ua:LocalizedText" SourceType="tns:Node" />
|
|
419
|
+
<opc:Field Name="WriteMask" TypeName="opc:UInt32" SourceType="tns:Node" />
|
|
420
|
+
<opc:Field Name="UserWriteMask" TypeName="opc:UInt32" SourceType="tns:Node" />
|
|
421
|
+
<opc:Field Name="NoOfReferences" TypeName="opc:Int32" />
|
|
422
|
+
<opc:Field Name="References" TypeName="tns:ReferenceNode" LengthField="NoOfReferences" />
|
|
423
|
+
<opc:Field Name="IsAbstract" TypeName="opc:Boolean" />
|
|
424
|
+
</opc:StructuredType>
|
|
425
|
+
|
|
426
|
+
<opc:StructuredType Name="ReferenceNode" BaseType="ua:ExtensionObject">
|
|
427
|
+
<opc:Documentation>Specifies a reference which belongs to a node.</opc:Documentation>
|
|
428
|
+
<opc:Field Name="ReferenceTypeId" TypeName="ua:NodeId" />
|
|
429
|
+
<opc:Field Name="IsInverse" TypeName="opc:Boolean" />
|
|
430
|
+
<opc:Field Name="TargetId" TypeName="ua:ExpandedNodeId" />
|
|
431
|
+
</opc:StructuredType>
|
|
432
|
+
|
|
433
|
+
<opc:StructuredType Name="Argument" BaseType="ua:ExtensionObject">
|
|
434
|
+
<opc:Documentation>An argument for a method.</opc:Documentation>
|
|
435
|
+
<opc:Field Name="Name" TypeName="opc:String" />
|
|
436
|
+
<opc:Field Name="DataType" TypeName="ua:NodeId" />
|
|
437
|
+
<opc:Field Name="ValueRank" TypeName="opc:Int32" />
|
|
438
|
+
<opc:Field Name="NoOfArrayDimensions" TypeName="opc:Int32" />
|
|
439
|
+
<opc:Field Name="ArrayDimensions" TypeName="opc:UInt32" LengthField="NoOfArrayDimensions" />
|
|
440
|
+
<opc:Field Name="Description" TypeName="ua:LocalizedText" />
|
|
441
|
+
</opc:StructuredType>
|
|
442
|
+
|
|
443
|
+
<opc:StructuredType Name="EnumValueType" BaseType="ua:ExtensionObject">
|
|
444
|
+
<opc:Documentation>A mapping between a value of an enumerated type and a name and description.</opc:Documentation>
|
|
445
|
+
<opc:Field Name="Value" TypeName="opc:Int64" />
|
|
446
|
+
<opc:Field Name="DisplayName" TypeName="ua:LocalizedText" />
|
|
447
|
+
<opc:Field Name="Description" TypeName="ua:LocalizedText" />
|
|
448
|
+
</opc:StructuredType>
|
|
449
|
+
|
|
450
|
+
<opc:StructuredType Name="OptionSet" BaseType="ua:ExtensionObject">
|
|
451
|
+
<opc:Documentation>This abstract Structured DataType is the base DataType for all DataTypes representing a bit mask.</opc:Documentation>
|
|
452
|
+
<opc:Field Name="Value" TypeName="opc:ByteString" />
|
|
453
|
+
<opc:Field Name="ValidBits" TypeName="opc:ByteString" />
|
|
454
|
+
</opc:StructuredType>
|
|
455
|
+
|
|
456
|
+
<opc:StructuredType Name="Union" BaseType="ua:ExtensionObject">
|
|
457
|
+
<opc:Documentation>This abstract DataType is the base DataType for all union DataTypes.</opc:Documentation>
|
|
458
|
+
</opc:StructuredType>
|
|
459
|
+
|
|
460
|
+
<opc:OpaqueType Name="NormalizedString">
|
|
461
|
+
<opc:Documentation>A string normalized based on the rules in the unicode specification.</opc:Documentation>
|
|
462
|
+
</opc:OpaqueType>
|
|
463
|
+
|
|
464
|
+
<opc:OpaqueType Name="DecimalString">
|
|
465
|
+
<opc:Documentation>An arbitraty numeric value.</opc:Documentation>
|
|
466
|
+
</opc:OpaqueType>
|
|
467
|
+
|
|
468
|
+
<opc:OpaqueType Name="DurationString">
|
|
469
|
+
<opc:Documentation>A period of time formatted as defined in ISO 8601-2000.</opc:Documentation>
|
|
470
|
+
</opc:OpaqueType>
|
|
471
|
+
|
|
472
|
+
<opc:OpaqueType Name="TimeString">
|
|
473
|
+
<opc:Documentation>A time formatted as defined in ISO 8601-2000.</opc:Documentation>
|
|
474
|
+
</opc:OpaqueType>
|
|
475
|
+
|
|
476
|
+
<opc:OpaqueType Name="DateString">
|
|
477
|
+
<opc:Documentation>A date formatted as defined in ISO 8601-2000.</opc:Documentation>
|
|
478
|
+
</opc:OpaqueType>
|
|
479
|
+
|
|
480
|
+
<opc:OpaqueType Name="Duration">
|
|
481
|
+
<opc:Documentation>A period of time measured in milliseconds.</opc:Documentation>
|
|
482
|
+
</opc:OpaqueType>
|
|
483
|
+
|
|
484
|
+
<opc:OpaqueType Name="UtcTime">
|
|
485
|
+
<opc:Documentation>A date/time value specified in Universal Coordinated Time (UTC).</opc:Documentation>
|
|
486
|
+
</opc:OpaqueType>
|
|
487
|
+
|
|
488
|
+
<opc:OpaqueType Name="LocaleId">
|
|
489
|
+
<opc:Documentation>An identifier for a user locale.</opc:Documentation>
|
|
490
|
+
</opc:OpaqueType>
|
|
491
|
+
|
|
492
|
+
<opc:StructuredType Name="TimeZoneDataType" BaseType="ua:ExtensionObject">
|
|
493
|
+
<opc:Field Name="Offset" TypeName="opc:Int16" />
|
|
494
|
+
<opc:Field Name="DaylightSavingInOffset" TypeName="opc:Boolean" />
|
|
495
|
+
</opc:StructuredType>
|
|
496
|
+
|
|
497
|
+
<opc:OpaqueType Name="IntegerId">
|
|
498
|
+
<opc:Documentation>A numeric identifier for an object.</opc:Documentation>
|
|
499
|
+
</opc:OpaqueType>
|
|
500
|
+
|
|
501
|
+
<opc:EnumeratedType Name="ApplicationType" LengthInBits="32">
|
|
502
|
+
<opc:Documentation>The types of applications.</opc:Documentation>
|
|
503
|
+
<opc:EnumeratedValue Name="Server" Value="0" />
|
|
504
|
+
<opc:EnumeratedValue Name="Client" Value="1" />
|
|
505
|
+
<opc:EnumeratedValue Name="ClientAndServer" Value="2" />
|
|
506
|
+
<opc:EnumeratedValue Name="DiscoveryServer" Value="3" />
|
|
507
|
+
</opc:EnumeratedType>
|
|
508
|
+
|
|
509
|
+
<opc:StructuredType Name="ApplicationDescription" BaseType="ua:ExtensionObject">
|
|
510
|
+
<opc:Documentation>Describes an application and how to find it.</opc:Documentation>
|
|
511
|
+
<opc:Field Name="ApplicationUri" TypeName="opc:String" />
|
|
512
|
+
<opc:Field Name="ProductUri" TypeName="opc:String" />
|
|
513
|
+
<opc:Field Name="ApplicationName" TypeName="ua:LocalizedText" />
|
|
514
|
+
<opc:Field Name="ApplicationType" TypeName="tns:ApplicationType" />
|
|
515
|
+
<opc:Field Name="GatewayServerUri" TypeName="opc:String" />
|
|
516
|
+
<opc:Field Name="DiscoveryProfileUri" TypeName="opc:String" />
|
|
517
|
+
<opc:Field Name="NoOfDiscoveryUrls" TypeName="opc:Int32" />
|
|
518
|
+
<opc:Field Name="DiscoveryUrls" TypeName="opc:String" LengthField="NoOfDiscoveryUrls" />
|
|
519
|
+
</opc:StructuredType>
|
|
520
|
+
|
|
521
|
+
<opc:StructuredType Name="RequestHeader" BaseType="ua:ExtensionObject">
|
|
522
|
+
<opc:Documentation>The header passed with every server request.</opc:Documentation>
|
|
523
|
+
<opc:Field Name="AuthenticationToken" TypeName="ua:NodeId" />
|
|
524
|
+
<opc:Field Name="Timestamp" TypeName="opc:DateTime" />
|
|
525
|
+
<opc:Field Name="RequestHandle" TypeName="opc:UInt32" />
|
|
526
|
+
<opc:Field Name="ReturnDiagnostics" TypeName="opc:UInt32" />
|
|
527
|
+
<opc:Field Name="AuditEntryId" TypeName="opc:String" />
|
|
528
|
+
<opc:Field Name="TimeoutHint" TypeName="opc:UInt32" />
|
|
529
|
+
<opc:Field Name="AdditionalHeader" TypeName="ua:ExtensionObject" />
|
|
530
|
+
</opc:StructuredType>
|
|
531
|
+
|
|
532
|
+
<opc:StructuredType Name="ResponseHeader" BaseType="ua:ExtensionObject">
|
|
533
|
+
<opc:Documentation>The header passed with every server response.</opc:Documentation>
|
|
534
|
+
<opc:Field Name="Timestamp" TypeName="opc:DateTime" />
|
|
535
|
+
<opc:Field Name="RequestHandle" TypeName="opc:UInt32" />
|
|
536
|
+
<opc:Field Name="ServiceResult" TypeName="ua:StatusCode" />
|
|
537
|
+
<opc:Field Name="ServiceDiagnostics" TypeName="ua:DiagnosticInfo" />
|
|
538
|
+
<opc:Field Name="NoOfStringTable" TypeName="opc:Int32" />
|
|
539
|
+
<opc:Field Name="StringTable" TypeName="opc:String" LengthField="NoOfStringTable" />
|
|
540
|
+
<opc:Field Name="AdditionalHeader" TypeName="ua:ExtensionObject" />
|
|
541
|
+
</opc:StructuredType>
|
|
542
|
+
|
|
543
|
+
<opc:StructuredType Name="ServiceFault" BaseType="ua:ExtensionObject">
|
|
544
|
+
<opc:Documentation>The response returned by all services when there is a service level error.</opc:Documentation>
|
|
545
|
+
<opc:Field Name="ResponseHeader" TypeName="tns:ResponseHeader" />
|
|
546
|
+
</opc:StructuredType>
|
|
547
|
+
|
|
548
|
+
<opc:StructuredType Name="FindServersRequest" BaseType="ua:ExtensionObject">
|
|
549
|
+
<opc:Documentation>Finds the servers known to the discovery server.</opc:Documentation>
|
|
550
|
+
<opc:Field Name="RequestHeader" TypeName="tns:RequestHeader" />
|
|
551
|
+
<opc:Field Name="EndpointUrl" TypeName="opc:String" />
|
|
552
|
+
<opc:Field Name="NoOfLocaleIds" TypeName="opc:Int32" />
|
|
553
|
+
<opc:Field Name="LocaleIds" TypeName="opc:String" LengthField="NoOfLocaleIds" />
|
|
554
|
+
<opc:Field Name="NoOfServerUris" TypeName="opc:Int32" />
|
|
555
|
+
<opc:Field Name="ServerUris" TypeName="opc:String" LengthField="NoOfServerUris" />
|
|
556
|
+
</opc:StructuredType>
|
|
557
|
+
|
|
558
|
+
<opc:StructuredType Name="FindServersResponse" BaseType="ua:ExtensionObject">
|
|
559
|
+
<opc:Documentation>Finds the servers known to the discovery server.</opc:Documentation>
|
|
560
|
+
<opc:Field Name="ResponseHeader" TypeName="tns:ResponseHeader" />
|
|
561
|
+
<opc:Field Name="NoOfServers" TypeName="opc:Int32" />
|
|
562
|
+
<opc:Field Name="Servers" TypeName="tns:ApplicationDescription" LengthField="NoOfServers" />
|
|
563
|
+
</opc:StructuredType>
|
|
564
|
+
|
|
565
|
+
<opc:StructuredType Name="ServerOnNetwork" BaseType="ua:ExtensionObject">
|
|
566
|
+
<opc:Field Name="RecordId" TypeName="opc:UInt32" />
|
|
567
|
+
<opc:Field Name="ServerName" TypeName="opc:String" />
|
|
568
|
+
<opc:Field Name="DiscoveryUrl" TypeName="opc:String" />
|
|
569
|
+
<opc:Field Name="NoOfServerCapabilities" TypeName="opc:Int32" />
|
|
570
|
+
<opc:Field Name="ServerCapabilities" TypeName="opc:String" LengthField="NoOfServerCapabilities" />
|
|
571
|
+
</opc:StructuredType>
|
|
572
|
+
|
|
573
|
+
<opc:StructuredType Name="FindServersOnNetworkRequest" BaseType="ua:ExtensionObject">
|
|
574
|
+
<opc:Field Name="RequestHeader" TypeName="tns:RequestHeader" />
|
|
575
|
+
<opc:Field Name="StartingRecordId" TypeName="opc:UInt32" />
|
|
576
|
+
<opc:Field Name="MaxRecordsToReturn" TypeName="opc:UInt32" />
|
|
577
|
+
<opc:Field Name="NoOfServerCapabilityFilter" TypeName="opc:Int32" />
|
|
578
|
+
<opc:Field Name="ServerCapabilityFilter" TypeName="opc:String" LengthField="NoOfServerCapabilityFilter" />
|
|
579
|
+
</opc:StructuredType>
|
|
580
|
+
|
|
581
|
+
<opc:StructuredType Name="FindServersOnNetworkResponse" BaseType="ua:ExtensionObject">
|
|
582
|
+
<opc:Field Name="ResponseHeader" TypeName="tns:ResponseHeader" />
|
|
583
|
+
<opc:Field Name="LastCounterResetTime" TypeName="opc:DateTime" />
|
|
584
|
+
<opc:Field Name="NoOfServers" TypeName="opc:Int32" />
|
|
585
|
+
<opc:Field Name="Servers" TypeName="tns:ServerOnNetwork" LengthField="NoOfServers" />
|
|
586
|
+
</opc:StructuredType>
|
|
587
|
+
|
|
588
|
+
<opc:OpaqueType Name="ApplicationInstanceCertificate">
|
|
589
|
+
<opc:Documentation>A certificate for an instance of an application.</opc:Documentation>
|
|
590
|
+
</opc:OpaqueType>
|
|
591
|
+
|
|
592
|
+
<opc:EnumeratedType Name="MessageSecurityMode" LengthInBits="32">
|
|
593
|
+
<opc:Documentation>The type of security to use on a message.</opc:Documentation>
|
|
594
|
+
<opc:EnumeratedValue Name="Invalid" Value="0" />
|
|
595
|
+
<opc:EnumeratedValue Name="None" Value="1" />
|
|
596
|
+
<opc:EnumeratedValue Name="Sign" Value="2" />
|
|
597
|
+
<opc:EnumeratedValue Name="SignAndEncrypt" Value="3" />
|
|
598
|
+
</opc:EnumeratedType>
|
|
599
|
+
|
|
600
|
+
<opc:EnumeratedType Name="UserTokenType" LengthInBits="32">
|
|
601
|
+
<opc:Documentation>The possible user token types.</opc:Documentation>
|
|
602
|
+
<opc:EnumeratedValue Name="Anonymous" Value="0" />
|
|
603
|
+
<opc:EnumeratedValue Name="UserName" Value="1" />
|
|
604
|
+
<opc:EnumeratedValue Name="Certificate" Value="2" />
|
|
605
|
+
<opc:EnumeratedValue Name="IssuedToken" Value="3" />
|
|
606
|
+
<opc:EnumeratedValue Name="Kerberos" Value="4" />
|
|
607
|
+
</opc:EnumeratedType>
|
|
608
|
+
|
|
609
|
+
<opc:StructuredType Name="UserTokenPolicy" BaseType="ua:ExtensionObject">
|
|
610
|
+
<opc:Documentation>Describes a user token that can be used with a server.</opc:Documentation>
|
|
611
|
+
<opc:Field Name="PolicyId" TypeName="opc:String" />
|
|
612
|
+
<opc:Field Name="TokenType" TypeName="tns:UserTokenType" />
|
|
613
|
+
<opc:Field Name="IssuedTokenType" TypeName="opc:String" />
|
|
614
|
+
<opc:Field Name="IssuerEndpointUrl" TypeName="opc:String" />
|
|
615
|
+
<opc:Field Name="SecurityPolicyUri" TypeName="opc:String" />
|
|
616
|
+
</opc:StructuredType>
|
|
617
|
+
|
|
618
|
+
<opc:StructuredType Name="EndpointDescription" BaseType="ua:ExtensionObject">
|
|
619
|
+
<opc:Documentation>The description of a endpoint that can be used to access a server.</opc:Documentation>
|
|
620
|
+
<opc:Field Name="EndpointUrl" TypeName="opc:String" />
|
|
621
|
+
<opc:Field Name="Server" TypeName="tns:ApplicationDescription" />
|
|
622
|
+
<opc:Field Name="ServerCertificate" TypeName="opc:ByteString" />
|
|
623
|
+
<opc:Field Name="SecurityMode" TypeName="tns:MessageSecurityMode" />
|
|
624
|
+
<opc:Field Name="SecurityPolicyUri" TypeName="opc:String" />
|
|
625
|
+
<opc:Field Name="NoOfUserIdentityTokens" TypeName="opc:Int32" />
|
|
626
|
+
<opc:Field Name="UserIdentityTokens" TypeName="tns:UserTokenPolicy" LengthField="NoOfUserIdentityTokens" />
|
|
627
|
+
<opc:Field Name="TransportProfileUri" TypeName="opc:String" />
|
|
628
|
+
<opc:Field Name="SecurityLevel" TypeName="opc:Byte" />
|
|
629
|
+
</opc:StructuredType>
|
|
630
|
+
|
|
631
|
+
<opc:StructuredType Name="GetEndpointsRequest" BaseType="ua:ExtensionObject">
|
|
632
|
+
<opc:Documentation>Gets the endpoints used by the server.</opc:Documentation>
|
|
633
|
+
<opc:Field Name="RequestHeader" TypeName="tns:RequestHeader" />
|
|
634
|
+
<opc:Field Name="EndpointUrl" TypeName="opc:String" />
|
|
635
|
+
<opc:Field Name="NoOfLocaleIds" TypeName="opc:Int32" />
|
|
636
|
+
<opc:Field Name="LocaleIds" TypeName="opc:String" LengthField="NoOfLocaleIds" />
|
|
637
|
+
<opc:Field Name="NoOfProfileUris" TypeName="opc:Int32" />
|
|
638
|
+
<opc:Field Name="ProfileUris" TypeName="opc:String" LengthField="NoOfProfileUris" />
|
|
639
|
+
</opc:StructuredType>
|
|
640
|
+
|
|
641
|
+
<opc:StructuredType Name="GetEndpointsResponse" BaseType="ua:ExtensionObject">
|
|
642
|
+
<opc:Documentation>Gets the endpoints used by the server.</opc:Documentation>
|
|
643
|
+
<opc:Field Name="ResponseHeader" TypeName="tns:ResponseHeader" />
|
|
644
|
+
<opc:Field Name="NoOfEndpoints" TypeName="opc:Int32" />
|
|
645
|
+
<opc:Field Name="Endpoints" TypeName="tns:EndpointDescription" LengthField="NoOfEndpoints" />
|
|
646
|
+
</opc:StructuredType>
|
|
647
|
+
|
|
648
|
+
<opc:StructuredType Name="RegisteredServer" BaseType="ua:ExtensionObject">
|
|
649
|
+
<opc:Documentation>The information required to register a server with a discovery server.</opc:Documentation>
|
|
650
|
+
<opc:Field Name="ServerUri" TypeName="opc:String" />
|
|
651
|
+
<opc:Field Name="ProductUri" TypeName="opc:String" />
|
|
652
|
+
<opc:Field Name="NoOfServerNames" TypeName="opc:Int32" />
|
|
653
|
+
<opc:Field Name="ServerNames" TypeName="ua:LocalizedText" LengthField="NoOfServerNames" />
|
|
654
|
+
<opc:Field Name="ServerType" TypeName="tns:ApplicationType" />
|
|
655
|
+
<opc:Field Name="GatewayServerUri" TypeName="opc:String" />
|
|
656
|
+
<opc:Field Name="NoOfDiscoveryUrls" TypeName="opc:Int32" />
|
|
657
|
+
<opc:Field Name="DiscoveryUrls" TypeName="opc:String" LengthField="NoOfDiscoveryUrls" />
|
|
658
|
+
<opc:Field Name="SemaphoreFilePath" TypeName="opc:String" />
|
|
659
|
+
<opc:Field Name="IsOnline" TypeName="opc:Boolean" />
|
|
660
|
+
</opc:StructuredType>
|
|
661
|
+
|
|
662
|
+
<opc:StructuredType Name="RegisterServerRequest" BaseType="ua:ExtensionObject">
|
|
663
|
+
<opc:Documentation>Registers a server with the discovery server.</opc:Documentation>
|
|
664
|
+
<opc:Field Name="RequestHeader" TypeName="tns:RequestHeader" />
|
|
665
|
+
<opc:Field Name="Server" TypeName="tns:RegisteredServer" />
|
|
666
|
+
</opc:StructuredType>
|
|
667
|
+
|
|
668
|
+
<opc:StructuredType Name="RegisterServerResponse" BaseType="ua:ExtensionObject">
|
|
669
|
+
<opc:Documentation>Registers a server with the discovery server.</opc:Documentation>
|
|
670
|
+
<opc:Field Name="ResponseHeader" TypeName="tns:ResponseHeader" />
|
|
671
|
+
</opc:StructuredType>
|
|
672
|
+
|
|
673
|
+
<opc:StructuredType Name="DiscoveryConfiguration" BaseType="ua:ExtensionObject">
|
|
674
|
+
<opc:Documentation>A base type for discovery configuration information.</opc:Documentation>
|
|
675
|
+
</opc:StructuredType>
|
|
676
|
+
|
|
677
|
+
<opc:StructuredType Name="MdnsDiscoveryConfiguration" BaseType="tns:DiscoveryConfiguration">
|
|
678
|
+
<opc:Documentation>The discovery information needed for mDNS registration.</opc:Documentation>
|
|
679
|
+
<opc:Field Name="MdnsServerName" TypeName="opc:String" />
|
|
680
|
+
<opc:Field Name="NoOfServerCapabilities" TypeName="opc:Int32" />
|
|
681
|
+
<opc:Field Name="ServerCapabilities" TypeName="opc:String" LengthField="NoOfServerCapabilities" />
|
|
682
|
+
</opc:StructuredType>
|
|
683
|
+
|
|
684
|
+
<opc:StructuredType Name="RegisterServer2Request" BaseType="ua:ExtensionObject">
|
|
685
|
+
<opc:Field Name="RequestHeader" TypeName="tns:RequestHeader" />
|
|
686
|
+
<opc:Field Name="Server" TypeName="tns:RegisteredServer" />
|
|
687
|
+
<opc:Field Name="NoOfDiscoveryConfiguration" TypeName="opc:Int32" />
|
|
688
|
+
<opc:Field Name="DiscoveryConfiguration" TypeName="ua:ExtensionObject" LengthField="NoOfDiscoveryConfiguration" />
|
|
689
|
+
</opc:StructuredType>
|
|
690
|
+
|
|
691
|
+
<opc:StructuredType Name="RegisterServer2Response" BaseType="ua:ExtensionObject">
|
|
692
|
+
<opc:Field Name="ResponseHeader" TypeName="tns:ResponseHeader" />
|
|
693
|
+
<opc:Field Name="NoOfConfigurationResults" TypeName="opc:Int32" />
|
|
694
|
+
<opc:Field Name="ConfigurationResults" TypeName="ua:StatusCode" LengthField="NoOfConfigurationResults" />
|
|
695
|
+
<opc:Field Name="NoOfDiagnosticInfos" TypeName="opc:Int32" />
|
|
696
|
+
<opc:Field Name="DiagnosticInfos" TypeName="ua:DiagnosticInfo" LengthField="NoOfDiagnosticInfos" />
|
|
697
|
+
</opc:StructuredType>
|
|
698
|
+
|
|
699
|
+
<opc:EnumeratedType Name="SecurityTokenRequestType" LengthInBits="32">
|
|
700
|
+
<opc:Documentation>Indicates whether a token if being created or renewed.</opc:Documentation>
|
|
701
|
+
<opc:EnumeratedValue Name="Issue" Value="0" />
|
|
702
|
+
<opc:EnumeratedValue Name="Renew" Value="1" />
|
|
703
|
+
</opc:EnumeratedType>
|
|
704
|
+
|
|
705
|
+
<opc:StructuredType Name="ChannelSecurityToken" BaseType="ua:ExtensionObject">
|
|
706
|
+
<opc:Documentation>The token that identifies a set of keys for an active secure channel.</opc:Documentation>
|
|
707
|
+
<opc:Field Name="ChannelId" TypeName="opc:UInt32" />
|
|
708
|
+
<opc:Field Name="TokenId" TypeName="opc:UInt32" />
|
|
709
|
+
<opc:Field Name="CreatedAt" TypeName="opc:DateTime" />
|
|
710
|
+
<opc:Field Name="RevisedLifetime" TypeName="opc:UInt32" />
|
|
711
|
+
</opc:StructuredType>
|
|
712
|
+
|
|
713
|
+
<opc:StructuredType Name="OpenSecureChannelRequest" BaseType="ua:ExtensionObject">
|
|
714
|
+
<opc:Documentation>Creates a secure channel with a server.</opc:Documentation>
|
|
715
|
+
<opc:Field Name="RequestHeader" TypeName="tns:RequestHeader" />
|
|
716
|
+
<opc:Field Name="ClientProtocolVersion" TypeName="opc:UInt32" />
|
|
717
|
+
<opc:Field Name="RequestType" TypeName="tns:SecurityTokenRequestType" />
|
|
718
|
+
<opc:Field Name="SecurityMode" TypeName="tns:MessageSecurityMode" />
|
|
719
|
+
<opc:Field Name="ClientNonce" TypeName="opc:ByteString" />
|
|
720
|
+
<opc:Field Name="RequestedLifetime" TypeName="opc:UInt32" />
|
|
721
|
+
</opc:StructuredType>
|
|
722
|
+
|
|
723
|
+
<opc:StructuredType Name="OpenSecureChannelResponse" BaseType="ua:ExtensionObject">
|
|
724
|
+
<opc:Documentation>Creates a secure channel with a server.</opc:Documentation>
|
|
725
|
+
<opc:Field Name="ResponseHeader" TypeName="tns:ResponseHeader" />
|
|
726
|
+
<opc:Field Name="ServerProtocolVersion" TypeName="opc:UInt32" />
|
|
727
|
+
<opc:Field Name="SecurityToken" TypeName="tns:ChannelSecurityToken" />
|
|
728
|
+
<opc:Field Name="ServerNonce" TypeName="opc:ByteString" />
|
|
729
|
+
</opc:StructuredType>
|
|
730
|
+
|
|
731
|
+
<opc:StructuredType Name="CloseSecureChannelRequest" BaseType="ua:ExtensionObject">
|
|
732
|
+
<opc:Documentation>Closes a secure channel.</opc:Documentation>
|
|
733
|
+
<opc:Field Name="RequestHeader" TypeName="tns:RequestHeader" />
|
|
734
|
+
</opc:StructuredType>
|
|
735
|
+
|
|
736
|
+
<opc:StructuredType Name="CloseSecureChannelResponse" BaseType="ua:ExtensionObject">
|
|
737
|
+
<opc:Documentation>Closes a secure channel.</opc:Documentation>
|
|
738
|
+
<opc:Field Name="ResponseHeader" TypeName="tns:ResponseHeader" />
|
|
739
|
+
</opc:StructuredType>
|
|
740
|
+
|
|
741
|
+
<opc:StructuredType Name="SignedSoftwareCertificate" BaseType="ua:ExtensionObject">
|
|
742
|
+
<opc:Documentation>A software certificate with a digital signature.</opc:Documentation>
|
|
743
|
+
<opc:Field Name="CertificateData" TypeName="opc:ByteString" />
|
|
744
|
+
<opc:Field Name="Signature" TypeName="opc:ByteString" />
|
|
745
|
+
</opc:StructuredType>
|
|
746
|
+
|
|
747
|
+
<opc:OpaqueType Name="SessionAuthenticationToken">
|
|
748
|
+
<opc:Documentation>A unique identifier for a session used to authenticate requests.</opc:Documentation>
|
|
749
|
+
</opc:OpaqueType>
|
|
750
|
+
|
|
751
|
+
<opc:StructuredType Name="SignatureData" BaseType="ua:ExtensionObject">
|
|
752
|
+
<opc:Documentation>A digital signature.</opc:Documentation>
|
|
753
|
+
<opc:Field Name="Algorithm" TypeName="opc:String" />
|
|
754
|
+
<opc:Field Name="Signature" TypeName="opc:ByteString" />
|
|
755
|
+
</opc:StructuredType>
|
|
756
|
+
|
|
757
|
+
<opc:StructuredType Name="CreateSessionRequest" BaseType="ua:ExtensionObject">
|
|
758
|
+
<opc:Documentation>Creates a new session with the server.</opc:Documentation>
|
|
759
|
+
<opc:Field Name="RequestHeader" TypeName="tns:RequestHeader" />
|
|
760
|
+
<opc:Field Name="ClientDescription" TypeName="tns:ApplicationDescription" />
|
|
761
|
+
<opc:Field Name="ServerUri" TypeName="opc:String" />
|
|
762
|
+
<opc:Field Name="EndpointUrl" TypeName="opc:String" />
|
|
763
|
+
<opc:Field Name="SessionName" TypeName="opc:String" />
|
|
764
|
+
<opc:Field Name="ClientNonce" TypeName="opc:ByteString" />
|
|
765
|
+
<opc:Field Name="ClientCertificate" TypeName="opc:ByteString" />
|
|
766
|
+
<opc:Field Name="RequestedSessionTimeout" TypeName="opc:Double" />
|
|
767
|
+
<opc:Field Name="MaxResponseMessageSize" TypeName="opc:UInt32" />
|
|
768
|
+
</opc:StructuredType>
|
|
769
|
+
|
|
770
|
+
<opc:StructuredType Name="CreateSessionResponse" BaseType="ua:ExtensionObject">
|
|
771
|
+
<opc:Documentation>Creates a new session with the server.</opc:Documentation>
|
|
772
|
+
<opc:Field Name="ResponseHeader" TypeName="tns:ResponseHeader" />
|
|
773
|
+
<opc:Field Name="SessionId" TypeName="ua:NodeId" />
|
|
774
|
+
<opc:Field Name="AuthenticationToken" TypeName="ua:NodeId" />
|
|
775
|
+
<opc:Field Name="RevisedSessionTimeout" TypeName="opc:Double" />
|
|
776
|
+
<opc:Field Name="ServerNonce" TypeName="opc:ByteString" />
|
|
777
|
+
<opc:Field Name="ServerCertificate" TypeName="opc:ByteString" />
|
|
778
|
+
<opc:Field Name="NoOfServerEndpoints" TypeName="opc:Int32" />
|
|
779
|
+
<opc:Field Name="ServerEndpoints" TypeName="tns:EndpointDescription" LengthField="NoOfServerEndpoints" />
|
|
780
|
+
<opc:Field Name="NoOfServerSoftwareCertificates" TypeName="opc:Int32" />
|
|
781
|
+
<opc:Field Name="ServerSoftwareCertificates" TypeName="tns:SignedSoftwareCertificate" LengthField="NoOfServerSoftwareCertificates" />
|
|
782
|
+
<opc:Field Name="ServerSignature" TypeName="tns:SignatureData" />
|
|
783
|
+
<opc:Field Name="MaxRequestMessageSize" TypeName="opc:UInt32" />
|
|
784
|
+
</opc:StructuredType>
|
|
785
|
+
|
|
786
|
+
<opc:StructuredType Name="UserIdentityToken" BaseType="ua:ExtensionObject">
|
|
787
|
+
<opc:Documentation>A base type for a user identity token.</opc:Documentation>
|
|
788
|
+
<opc:Field Name="PolicyId" TypeName="opc:String" />
|
|
789
|
+
</opc:StructuredType>
|
|
790
|
+
|
|
791
|
+
<opc:StructuredType Name="AnonymousIdentityToken" BaseType="tns:UserIdentityToken">
|
|
792
|
+
<opc:Documentation>A token representing an anonymous user.</opc:Documentation>
|
|
793
|
+
<opc:Field Name="PolicyId" TypeName="opc:String" SourceType="tns:UserIdentityToken" />
|
|
794
|
+
</opc:StructuredType>
|
|
795
|
+
|
|
796
|
+
<opc:StructuredType Name="UserNameIdentityToken" BaseType="tns:UserIdentityToken">
|
|
797
|
+
<opc:Documentation>A token representing a user identified by a user name and password.</opc:Documentation>
|
|
798
|
+
<opc:Field Name="PolicyId" TypeName="opc:String" SourceType="tns:UserIdentityToken" />
|
|
799
|
+
<opc:Field Name="UserName" TypeName="opc:String" />
|
|
800
|
+
<opc:Field Name="Password" TypeName="opc:ByteString" />
|
|
801
|
+
<opc:Field Name="EncryptionAlgorithm" TypeName="opc:String" />
|
|
802
|
+
</opc:StructuredType>
|
|
803
|
+
|
|
804
|
+
<opc:StructuredType Name="X509IdentityToken" BaseType="tns:UserIdentityToken">
|
|
805
|
+
<opc:Documentation>A token representing a user identified by an X509 certificate.</opc:Documentation>
|
|
806
|
+
<opc:Field Name="PolicyId" TypeName="opc:String" SourceType="tns:UserIdentityToken" />
|
|
807
|
+
<opc:Field Name="CertificateData" TypeName="opc:ByteString" />
|
|
808
|
+
</opc:StructuredType>
|
|
809
|
+
|
|
810
|
+
<opc:StructuredType Name="KerberosIdentityToken" BaseType="tns:UserIdentityToken">
|
|
811
|
+
<opc:Field Name="PolicyId" TypeName="opc:String" SourceType="tns:UserIdentityToken" />
|
|
812
|
+
<opc:Field Name="TicketData" TypeName="opc:ByteString" />
|
|
813
|
+
</opc:StructuredType>
|
|
814
|
+
|
|
815
|
+
<opc:StructuredType Name="IssuedIdentityToken" BaseType="tns:UserIdentityToken">
|
|
816
|
+
<opc:Documentation>A token representing a user identified by a WS-Security XML token.</opc:Documentation>
|
|
817
|
+
<opc:Field Name="PolicyId" TypeName="opc:String" SourceType="tns:UserIdentityToken" />
|
|
818
|
+
<opc:Field Name="TokenData" TypeName="opc:ByteString" />
|
|
819
|
+
<opc:Field Name="EncryptionAlgorithm" TypeName="opc:String" />
|
|
820
|
+
</opc:StructuredType>
|
|
821
|
+
|
|
822
|
+
<opc:StructuredType Name="ActivateSessionRequest" BaseType="ua:ExtensionObject">
|
|
823
|
+
<opc:Documentation>Activates a session with the server.</opc:Documentation>
|
|
824
|
+
<opc:Field Name="RequestHeader" TypeName="tns:RequestHeader" />
|
|
825
|
+
<opc:Field Name="ClientSignature" TypeName="tns:SignatureData" />
|
|
826
|
+
<opc:Field Name="NoOfClientSoftwareCertificates" TypeName="opc:Int32" />
|
|
827
|
+
<opc:Field Name="ClientSoftwareCertificates" TypeName="tns:SignedSoftwareCertificate" LengthField="NoOfClientSoftwareCertificates" />
|
|
828
|
+
<opc:Field Name="NoOfLocaleIds" TypeName="opc:Int32" />
|
|
829
|
+
<opc:Field Name="LocaleIds" TypeName="opc:String" LengthField="NoOfLocaleIds" />
|
|
830
|
+
<opc:Field Name="UserIdentityToken" TypeName="ua:ExtensionObject" />
|
|
831
|
+
<opc:Field Name="UserTokenSignature" TypeName="tns:SignatureData" />
|
|
832
|
+
</opc:StructuredType>
|
|
833
|
+
|
|
834
|
+
<opc:StructuredType Name="ActivateSessionResponse" BaseType="ua:ExtensionObject">
|
|
835
|
+
<opc:Documentation>Activates a session with the server.</opc:Documentation>
|
|
836
|
+
<opc:Field Name="ResponseHeader" TypeName="tns:ResponseHeader" />
|
|
837
|
+
<opc:Field Name="ServerNonce" TypeName="opc:ByteString" />
|
|
838
|
+
<opc:Field Name="NoOfResults" TypeName="opc:Int32" />
|
|
839
|
+
<opc:Field Name="Results" TypeName="ua:StatusCode" LengthField="NoOfResults" />
|
|
840
|
+
<opc:Field Name="NoOfDiagnosticInfos" TypeName="opc:Int32" />
|
|
841
|
+
<opc:Field Name="DiagnosticInfos" TypeName="ua:DiagnosticInfo" LengthField="NoOfDiagnosticInfos" />
|
|
842
|
+
</opc:StructuredType>
|
|
843
|
+
|
|
844
|
+
<opc:StructuredType Name="CloseSessionRequest" BaseType="ua:ExtensionObject">
|
|
845
|
+
<opc:Documentation>Closes a session with the server.</opc:Documentation>
|
|
846
|
+
<opc:Field Name="RequestHeader" TypeName="tns:RequestHeader" />
|
|
847
|
+
<opc:Field Name="DeleteSubscriptions" TypeName="opc:Boolean" />
|
|
848
|
+
</opc:StructuredType>
|
|
849
|
+
|
|
850
|
+
<opc:StructuredType Name="CloseSessionResponse" BaseType="ua:ExtensionObject">
|
|
851
|
+
<opc:Documentation>Closes a session with the server.</opc:Documentation>
|
|
852
|
+
<opc:Field Name="ResponseHeader" TypeName="tns:ResponseHeader" />
|
|
853
|
+
</opc:StructuredType>
|
|
854
|
+
|
|
855
|
+
<opc:StructuredType Name="CancelRequest" BaseType="ua:ExtensionObject">
|
|
856
|
+
<opc:Documentation>Cancels an outstanding request.</opc:Documentation>
|
|
857
|
+
<opc:Field Name="RequestHeader" TypeName="tns:RequestHeader" />
|
|
858
|
+
<opc:Field Name="RequestHandle" TypeName="opc:UInt32" />
|
|
859
|
+
</opc:StructuredType>
|
|
860
|
+
|
|
861
|
+
<opc:StructuredType Name="CancelResponse" BaseType="ua:ExtensionObject">
|
|
862
|
+
<opc:Documentation>Cancels an outstanding request.</opc:Documentation>
|
|
863
|
+
<opc:Field Name="ResponseHeader" TypeName="tns:ResponseHeader" />
|
|
864
|
+
<opc:Field Name="CancelCount" TypeName="opc:UInt32" />
|
|
865
|
+
</opc:StructuredType>
|
|
866
|
+
|
|
867
|
+
<opc:EnumeratedType Name="NodeAttributesMask" LengthInBits="32">
|
|
868
|
+
<opc:Documentation>The bits used to specify default attributes for a new node.</opc:Documentation>
|
|
869
|
+
<opc:EnumeratedValue Name="None" Value="0" />
|
|
870
|
+
<opc:EnumeratedValue Name="AccessLevel" Value="1" />
|
|
871
|
+
<opc:EnumeratedValue Name="ArrayDimensions" Value="2" />
|
|
872
|
+
<opc:EnumeratedValue Name="BrowseName" Value="4" />
|
|
873
|
+
<opc:EnumeratedValue Name="ContainsNoLoops" Value="8" />
|
|
874
|
+
<opc:EnumeratedValue Name="DataType" Value="16" />
|
|
875
|
+
<opc:EnumeratedValue Name="Description" Value="32" />
|
|
876
|
+
<opc:EnumeratedValue Name="DisplayName" Value="64" />
|
|
877
|
+
<opc:EnumeratedValue Name="EventNotifier" Value="128" />
|
|
878
|
+
<opc:EnumeratedValue Name="Executable" Value="256" />
|
|
879
|
+
<opc:EnumeratedValue Name="Historizing" Value="512" />
|
|
880
|
+
<opc:EnumeratedValue Name="InverseName" Value="1024" />
|
|
881
|
+
<opc:EnumeratedValue Name="IsAbstract" Value="2048" />
|
|
882
|
+
<opc:EnumeratedValue Name="MinimumSamplingInterval" Value="4096" />
|
|
883
|
+
<opc:EnumeratedValue Name="NodeClass" Value="8192" />
|
|
884
|
+
<opc:EnumeratedValue Name="NodeId" Value="16384" />
|
|
885
|
+
<opc:EnumeratedValue Name="Symmetric" Value="32768" />
|
|
886
|
+
<opc:EnumeratedValue Name="UserAccessLevel" Value="65536" />
|
|
887
|
+
<opc:EnumeratedValue Name="UserExecutable" Value="131072" />
|
|
888
|
+
<opc:EnumeratedValue Name="UserWriteMask" Value="262144" />
|
|
889
|
+
<opc:EnumeratedValue Name="ValueRank" Value="524288" />
|
|
890
|
+
<opc:EnumeratedValue Name="WriteMask" Value="1048576" />
|
|
891
|
+
<opc:EnumeratedValue Name="Value" Value="2097152" />
|
|
892
|
+
<opc:EnumeratedValue Name="All" Value="4194303" />
|
|
893
|
+
<opc:EnumeratedValue Name="BaseNode" Value="1335396" />
|
|
894
|
+
<opc:EnumeratedValue Name="Object" Value="1335524" />
|
|
895
|
+
<opc:EnumeratedValue Name="ObjectTypeOrDataType" Value="1337444" />
|
|
896
|
+
<opc:EnumeratedValue Name="Variable" Value="4026999" />
|
|
897
|
+
<opc:EnumeratedValue Name="VariableType" Value="3958902" />
|
|
898
|
+
<opc:EnumeratedValue Name="Method" Value="1466724" />
|
|
899
|
+
<opc:EnumeratedValue Name="ReferenceType" Value="1371236" />
|
|
900
|
+
<opc:EnumeratedValue Name="View" Value="1335532" />
|
|
901
|
+
</opc:EnumeratedType>
|
|
902
|
+
|
|
903
|
+
<opc:StructuredType Name="NodeAttributes" BaseType="ua:ExtensionObject">
|
|
904
|
+
<opc:Documentation>The base attributes for all nodes.</opc:Documentation>
|
|
905
|
+
<opc:Field Name="SpecifiedAttributes" TypeName="opc:UInt32" />
|
|
906
|
+
<opc:Field Name="DisplayName" TypeName="ua:LocalizedText" />
|
|
907
|
+
<opc:Field Name="Description" TypeName="ua:LocalizedText" />
|
|
908
|
+
<opc:Field Name="WriteMask" TypeName="opc:UInt32" />
|
|
909
|
+
<opc:Field Name="UserWriteMask" TypeName="opc:UInt32" />
|
|
910
|
+
</opc:StructuredType>
|
|
911
|
+
|
|
912
|
+
<opc:StructuredType Name="ObjectAttributes" BaseType="tns:NodeAttributes">
|
|
913
|
+
<opc:Documentation>The attributes for an object node.</opc:Documentation>
|
|
914
|
+
<opc:Field Name="SpecifiedAttributes" TypeName="opc:UInt32" SourceType="tns:NodeAttributes" />
|
|
915
|
+
<opc:Field Name="DisplayName" TypeName="ua:LocalizedText" SourceType="tns:NodeAttributes" />
|
|
916
|
+
<opc:Field Name="Description" TypeName="ua:LocalizedText" SourceType="tns:NodeAttributes" />
|
|
917
|
+
<opc:Field Name="WriteMask" TypeName="opc:UInt32" SourceType="tns:NodeAttributes" />
|
|
918
|
+
<opc:Field Name="UserWriteMask" TypeName="opc:UInt32" SourceType="tns:NodeAttributes" />
|
|
919
|
+
<opc:Field Name="EventNotifier" TypeName="opc:Byte" />
|
|
920
|
+
</opc:StructuredType>
|
|
921
|
+
|
|
922
|
+
<opc:StructuredType Name="VariableAttributes" BaseType="tns:NodeAttributes">
|
|
923
|
+
<opc:Documentation>The attributes for a variable node.</opc:Documentation>
|
|
924
|
+
<opc:Field Name="SpecifiedAttributes" TypeName="opc:UInt32" SourceType="tns:NodeAttributes" />
|
|
925
|
+
<opc:Field Name="DisplayName" TypeName="ua:LocalizedText" SourceType="tns:NodeAttributes" />
|
|
926
|
+
<opc:Field Name="Description" TypeName="ua:LocalizedText" SourceType="tns:NodeAttributes" />
|
|
927
|
+
<opc:Field Name="WriteMask" TypeName="opc:UInt32" SourceType="tns:NodeAttributes" />
|
|
928
|
+
<opc:Field Name="UserWriteMask" TypeName="opc:UInt32" SourceType="tns:NodeAttributes" />
|
|
929
|
+
<opc:Field Name="Value" TypeName="ua:Variant" />
|
|
930
|
+
<opc:Field Name="DataType" TypeName="ua:NodeId" />
|
|
931
|
+
<opc:Field Name="ValueRank" TypeName="opc:Int32" />
|
|
932
|
+
<opc:Field Name="NoOfArrayDimensions" TypeName="opc:Int32" />
|
|
933
|
+
<opc:Field Name="ArrayDimensions" TypeName="opc:UInt32" LengthField="NoOfArrayDimensions" />
|
|
934
|
+
<opc:Field Name="AccessLevel" TypeName="opc:Byte" />
|
|
935
|
+
<opc:Field Name="UserAccessLevel" TypeName="opc:Byte" />
|
|
936
|
+
<opc:Field Name="MinimumSamplingInterval" TypeName="opc:Double" />
|
|
937
|
+
<opc:Field Name="Historizing" TypeName="opc:Boolean" />
|
|
938
|
+
</opc:StructuredType>
|
|
939
|
+
|
|
940
|
+
<opc:StructuredType Name="MethodAttributes" BaseType="tns:NodeAttributes">
|
|
941
|
+
<opc:Documentation>The attributes for a method node.</opc:Documentation>
|
|
942
|
+
<opc:Field Name="SpecifiedAttributes" TypeName="opc:UInt32" SourceType="tns:NodeAttributes" />
|
|
943
|
+
<opc:Field Name="DisplayName" TypeName="ua:LocalizedText" SourceType="tns:NodeAttributes" />
|
|
944
|
+
<opc:Field Name="Description" TypeName="ua:LocalizedText" SourceType="tns:NodeAttributes" />
|
|
945
|
+
<opc:Field Name="WriteMask" TypeName="opc:UInt32" SourceType="tns:NodeAttributes" />
|
|
946
|
+
<opc:Field Name="UserWriteMask" TypeName="opc:UInt32" SourceType="tns:NodeAttributes" />
|
|
947
|
+
<opc:Field Name="Executable" TypeName="opc:Boolean" />
|
|
948
|
+
<opc:Field Name="UserExecutable" TypeName="opc:Boolean" />
|
|
949
|
+
</opc:StructuredType>
|
|
950
|
+
|
|
951
|
+
<opc:StructuredType Name="ObjectTypeAttributes" BaseType="tns:NodeAttributes">
|
|
952
|
+
<opc:Documentation>The attributes for an object type node.</opc:Documentation>
|
|
953
|
+
<opc:Field Name="SpecifiedAttributes" TypeName="opc:UInt32" SourceType="tns:NodeAttributes" />
|
|
954
|
+
<opc:Field Name="DisplayName" TypeName="ua:LocalizedText" SourceType="tns:NodeAttributes" />
|
|
955
|
+
<opc:Field Name="Description" TypeName="ua:LocalizedText" SourceType="tns:NodeAttributes" />
|
|
956
|
+
<opc:Field Name="WriteMask" TypeName="opc:UInt32" SourceType="tns:NodeAttributes" />
|
|
957
|
+
<opc:Field Name="UserWriteMask" TypeName="opc:UInt32" SourceType="tns:NodeAttributes" />
|
|
958
|
+
<opc:Field Name="IsAbstract" TypeName="opc:Boolean" />
|
|
959
|
+
</opc:StructuredType>
|
|
960
|
+
|
|
961
|
+
<opc:StructuredType Name="VariableTypeAttributes" BaseType="tns:NodeAttributes">
|
|
962
|
+
<opc:Documentation>The attributes for a variable type node.</opc:Documentation>
|
|
963
|
+
<opc:Field Name="SpecifiedAttributes" TypeName="opc:UInt32" SourceType="tns:NodeAttributes" />
|
|
964
|
+
<opc:Field Name="DisplayName" TypeName="ua:LocalizedText" SourceType="tns:NodeAttributes" />
|
|
965
|
+
<opc:Field Name="Description" TypeName="ua:LocalizedText" SourceType="tns:NodeAttributes" />
|
|
966
|
+
<opc:Field Name="WriteMask" TypeName="opc:UInt32" SourceType="tns:NodeAttributes" />
|
|
967
|
+
<opc:Field Name="UserWriteMask" TypeName="opc:UInt32" SourceType="tns:NodeAttributes" />
|
|
968
|
+
<opc:Field Name="Value" TypeName="ua:Variant" />
|
|
969
|
+
<opc:Field Name="DataType" TypeName="ua:NodeId" />
|
|
970
|
+
<opc:Field Name="ValueRank" TypeName="opc:Int32" />
|
|
971
|
+
<opc:Field Name="NoOfArrayDimensions" TypeName="opc:Int32" />
|
|
972
|
+
<opc:Field Name="ArrayDimensions" TypeName="opc:UInt32" LengthField="NoOfArrayDimensions" />
|
|
973
|
+
<opc:Field Name="IsAbstract" TypeName="opc:Boolean" />
|
|
974
|
+
</opc:StructuredType>
|
|
975
|
+
|
|
976
|
+
<opc:StructuredType Name="ReferenceTypeAttributes" BaseType="tns:NodeAttributes">
|
|
977
|
+
<opc:Documentation>The attributes for a reference type node.</opc:Documentation>
|
|
978
|
+
<opc:Field Name="SpecifiedAttributes" TypeName="opc:UInt32" SourceType="tns:NodeAttributes" />
|
|
979
|
+
<opc:Field Name="DisplayName" TypeName="ua:LocalizedText" SourceType="tns:NodeAttributes" />
|
|
980
|
+
<opc:Field Name="Description" TypeName="ua:LocalizedText" SourceType="tns:NodeAttributes" />
|
|
981
|
+
<opc:Field Name="WriteMask" TypeName="opc:UInt32" SourceType="tns:NodeAttributes" />
|
|
982
|
+
<opc:Field Name="UserWriteMask" TypeName="opc:UInt32" SourceType="tns:NodeAttributes" />
|
|
983
|
+
<opc:Field Name="IsAbstract" TypeName="opc:Boolean" />
|
|
984
|
+
<opc:Field Name="Symmetric" TypeName="opc:Boolean" />
|
|
985
|
+
<opc:Field Name="InverseName" TypeName="ua:LocalizedText" />
|
|
986
|
+
</opc:StructuredType>
|
|
987
|
+
|
|
988
|
+
<opc:StructuredType Name="DataTypeAttributes" BaseType="tns:NodeAttributes">
|
|
989
|
+
<opc:Documentation>The attributes for a data type node.</opc:Documentation>
|
|
990
|
+
<opc:Field Name="SpecifiedAttributes" TypeName="opc:UInt32" SourceType="tns:NodeAttributes" />
|
|
991
|
+
<opc:Field Name="DisplayName" TypeName="ua:LocalizedText" SourceType="tns:NodeAttributes" />
|
|
992
|
+
<opc:Field Name="Description" TypeName="ua:LocalizedText" SourceType="tns:NodeAttributes" />
|
|
993
|
+
<opc:Field Name="WriteMask" TypeName="opc:UInt32" SourceType="tns:NodeAttributes" />
|
|
994
|
+
<opc:Field Name="UserWriteMask" TypeName="opc:UInt32" SourceType="tns:NodeAttributes" />
|
|
995
|
+
<opc:Field Name="IsAbstract" TypeName="opc:Boolean" />
|
|
996
|
+
</opc:StructuredType>
|
|
997
|
+
|
|
998
|
+
<opc:StructuredType Name="ViewAttributes" BaseType="tns:NodeAttributes">
|
|
999
|
+
<opc:Documentation>The attributes for a view node.</opc:Documentation>
|
|
1000
|
+
<opc:Field Name="SpecifiedAttributes" TypeName="opc:UInt32" SourceType="tns:NodeAttributes" />
|
|
1001
|
+
<opc:Field Name="DisplayName" TypeName="ua:LocalizedText" SourceType="tns:NodeAttributes" />
|
|
1002
|
+
<opc:Field Name="Description" TypeName="ua:LocalizedText" SourceType="tns:NodeAttributes" />
|
|
1003
|
+
<opc:Field Name="WriteMask" TypeName="opc:UInt32" SourceType="tns:NodeAttributes" />
|
|
1004
|
+
<opc:Field Name="UserWriteMask" TypeName="opc:UInt32" SourceType="tns:NodeAttributes" />
|
|
1005
|
+
<opc:Field Name="ContainsNoLoops" TypeName="opc:Boolean" />
|
|
1006
|
+
<opc:Field Name="EventNotifier" TypeName="opc:Byte" />
|
|
1007
|
+
</opc:StructuredType>
|
|
1008
|
+
|
|
1009
|
+
<opc:StructuredType Name="AddNodesItem" BaseType="ua:ExtensionObject">
|
|
1010
|
+
<opc:Documentation>A request to add a node to the server address space.</opc:Documentation>
|
|
1011
|
+
<opc:Field Name="ParentNodeId" TypeName="ua:ExpandedNodeId" />
|
|
1012
|
+
<opc:Field Name="ReferenceTypeId" TypeName="ua:NodeId" />
|
|
1013
|
+
<opc:Field Name="RequestedNewNodeId" TypeName="ua:ExpandedNodeId" />
|
|
1014
|
+
<opc:Field Name="BrowseName" TypeName="ua:QualifiedName" />
|
|
1015
|
+
<opc:Field Name="NodeClass" TypeName="tns:NodeClass" />
|
|
1016
|
+
<opc:Field Name="NodeAttributes" TypeName="ua:ExtensionObject" />
|
|
1017
|
+
<opc:Field Name="TypeDefinition" TypeName="ua:ExpandedNodeId" />
|
|
1018
|
+
</opc:StructuredType>
|
|
1019
|
+
|
|
1020
|
+
<opc:StructuredType Name="AddNodesResult" BaseType="ua:ExtensionObject">
|
|
1021
|
+
<opc:Documentation>A result of an add node operation.</opc:Documentation>
|
|
1022
|
+
<opc:Field Name="StatusCode" TypeName="ua:StatusCode" />
|
|
1023
|
+
<opc:Field Name="AddedNodeId" TypeName="ua:NodeId" />
|
|
1024
|
+
</opc:StructuredType>
|
|
1025
|
+
|
|
1026
|
+
<opc:StructuredType Name="AddNodesRequest" BaseType="ua:ExtensionObject">
|
|
1027
|
+
<opc:Documentation>Adds one or more nodes to the server address space.</opc:Documentation>
|
|
1028
|
+
<opc:Field Name="RequestHeader" TypeName="tns:RequestHeader" />
|
|
1029
|
+
<opc:Field Name="NoOfNodesToAdd" TypeName="opc:Int32" />
|
|
1030
|
+
<opc:Field Name="NodesToAdd" TypeName="tns:AddNodesItem" LengthField="NoOfNodesToAdd" />
|
|
1031
|
+
</opc:StructuredType>
|
|
1032
|
+
|
|
1033
|
+
<opc:StructuredType Name="AddNodesResponse" BaseType="ua:ExtensionObject">
|
|
1034
|
+
<opc:Documentation>Adds one or more nodes to the server address space.</opc:Documentation>
|
|
1035
|
+
<opc:Field Name="ResponseHeader" TypeName="tns:ResponseHeader" />
|
|
1036
|
+
<opc:Field Name="NoOfResults" TypeName="opc:Int32" />
|
|
1037
|
+
<opc:Field Name="Results" TypeName="tns:AddNodesResult" LengthField="NoOfResults" />
|
|
1038
|
+
<opc:Field Name="NoOfDiagnosticInfos" TypeName="opc:Int32" />
|
|
1039
|
+
<opc:Field Name="DiagnosticInfos" TypeName="ua:DiagnosticInfo" LengthField="NoOfDiagnosticInfos" />
|
|
1040
|
+
</opc:StructuredType>
|
|
1041
|
+
|
|
1042
|
+
<opc:StructuredType Name="AddReferencesItem" BaseType="ua:ExtensionObject">
|
|
1043
|
+
<opc:Documentation>A request to add a reference to the server address space.</opc:Documentation>
|
|
1044
|
+
<opc:Field Name="SourceNodeId" TypeName="ua:NodeId" />
|
|
1045
|
+
<opc:Field Name="ReferenceTypeId" TypeName="ua:NodeId" />
|
|
1046
|
+
<opc:Field Name="IsForward" TypeName="opc:Boolean" />
|
|
1047
|
+
<opc:Field Name="TargetServerUri" TypeName="opc:String" />
|
|
1048
|
+
<opc:Field Name="TargetNodeId" TypeName="ua:ExpandedNodeId" />
|
|
1049
|
+
<opc:Field Name="TargetNodeClass" TypeName="tns:NodeClass" />
|
|
1050
|
+
</opc:StructuredType>
|
|
1051
|
+
|
|
1052
|
+
<opc:StructuredType Name="AddReferencesRequest" BaseType="ua:ExtensionObject">
|
|
1053
|
+
<opc:Documentation>Adds one or more references to the server address space.</opc:Documentation>
|
|
1054
|
+
<opc:Field Name="RequestHeader" TypeName="tns:RequestHeader" />
|
|
1055
|
+
<opc:Field Name="NoOfReferencesToAdd" TypeName="opc:Int32" />
|
|
1056
|
+
<opc:Field Name="ReferencesToAdd" TypeName="tns:AddReferencesItem" LengthField="NoOfReferencesToAdd" />
|
|
1057
|
+
</opc:StructuredType>
|
|
1058
|
+
|
|
1059
|
+
<opc:StructuredType Name="AddReferencesResponse" BaseType="ua:ExtensionObject">
|
|
1060
|
+
<opc:Documentation>Adds one or more references to the server address space.</opc:Documentation>
|
|
1061
|
+
<opc:Field Name="ResponseHeader" TypeName="tns:ResponseHeader" />
|
|
1062
|
+
<opc:Field Name="NoOfResults" TypeName="opc:Int32" />
|
|
1063
|
+
<opc:Field Name="Results" TypeName="ua:StatusCode" LengthField="NoOfResults" />
|
|
1064
|
+
<opc:Field Name="NoOfDiagnosticInfos" TypeName="opc:Int32" />
|
|
1065
|
+
<opc:Field Name="DiagnosticInfos" TypeName="ua:DiagnosticInfo" LengthField="NoOfDiagnosticInfos" />
|
|
1066
|
+
</opc:StructuredType>
|
|
1067
|
+
|
|
1068
|
+
<opc:StructuredType Name="DeleteNodesItem" BaseType="ua:ExtensionObject">
|
|
1069
|
+
<opc:Documentation>A request to delete a node to the server address space.</opc:Documentation>
|
|
1070
|
+
<opc:Field Name="NodeId" TypeName="ua:NodeId" />
|
|
1071
|
+
<opc:Field Name="DeleteTargetReferences" TypeName="opc:Boolean" />
|
|
1072
|
+
</opc:StructuredType>
|
|
1073
|
+
|
|
1074
|
+
<opc:StructuredType Name="DeleteNodesRequest" BaseType="ua:ExtensionObject">
|
|
1075
|
+
<opc:Documentation>Delete one or more nodes from the server address space.</opc:Documentation>
|
|
1076
|
+
<opc:Field Name="RequestHeader" TypeName="tns:RequestHeader" />
|
|
1077
|
+
<opc:Field Name="NoOfNodesToDelete" TypeName="opc:Int32" />
|
|
1078
|
+
<opc:Field Name="NodesToDelete" TypeName="tns:DeleteNodesItem" LengthField="NoOfNodesToDelete" />
|
|
1079
|
+
</opc:StructuredType>
|
|
1080
|
+
|
|
1081
|
+
<opc:StructuredType Name="DeleteNodesResponse" BaseType="ua:ExtensionObject">
|
|
1082
|
+
<opc:Documentation>Delete one or more nodes from the server address space.</opc:Documentation>
|
|
1083
|
+
<opc:Field Name="ResponseHeader" TypeName="tns:ResponseHeader" />
|
|
1084
|
+
<opc:Field Name="NoOfResults" TypeName="opc:Int32" />
|
|
1085
|
+
<opc:Field Name="Results" TypeName="ua:StatusCode" LengthField="NoOfResults" />
|
|
1086
|
+
<opc:Field Name="NoOfDiagnosticInfos" TypeName="opc:Int32" />
|
|
1087
|
+
<opc:Field Name="DiagnosticInfos" TypeName="ua:DiagnosticInfo" LengthField="NoOfDiagnosticInfos" />
|
|
1088
|
+
</opc:StructuredType>
|
|
1089
|
+
|
|
1090
|
+
<opc:StructuredType Name="DeleteReferencesItem" BaseType="ua:ExtensionObject">
|
|
1091
|
+
<opc:Documentation>A request to delete a node from the server address space.</opc:Documentation>
|
|
1092
|
+
<opc:Field Name="SourceNodeId" TypeName="ua:NodeId" />
|
|
1093
|
+
<opc:Field Name="ReferenceTypeId" TypeName="ua:NodeId" />
|
|
1094
|
+
<opc:Field Name="IsForward" TypeName="opc:Boolean" />
|
|
1095
|
+
<opc:Field Name="TargetNodeId" TypeName="ua:ExpandedNodeId" />
|
|
1096
|
+
<opc:Field Name="DeleteBidirectional" TypeName="opc:Boolean" />
|
|
1097
|
+
</opc:StructuredType>
|
|
1098
|
+
|
|
1099
|
+
<opc:StructuredType Name="DeleteReferencesRequest" BaseType="ua:ExtensionObject">
|
|
1100
|
+
<opc:Documentation>Delete one or more references from the server address space.</opc:Documentation>
|
|
1101
|
+
<opc:Field Name="RequestHeader" TypeName="tns:RequestHeader" />
|
|
1102
|
+
<opc:Field Name="NoOfReferencesToDelete" TypeName="opc:Int32" />
|
|
1103
|
+
<opc:Field Name="ReferencesToDelete" TypeName="tns:DeleteReferencesItem" LengthField="NoOfReferencesToDelete" />
|
|
1104
|
+
</opc:StructuredType>
|
|
1105
|
+
|
|
1106
|
+
<opc:StructuredType Name="DeleteReferencesResponse" BaseType="ua:ExtensionObject">
|
|
1107
|
+
<opc:Documentation>Delete one or more references from the server address space.</opc:Documentation>
|
|
1108
|
+
<opc:Field Name="ResponseHeader" TypeName="tns:ResponseHeader" />
|
|
1109
|
+
<opc:Field Name="NoOfResults" TypeName="opc:Int32" />
|
|
1110
|
+
<opc:Field Name="Results" TypeName="ua:StatusCode" LengthField="NoOfResults" />
|
|
1111
|
+
<opc:Field Name="NoOfDiagnosticInfos" TypeName="opc:Int32" />
|
|
1112
|
+
<opc:Field Name="DiagnosticInfos" TypeName="ua:DiagnosticInfo" LengthField="NoOfDiagnosticInfos" />
|
|
1113
|
+
</opc:StructuredType>
|
|
1114
|
+
|
|
1115
|
+
<opc:EnumeratedType Name="AttributeWriteMask" LengthInBits="32">
|
|
1116
|
+
<opc:Documentation>Define bits used to indicate which attributes are writable.</opc:Documentation>
|
|
1117
|
+
<opc:EnumeratedValue Name="None" Value="0" />
|
|
1118
|
+
<opc:EnumeratedValue Name="AccessLevel" Value="1" />
|
|
1119
|
+
<opc:EnumeratedValue Name="ArrayDimensions" Value="2" />
|
|
1120
|
+
<opc:EnumeratedValue Name="BrowseName" Value="4" />
|
|
1121
|
+
<opc:EnumeratedValue Name="ContainsNoLoops" Value="8" />
|
|
1122
|
+
<opc:EnumeratedValue Name="DataType" Value="16" />
|
|
1123
|
+
<opc:EnumeratedValue Name="Description" Value="32" />
|
|
1124
|
+
<opc:EnumeratedValue Name="DisplayName" Value="64" />
|
|
1125
|
+
<opc:EnumeratedValue Name="EventNotifier" Value="128" />
|
|
1126
|
+
<opc:EnumeratedValue Name="Executable" Value="256" />
|
|
1127
|
+
<opc:EnumeratedValue Name="Historizing" Value="512" />
|
|
1128
|
+
<opc:EnumeratedValue Name="InverseName" Value="1024" />
|
|
1129
|
+
<opc:EnumeratedValue Name="IsAbstract" Value="2048" />
|
|
1130
|
+
<opc:EnumeratedValue Name="MinimumSamplingInterval" Value="4096" />
|
|
1131
|
+
<opc:EnumeratedValue Name="NodeClass" Value="8192" />
|
|
1132
|
+
<opc:EnumeratedValue Name="NodeId" Value="16384" />
|
|
1133
|
+
<opc:EnumeratedValue Name="Symmetric" Value="32768" />
|
|
1134
|
+
<opc:EnumeratedValue Name="UserAccessLevel" Value="65536" />
|
|
1135
|
+
<opc:EnumeratedValue Name="UserExecutable" Value="131072" />
|
|
1136
|
+
<opc:EnumeratedValue Name="UserWriteMask" Value="262144" />
|
|
1137
|
+
<opc:EnumeratedValue Name="ValueRank" Value="524288" />
|
|
1138
|
+
<opc:EnumeratedValue Name="WriteMask" Value="1048576" />
|
|
1139
|
+
<opc:EnumeratedValue Name="ValueForVariableType" Value="2097152" />
|
|
1140
|
+
</opc:EnumeratedType>
|
|
1141
|
+
|
|
1142
|
+
<opc:EnumeratedType Name="BrowseDirection" LengthInBits="32">
|
|
1143
|
+
<opc:Documentation>The directions of the references to return.</opc:Documentation>
|
|
1144
|
+
<opc:EnumeratedValue Name="Forward" Value="0" />
|
|
1145
|
+
<opc:EnumeratedValue Name="Inverse" Value="1" />
|
|
1146
|
+
<opc:EnumeratedValue Name="Both" Value="2" />
|
|
1147
|
+
</opc:EnumeratedType>
|
|
1148
|
+
|
|
1149
|
+
<opc:StructuredType Name="ViewDescription" BaseType="ua:ExtensionObject">
|
|
1150
|
+
<opc:Documentation>The view to browse.</opc:Documentation>
|
|
1151
|
+
<opc:Field Name="ViewId" TypeName="ua:NodeId" />
|
|
1152
|
+
<opc:Field Name="Timestamp" TypeName="opc:DateTime" />
|
|
1153
|
+
<opc:Field Name="ViewVersion" TypeName="opc:UInt32" />
|
|
1154
|
+
</opc:StructuredType>
|
|
1155
|
+
|
|
1156
|
+
<opc:StructuredType Name="BrowseDescription" BaseType="ua:ExtensionObject">
|
|
1157
|
+
<opc:Documentation>A request to browse the the references from a node.</opc:Documentation>
|
|
1158
|
+
<opc:Field Name="NodeId" TypeName="ua:NodeId" />
|
|
1159
|
+
<opc:Field Name="BrowseDirection" TypeName="tns:BrowseDirection" />
|
|
1160
|
+
<opc:Field Name="ReferenceTypeId" TypeName="ua:NodeId" />
|
|
1161
|
+
<opc:Field Name="IncludeSubtypes" TypeName="opc:Boolean" />
|
|
1162
|
+
<opc:Field Name="NodeClassMask" TypeName="opc:UInt32" />
|
|
1163
|
+
<opc:Field Name="ResultMask" TypeName="opc:UInt32" />
|
|
1164
|
+
</opc:StructuredType>
|
|
1165
|
+
|
|
1166
|
+
<opc:EnumeratedType Name="BrowseResultMask" LengthInBits="32">
|
|
1167
|
+
<opc:Documentation>A bit mask which specifies what should be returned in a browse response.</opc:Documentation>
|
|
1168
|
+
<opc:EnumeratedValue Name="None" Value="0" />
|
|
1169
|
+
<opc:EnumeratedValue Name="ReferenceTypeId" Value="1" />
|
|
1170
|
+
<opc:EnumeratedValue Name="IsForward" Value="2" />
|
|
1171
|
+
<opc:EnumeratedValue Name="NodeClass" Value="4" />
|
|
1172
|
+
<opc:EnumeratedValue Name="BrowseName" Value="8" />
|
|
1173
|
+
<opc:EnumeratedValue Name="DisplayName" Value="16" />
|
|
1174
|
+
<opc:EnumeratedValue Name="TypeDefinition" Value="32" />
|
|
1175
|
+
<opc:EnumeratedValue Name="All" Value="63" />
|
|
1176
|
+
<opc:EnumeratedValue Name="ReferenceTypeInfo" Value="3" />
|
|
1177
|
+
<opc:EnumeratedValue Name="TargetInfo" Value="60" />
|
|
1178
|
+
</opc:EnumeratedType>
|
|
1179
|
+
|
|
1180
|
+
<opc:StructuredType Name="ReferenceDescription" BaseType="ua:ExtensionObject">
|
|
1181
|
+
<opc:Documentation>The description of a reference.</opc:Documentation>
|
|
1182
|
+
<opc:Field Name="ReferenceTypeId" TypeName="ua:NodeId" />
|
|
1183
|
+
<opc:Field Name="IsForward" TypeName="opc:Boolean" />
|
|
1184
|
+
<opc:Field Name="NodeId" TypeName="ua:ExpandedNodeId" />
|
|
1185
|
+
<opc:Field Name="BrowseName" TypeName="ua:QualifiedName" />
|
|
1186
|
+
<opc:Field Name="DisplayName" TypeName="ua:LocalizedText" />
|
|
1187
|
+
<opc:Field Name="NodeClass" TypeName="tns:NodeClass" />
|
|
1188
|
+
<opc:Field Name="TypeDefinition" TypeName="ua:ExpandedNodeId" />
|
|
1189
|
+
</opc:StructuredType>
|
|
1190
|
+
|
|
1191
|
+
<opc:OpaqueType Name="ContinuationPoint">
|
|
1192
|
+
<opc:Documentation>An identifier for a suspended query or browse operation.</opc:Documentation>
|
|
1193
|
+
</opc:OpaqueType>
|
|
1194
|
+
|
|
1195
|
+
<opc:StructuredType Name="BrowseResult" BaseType="ua:ExtensionObject">
|
|
1196
|
+
<opc:Documentation>The result of a browse operation.</opc:Documentation>
|
|
1197
|
+
<opc:Field Name="StatusCode" TypeName="ua:StatusCode" />
|
|
1198
|
+
<opc:Field Name="ContinuationPoint" TypeName="opc:ByteString" />
|
|
1199
|
+
<opc:Field Name="NoOfReferences" TypeName="opc:Int32" />
|
|
1200
|
+
<opc:Field Name="References" TypeName="tns:ReferenceDescription" LengthField="NoOfReferences" />
|
|
1201
|
+
</opc:StructuredType>
|
|
1202
|
+
|
|
1203
|
+
<opc:StructuredType Name="BrowseRequest" BaseType="ua:ExtensionObject">
|
|
1204
|
+
<opc:Documentation>Browse the references for one or more nodes from the server address space.</opc:Documentation>
|
|
1205
|
+
<opc:Field Name="RequestHeader" TypeName="tns:RequestHeader" />
|
|
1206
|
+
<opc:Field Name="View" TypeName="tns:ViewDescription" />
|
|
1207
|
+
<opc:Field Name="RequestedMaxReferencesPerNode" TypeName="opc:UInt32" />
|
|
1208
|
+
<opc:Field Name="NoOfNodesToBrowse" TypeName="opc:Int32" />
|
|
1209
|
+
<opc:Field Name="NodesToBrowse" TypeName="tns:BrowseDescription" LengthField="NoOfNodesToBrowse" />
|
|
1210
|
+
</opc:StructuredType>
|
|
1211
|
+
|
|
1212
|
+
<opc:StructuredType Name="BrowseResponse" BaseType="ua:ExtensionObject">
|
|
1213
|
+
<opc:Documentation>Browse the references for one or more nodes from the server address space.</opc:Documentation>
|
|
1214
|
+
<opc:Field Name="ResponseHeader" TypeName="tns:ResponseHeader" />
|
|
1215
|
+
<opc:Field Name="NoOfResults" TypeName="opc:Int32" />
|
|
1216
|
+
<opc:Field Name="Results" TypeName="tns:BrowseResult" LengthField="NoOfResults" />
|
|
1217
|
+
<opc:Field Name="NoOfDiagnosticInfos" TypeName="opc:Int32" />
|
|
1218
|
+
<opc:Field Name="DiagnosticInfos" TypeName="ua:DiagnosticInfo" LengthField="NoOfDiagnosticInfos" />
|
|
1219
|
+
</opc:StructuredType>
|
|
1220
|
+
|
|
1221
|
+
<opc:StructuredType Name="BrowseNextRequest" BaseType="ua:ExtensionObject">
|
|
1222
|
+
<opc:Documentation>Continues one or more browse operations.</opc:Documentation>
|
|
1223
|
+
<opc:Field Name="RequestHeader" TypeName="tns:RequestHeader" />
|
|
1224
|
+
<opc:Field Name="ReleaseContinuationPoints" TypeName="opc:Boolean" />
|
|
1225
|
+
<opc:Field Name="NoOfContinuationPoints" TypeName="opc:Int32" />
|
|
1226
|
+
<opc:Field Name="ContinuationPoints" TypeName="opc:ByteString" LengthField="NoOfContinuationPoints" />
|
|
1227
|
+
</opc:StructuredType>
|
|
1228
|
+
|
|
1229
|
+
<opc:StructuredType Name="BrowseNextResponse" BaseType="ua:ExtensionObject">
|
|
1230
|
+
<opc:Documentation>Continues one or more browse operations.</opc:Documentation>
|
|
1231
|
+
<opc:Field Name="ResponseHeader" TypeName="tns:ResponseHeader" />
|
|
1232
|
+
<opc:Field Name="NoOfResults" TypeName="opc:Int32" />
|
|
1233
|
+
<opc:Field Name="Results" TypeName="tns:BrowseResult" LengthField="NoOfResults" />
|
|
1234
|
+
<opc:Field Name="NoOfDiagnosticInfos" TypeName="opc:Int32" />
|
|
1235
|
+
<opc:Field Name="DiagnosticInfos" TypeName="ua:DiagnosticInfo" LengthField="NoOfDiagnosticInfos" />
|
|
1236
|
+
</opc:StructuredType>
|
|
1237
|
+
|
|
1238
|
+
<opc:StructuredType Name="RelativePathElement" BaseType="ua:ExtensionObject">
|
|
1239
|
+
<opc:Documentation>An element in a relative path.</opc:Documentation>
|
|
1240
|
+
<opc:Field Name="ReferenceTypeId" TypeName="ua:NodeId" />
|
|
1241
|
+
<opc:Field Name="IsInverse" TypeName="opc:Boolean" />
|
|
1242
|
+
<opc:Field Name="IncludeSubtypes" TypeName="opc:Boolean" />
|
|
1243
|
+
<opc:Field Name="TargetName" TypeName="ua:QualifiedName" />
|
|
1244
|
+
</opc:StructuredType>
|
|
1245
|
+
|
|
1246
|
+
<opc:StructuredType Name="RelativePath" BaseType="ua:ExtensionObject">
|
|
1247
|
+
<opc:Documentation>A relative path constructed from reference types and browse names.</opc:Documentation>
|
|
1248
|
+
<opc:Field Name="NoOfElements" TypeName="opc:Int32" />
|
|
1249
|
+
<opc:Field Name="Elements" TypeName="tns:RelativePathElement" LengthField="NoOfElements" />
|
|
1250
|
+
</opc:StructuredType>
|
|
1251
|
+
|
|
1252
|
+
<opc:StructuredType Name="BrowsePath" BaseType="ua:ExtensionObject">
|
|
1253
|
+
<opc:Documentation>A request to translate a path into a node id.</opc:Documentation>
|
|
1254
|
+
<opc:Field Name="StartingNode" TypeName="ua:NodeId" />
|
|
1255
|
+
<opc:Field Name="RelativePath" TypeName="tns:RelativePath" />
|
|
1256
|
+
</opc:StructuredType>
|
|
1257
|
+
|
|
1258
|
+
<opc:StructuredType Name="BrowsePathTarget" BaseType="ua:ExtensionObject">
|
|
1259
|
+
<opc:Documentation>The target of the translated path.</opc:Documentation>
|
|
1260
|
+
<opc:Field Name="TargetId" TypeName="ua:ExpandedNodeId" />
|
|
1261
|
+
<opc:Field Name="RemainingPathIndex" TypeName="opc:UInt32" />
|
|
1262
|
+
</opc:StructuredType>
|
|
1263
|
+
|
|
1264
|
+
<opc:StructuredType Name="BrowsePathResult" BaseType="ua:ExtensionObject">
|
|
1265
|
+
<opc:Documentation>The result of a translate opearation.</opc:Documentation>
|
|
1266
|
+
<opc:Field Name="StatusCode" TypeName="ua:StatusCode" />
|
|
1267
|
+
<opc:Field Name="NoOfTargets" TypeName="opc:Int32" />
|
|
1268
|
+
<opc:Field Name="Targets" TypeName="tns:BrowsePathTarget" LengthField="NoOfTargets" />
|
|
1269
|
+
</opc:StructuredType>
|
|
1270
|
+
|
|
1271
|
+
<opc:StructuredType Name="TranslateBrowsePathsToNodeIdsRequest" BaseType="ua:ExtensionObject">
|
|
1272
|
+
<opc:Documentation>Translates one or more paths in the server address space.</opc:Documentation>
|
|
1273
|
+
<opc:Field Name="RequestHeader" TypeName="tns:RequestHeader" />
|
|
1274
|
+
<opc:Field Name="NoOfBrowsePaths" TypeName="opc:Int32" />
|
|
1275
|
+
<opc:Field Name="BrowsePaths" TypeName="tns:BrowsePath" LengthField="NoOfBrowsePaths" />
|
|
1276
|
+
</opc:StructuredType>
|
|
1277
|
+
|
|
1278
|
+
<opc:StructuredType Name="TranslateBrowsePathsToNodeIdsResponse" BaseType="ua:ExtensionObject">
|
|
1279
|
+
<opc:Documentation>Translates one or more paths in the server address space.</opc:Documentation>
|
|
1280
|
+
<opc:Field Name="ResponseHeader" TypeName="tns:ResponseHeader" />
|
|
1281
|
+
<opc:Field Name="NoOfResults" TypeName="opc:Int32" />
|
|
1282
|
+
<opc:Field Name="Results" TypeName="tns:BrowsePathResult" LengthField="NoOfResults" />
|
|
1283
|
+
<opc:Field Name="NoOfDiagnosticInfos" TypeName="opc:Int32" />
|
|
1284
|
+
<opc:Field Name="DiagnosticInfos" TypeName="ua:DiagnosticInfo" LengthField="NoOfDiagnosticInfos" />
|
|
1285
|
+
</opc:StructuredType>
|
|
1286
|
+
|
|
1287
|
+
<opc:StructuredType Name="RegisterNodesRequest" BaseType="ua:ExtensionObject">
|
|
1288
|
+
<opc:Documentation>Registers one or more nodes for repeated use within a session.</opc:Documentation>
|
|
1289
|
+
<opc:Field Name="RequestHeader" TypeName="tns:RequestHeader" />
|
|
1290
|
+
<opc:Field Name="NoOfNodesToRegister" TypeName="opc:Int32" />
|
|
1291
|
+
<opc:Field Name="NodesToRegister" TypeName="ua:NodeId" LengthField="NoOfNodesToRegister" />
|
|
1292
|
+
</opc:StructuredType>
|
|
1293
|
+
|
|
1294
|
+
<opc:StructuredType Name="RegisterNodesResponse" BaseType="ua:ExtensionObject">
|
|
1295
|
+
<opc:Documentation>Registers one or more nodes for repeated use within a session.</opc:Documentation>
|
|
1296
|
+
<opc:Field Name="ResponseHeader" TypeName="tns:ResponseHeader" />
|
|
1297
|
+
<opc:Field Name="NoOfRegisteredNodeIds" TypeName="opc:Int32" />
|
|
1298
|
+
<opc:Field Name="RegisteredNodeIds" TypeName="ua:NodeId" LengthField="NoOfRegisteredNodeIds" />
|
|
1299
|
+
</opc:StructuredType>
|
|
1300
|
+
|
|
1301
|
+
<opc:StructuredType Name="UnregisterNodesRequest" BaseType="ua:ExtensionObject">
|
|
1302
|
+
<opc:Documentation>Unregisters one or more previously registered nodes.</opc:Documentation>
|
|
1303
|
+
<opc:Field Name="RequestHeader" TypeName="tns:RequestHeader" />
|
|
1304
|
+
<opc:Field Name="NoOfNodesToUnregister" TypeName="opc:Int32" />
|
|
1305
|
+
<opc:Field Name="NodesToUnregister" TypeName="ua:NodeId" LengthField="NoOfNodesToUnregister" />
|
|
1306
|
+
</opc:StructuredType>
|
|
1307
|
+
|
|
1308
|
+
<opc:StructuredType Name="UnregisterNodesResponse" BaseType="ua:ExtensionObject">
|
|
1309
|
+
<opc:Documentation>Unregisters one or more previously registered nodes.</opc:Documentation>
|
|
1310
|
+
<opc:Field Name="ResponseHeader" TypeName="tns:ResponseHeader" />
|
|
1311
|
+
</opc:StructuredType>
|
|
1312
|
+
|
|
1313
|
+
<opc:OpaqueType Name="Counter">
|
|
1314
|
+
<opc:Documentation>A monotonically increasing value.</opc:Documentation>
|
|
1315
|
+
</opc:OpaqueType>
|
|
1316
|
+
|
|
1317
|
+
<opc:OpaqueType Name="NumericRange">
|
|
1318
|
+
<opc:Documentation>Specifies a range of array indexes.</opc:Documentation>
|
|
1319
|
+
</opc:OpaqueType>
|
|
1320
|
+
|
|
1321
|
+
<opc:OpaqueType Name="Time">
|
|
1322
|
+
<opc:Documentation>A time value specified as HH:MM:SS.SSS.</opc:Documentation>
|
|
1323
|
+
</opc:OpaqueType>
|
|
1324
|
+
|
|
1325
|
+
<opc:OpaqueType Name="Date">
|
|
1326
|
+
<opc:Documentation>A date value.</opc:Documentation>
|
|
1327
|
+
</opc:OpaqueType>
|
|
1328
|
+
|
|
1329
|
+
<opc:StructuredType Name="EndpointConfiguration" BaseType="ua:ExtensionObject">
|
|
1330
|
+
<opc:Field Name="OperationTimeout" TypeName="opc:Int32" />
|
|
1331
|
+
<opc:Field Name="UseBinaryEncoding" TypeName="opc:Boolean" />
|
|
1332
|
+
<opc:Field Name="MaxStringLength" TypeName="opc:Int32" />
|
|
1333
|
+
<opc:Field Name="MaxByteStringLength" TypeName="opc:Int32" />
|
|
1334
|
+
<opc:Field Name="MaxArrayLength" TypeName="opc:Int32" />
|
|
1335
|
+
<opc:Field Name="MaxMessageSize" TypeName="opc:Int32" />
|
|
1336
|
+
<opc:Field Name="MaxBufferSize" TypeName="opc:Int32" />
|
|
1337
|
+
<opc:Field Name="ChannelLifetime" TypeName="opc:Int32" />
|
|
1338
|
+
<opc:Field Name="SecurityTokenLifetime" TypeName="opc:Int32" />
|
|
1339
|
+
</opc:StructuredType>
|
|
1340
|
+
|
|
1341
|
+
<opc:EnumeratedType Name="ComplianceLevel" LengthInBits="32">
|
|
1342
|
+
<opc:EnumeratedValue Name="Untested" Value="0" />
|
|
1343
|
+
<opc:EnumeratedValue Name="Partial" Value="1" />
|
|
1344
|
+
<opc:EnumeratedValue Name="SelfTested" Value="2" />
|
|
1345
|
+
<opc:EnumeratedValue Name="Certified" Value="3" />
|
|
1346
|
+
</opc:EnumeratedType>
|
|
1347
|
+
|
|
1348
|
+
<opc:StructuredType Name="SupportedProfile" BaseType="ua:ExtensionObject">
|
|
1349
|
+
<opc:Field Name="OrganizationUri" TypeName="opc:String" />
|
|
1350
|
+
<opc:Field Name="ProfileId" TypeName="opc:String" />
|
|
1351
|
+
<opc:Field Name="ComplianceTool" TypeName="opc:String" />
|
|
1352
|
+
<opc:Field Name="ComplianceDate" TypeName="opc:DateTime" />
|
|
1353
|
+
<opc:Field Name="ComplianceLevel" TypeName="tns:ComplianceLevel" />
|
|
1354
|
+
<opc:Field Name="NoOfUnsupportedUnitIds" TypeName="opc:Int32" />
|
|
1355
|
+
<opc:Field Name="UnsupportedUnitIds" TypeName="opc:String" LengthField="NoOfUnsupportedUnitIds" />
|
|
1356
|
+
</opc:StructuredType>
|
|
1357
|
+
|
|
1358
|
+
<opc:StructuredType Name="SoftwareCertificate" BaseType="ua:ExtensionObject">
|
|
1359
|
+
<opc:Field Name="ProductName" TypeName="opc:String" />
|
|
1360
|
+
<opc:Field Name="ProductUri" TypeName="opc:String" />
|
|
1361
|
+
<opc:Field Name="VendorName" TypeName="opc:String" />
|
|
1362
|
+
<opc:Field Name="VendorProductCertificate" TypeName="opc:ByteString" />
|
|
1363
|
+
<opc:Field Name="SoftwareVersion" TypeName="opc:String" />
|
|
1364
|
+
<opc:Field Name="BuildNumber" TypeName="opc:String" />
|
|
1365
|
+
<opc:Field Name="BuildDate" TypeName="opc:DateTime" />
|
|
1366
|
+
<opc:Field Name="IssuedBy" TypeName="opc:String" />
|
|
1367
|
+
<opc:Field Name="IssueDate" TypeName="opc:DateTime" />
|
|
1368
|
+
<opc:Field Name="NoOfSupportedProfiles" TypeName="opc:Int32" />
|
|
1369
|
+
<opc:Field Name="SupportedProfiles" TypeName="tns:SupportedProfile" LengthField="NoOfSupportedProfiles" />
|
|
1370
|
+
</opc:StructuredType>
|
|
1371
|
+
|
|
1372
|
+
<opc:StructuredType Name="QueryDataDescription" BaseType="ua:ExtensionObject">
|
|
1373
|
+
<opc:Field Name="RelativePath" TypeName="tns:RelativePath" />
|
|
1374
|
+
<opc:Field Name="AttributeId" TypeName="opc:UInt32" />
|
|
1375
|
+
<opc:Field Name="IndexRange" TypeName="opc:String" />
|
|
1376
|
+
</opc:StructuredType>
|
|
1377
|
+
|
|
1378
|
+
<opc:StructuredType Name="NodeTypeDescription" BaseType="ua:ExtensionObject">
|
|
1379
|
+
<opc:Field Name="TypeDefinitionNode" TypeName="ua:ExpandedNodeId" />
|
|
1380
|
+
<opc:Field Name="IncludeSubTypes" TypeName="opc:Boolean" />
|
|
1381
|
+
<opc:Field Name="NoOfDataToReturn" TypeName="opc:Int32" />
|
|
1382
|
+
<opc:Field Name="DataToReturn" TypeName="tns:QueryDataDescription" LengthField="NoOfDataToReturn" />
|
|
1383
|
+
</opc:StructuredType>
|
|
1384
|
+
|
|
1385
|
+
<opc:EnumeratedType Name="FilterOperator" LengthInBits="32">
|
|
1386
|
+
<opc:EnumeratedValue Name="Equals" Value="0" />
|
|
1387
|
+
<opc:EnumeratedValue Name="IsNull" Value="1" />
|
|
1388
|
+
<opc:EnumeratedValue Name="GreaterThan" Value="2" />
|
|
1389
|
+
<opc:EnumeratedValue Name="LessThan" Value="3" />
|
|
1390
|
+
<opc:EnumeratedValue Name="GreaterThanOrEqual" Value="4" />
|
|
1391
|
+
<opc:EnumeratedValue Name="LessThanOrEqual" Value="5" />
|
|
1392
|
+
<opc:EnumeratedValue Name="Like" Value="6" />
|
|
1393
|
+
<opc:EnumeratedValue Name="Not" Value="7" />
|
|
1394
|
+
<opc:EnumeratedValue Name="Between" Value="8" />
|
|
1395
|
+
<opc:EnumeratedValue Name="InList" Value="9" />
|
|
1396
|
+
<opc:EnumeratedValue Name="And" Value="10" />
|
|
1397
|
+
<opc:EnumeratedValue Name="Or" Value="11" />
|
|
1398
|
+
<opc:EnumeratedValue Name="Cast" Value="12" />
|
|
1399
|
+
<opc:EnumeratedValue Name="InView" Value="13" />
|
|
1400
|
+
<opc:EnumeratedValue Name="OfType" Value="14" />
|
|
1401
|
+
<opc:EnumeratedValue Name="RelatedTo" Value="15" />
|
|
1402
|
+
<opc:EnumeratedValue Name="BitwiseAnd" Value="16" />
|
|
1403
|
+
<opc:EnumeratedValue Name="BitwiseOr" Value="17" />
|
|
1404
|
+
</opc:EnumeratedType>
|
|
1405
|
+
|
|
1406
|
+
<opc:StructuredType Name="QueryDataSet" BaseType="ua:ExtensionObject">
|
|
1407
|
+
<opc:Field Name="NodeId" TypeName="ua:ExpandedNodeId" />
|
|
1408
|
+
<opc:Field Name="TypeDefinitionNode" TypeName="ua:ExpandedNodeId" />
|
|
1409
|
+
<opc:Field Name="NoOfValues" TypeName="opc:Int32" />
|
|
1410
|
+
<opc:Field Name="Values" TypeName="ua:Variant" LengthField="NoOfValues" />
|
|
1411
|
+
</opc:StructuredType>
|
|
1412
|
+
|
|
1413
|
+
<opc:StructuredType Name="NodeReference" BaseType="ua:ExtensionObject">
|
|
1414
|
+
<opc:Field Name="NodeId" TypeName="ua:NodeId" />
|
|
1415
|
+
<opc:Field Name="ReferenceTypeId" TypeName="ua:NodeId" />
|
|
1416
|
+
<opc:Field Name="IsForward" TypeName="opc:Boolean" />
|
|
1417
|
+
<opc:Field Name="NoOfReferencedNodeIds" TypeName="opc:Int32" />
|
|
1418
|
+
<opc:Field Name="ReferencedNodeIds" TypeName="ua:NodeId" LengthField="NoOfReferencedNodeIds" />
|
|
1419
|
+
</opc:StructuredType>
|
|
1420
|
+
|
|
1421
|
+
<opc:StructuredType Name="ContentFilterElement" BaseType="ua:ExtensionObject">
|
|
1422
|
+
<opc:Field Name="FilterOperator" TypeName="tns:FilterOperator" />
|
|
1423
|
+
<opc:Field Name="NoOfFilterOperands" TypeName="opc:Int32" />
|
|
1424
|
+
<opc:Field Name="FilterOperands" TypeName="ua:ExtensionObject" LengthField="NoOfFilterOperands" />
|
|
1425
|
+
</opc:StructuredType>
|
|
1426
|
+
|
|
1427
|
+
<opc:StructuredType Name="ContentFilter" BaseType="ua:ExtensionObject">
|
|
1428
|
+
<opc:Field Name="NoOfElements" TypeName="opc:Int32" />
|
|
1429
|
+
<opc:Field Name="Elements" TypeName="tns:ContentFilterElement" LengthField="NoOfElements" />
|
|
1430
|
+
</opc:StructuredType>
|
|
1431
|
+
|
|
1432
|
+
<opc:StructuredType Name="FilterOperand" BaseType="ua:ExtensionObject">
|
|
1433
|
+
</opc:StructuredType>
|
|
1434
|
+
|
|
1435
|
+
<opc:StructuredType Name="ElementOperand" BaseType="tns:FilterOperand">
|
|
1436
|
+
<opc:Field Name="Index" TypeName="opc:UInt32" />
|
|
1437
|
+
</opc:StructuredType>
|
|
1438
|
+
|
|
1439
|
+
<opc:StructuredType Name="LiteralOperand" BaseType="tns:FilterOperand">
|
|
1440
|
+
<opc:Field Name="Value" TypeName="ua:Variant" />
|
|
1441
|
+
</opc:StructuredType>
|
|
1442
|
+
|
|
1443
|
+
<opc:StructuredType Name="AttributeOperand" BaseType="tns:FilterOperand">
|
|
1444
|
+
<opc:Field Name="NodeId" TypeName="ua:NodeId" />
|
|
1445
|
+
<opc:Field Name="Alias" TypeName="opc:String" />
|
|
1446
|
+
<opc:Field Name="BrowsePath" TypeName="tns:RelativePath" />
|
|
1447
|
+
<opc:Field Name="AttributeId" TypeName="opc:UInt32" />
|
|
1448
|
+
<opc:Field Name="IndexRange" TypeName="opc:String" />
|
|
1449
|
+
</opc:StructuredType>
|
|
1450
|
+
|
|
1451
|
+
<opc:StructuredType Name="SimpleAttributeOperand" BaseType="tns:FilterOperand">
|
|
1452
|
+
<opc:Field Name="TypeDefinitionId" TypeName="ua:NodeId" />
|
|
1453
|
+
<opc:Field Name="NoOfBrowsePath" TypeName="opc:Int32" />
|
|
1454
|
+
<opc:Field Name="BrowsePath" TypeName="ua:QualifiedName" LengthField="NoOfBrowsePath" />
|
|
1455
|
+
<opc:Field Name="AttributeId" TypeName="opc:UInt32" />
|
|
1456
|
+
<opc:Field Name="IndexRange" TypeName="opc:String" />
|
|
1457
|
+
</opc:StructuredType>
|
|
1458
|
+
|
|
1459
|
+
<opc:StructuredType Name="ContentFilterElementResult" BaseType="ua:ExtensionObject">
|
|
1460
|
+
<opc:Field Name="StatusCode" TypeName="ua:StatusCode" />
|
|
1461
|
+
<opc:Field Name="NoOfOperandStatusCodes" TypeName="opc:Int32" />
|
|
1462
|
+
<opc:Field Name="OperandStatusCodes" TypeName="ua:StatusCode" LengthField="NoOfOperandStatusCodes" />
|
|
1463
|
+
<opc:Field Name="NoOfOperandDiagnosticInfos" TypeName="opc:Int32" />
|
|
1464
|
+
<opc:Field Name="OperandDiagnosticInfos" TypeName="ua:DiagnosticInfo" LengthField="NoOfOperandDiagnosticInfos" />
|
|
1465
|
+
</opc:StructuredType>
|
|
1466
|
+
|
|
1467
|
+
<opc:StructuredType Name="ContentFilterResult" BaseType="ua:ExtensionObject">
|
|
1468
|
+
<opc:Field Name="NoOfElementResults" TypeName="opc:Int32" />
|
|
1469
|
+
<opc:Field Name="ElementResults" TypeName="tns:ContentFilterElementResult" LengthField="NoOfElementResults" />
|
|
1470
|
+
<opc:Field Name="NoOfElementDiagnosticInfos" TypeName="opc:Int32" />
|
|
1471
|
+
<opc:Field Name="ElementDiagnosticInfos" TypeName="ua:DiagnosticInfo" LengthField="NoOfElementDiagnosticInfos" />
|
|
1472
|
+
</opc:StructuredType>
|
|
1473
|
+
|
|
1474
|
+
<opc:StructuredType Name="ParsingResult" BaseType="ua:ExtensionObject">
|
|
1475
|
+
<opc:Field Name="StatusCode" TypeName="ua:StatusCode" />
|
|
1476
|
+
<opc:Field Name="NoOfDataStatusCodes" TypeName="opc:Int32" />
|
|
1477
|
+
<opc:Field Name="DataStatusCodes" TypeName="ua:StatusCode" LengthField="NoOfDataStatusCodes" />
|
|
1478
|
+
<opc:Field Name="NoOfDataDiagnosticInfos" TypeName="opc:Int32" />
|
|
1479
|
+
<opc:Field Name="DataDiagnosticInfos" TypeName="ua:DiagnosticInfo" LengthField="NoOfDataDiagnosticInfos" />
|
|
1480
|
+
</opc:StructuredType>
|
|
1481
|
+
|
|
1482
|
+
<opc:StructuredType Name="QueryFirstRequest" BaseType="ua:ExtensionObject">
|
|
1483
|
+
<opc:Field Name="RequestHeader" TypeName="tns:RequestHeader" />
|
|
1484
|
+
<opc:Field Name="View" TypeName="tns:ViewDescription" />
|
|
1485
|
+
<opc:Field Name="NoOfNodeTypes" TypeName="opc:Int32" />
|
|
1486
|
+
<opc:Field Name="NodeTypes" TypeName="tns:NodeTypeDescription" LengthField="NoOfNodeTypes" />
|
|
1487
|
+
<opc:Field Name="Filter" TypeName="tns:ContentFilter" />
|
|
1488
|
+
<opc:Field Name="MaxDataSetsToReturn" TypeName="opc:UInt32" />
|
|
1489
|
+
<opc:Field Name="MaxReferencesToReturn" TypeName="opc:UInt32" />
|
|
1490
|
+
</opc:StructuredType>
|
|
1491
|
+
|
|
1492
|
+
<opc:StructuredType Name="QueryFirstResponse" BaseType="ua:ExtensionObject">
|
|
1493
|
+
<opc:Field Name="ResponseHeader" TypeName="tns:ResponseHeader" />
|
|
1494
|
+
<opc:Field Name="NoOfQueryDataSets" TypeName="opc:Int32" />
|
|
1495
|
+
<opc:Field Name="QueryDataSets" TypeName="tns:QueryDataSet" LengthField="NoOfQueryDataSets" />
|
|
1496
|
+
<opc:Field Name="ContinuationPoint" TypeName="opc:ByteString" />
|
|
1497
|
+
<opc:Field Name="NoOfParsingResults" TypeName="opc:Int32" />
|
|
1498
|
+
<opc:Field Name="ParsingResults" TypeName="tns:ParsingResult" LengthField="NoOfParsingResults" />
|
|
1499
|
+
<opc:Field Name="NoOfDiagnosticInfos" TypeName="opc:Int32" />
|
|
1500
|
+
<opc:Field Name="DiagnosticInfos" TypeName="ua:DiagnosticInfo" LengthField="NoOfDiagnosticInfos" />
|
|
1501
|
+
<opc:Field Name="FilterResult" TypeName="tns:ContentFilterResult" />
|
|
1502
|
+
</opc:StructuredType>
|
|
1503
|
+
|
|
1504
|
+
<opc:StructuredType Name="QueryNextRequest" BaseType="ua:ExtensionObject">
|
|
1505
|
+
<opc:Field Name="RequestHeader" TypeName="tns:RequestHeader" />
|
|
1506
|
+
<opc:Field Name="ReleaseContinuationPoint" TypeName="opc:Boolean" />
|
|
1507
|
+
<opc:Field Name="ContinuationPoint" TypeName="opc:ByteString" />
|
|
1508
|
+
</opc:StructuredType>
|
|
1509
|
+
|
|
1510
|
+
<opc:StructuredType Name="QueryNextResponse" BaseType="ua:ExtensionObject">
|
|
1511
|
+
<opc:Field Name="ResponseHeader" TypeName="tns:ResponseHeader" />
|
|
1512
|
+
<opc:Field Name="NoOfQueryDataSets" TypeName="opc:Int32" />
|
|
1513
|
+
<opc:Field Name="QueryDataSets" TypeName="tns:QueryDataSet" LengthField="NoOfQueryDataSets" />
|
|
1514
|
+
<opc:Field Name="RevisedContinuationPoint" TypeName="opc:ByteString" />
|
|
1515
|
+
</opc:StructuredType>
|
|
1516
|
+
|
|
1517
|
+
<opc:EnumeratedType Name="TimestampsToReturn" LengthInBits="32">
|
|
1518
|
+
<opc:EnumeratedValue Name="Source" Value="0" />
|
|
1519
|
+
<opc:EnumeratedValue Name="Server" Value="1" />
|
|
1520
|
+
<opc:EnumeratedValue Name="Both" Value="2" />
|
|
1521
|
+
<opc:EnumeratedValue Name="Neither" Value="3" />
|
|
1522
|
+
</opc:EnumeratedType>
|
|
1523
|
+
|
|
1524
|
+
<opc:StructuredType Name="ReadValueId" BaseType="ua:ExtensionObject">
|
|
1525
|
+
<opc:Field Name="NodeId" TypeName="ua:NodeId" />
|
|
1526
|
+
<opc:Field Name="AttributeId" TypeName="opc:UInt32" />
|
|
1527
|
+
<opc:Field Name="IndexRange" TypeName="opc:String" />
|
|
1528
|
+
<opc:Field Name="DataEncoding" TypeName="ua:QualifiedName" />
|
|
1529
|
+
</opc:StructuredType>
|
|
1530
|
+
|
|
1531
|
+
<opc:StructuredType Name="ReadRequest" BaseType="ua:ExtensionObject">
|
|
1532
|
+
<opc:Field Name="RequestHeader" TypeName="tns:RequestHeader" />
|
|
1533
|
+
<opc:Field Name="MaxAge" TypeName="opc:Double" />
|
|
1534
|
+
<opc:Field Name="TimestampsToReturn" TypeName="tns:TimestampsToReturn" />
|
|
1535
|
+
<opc:Field Name="NoOfNodesToRead" TypeName="opc:Int32" />
|
|
1536
|
+
<opc:Field Name="NodesToRead" TypeName="tns:ReadValueId" LengthField="NoOfNodesToRead" />
|
|
1537
|
+
</opc:StructuredType>
|
|
1538
|
+
|
|
1539
|
+
<opc:StructuredType Name="ReadResponse" BaseType="ua:ExtensionObject">
|
|
1540
|
+
<opc:Field Name="ResponseHeader" TypeName="tns:ResponseHeader" />
|
|
1541
|
+
<opc:Field Name="NoOfResults" TypeName="opc:Int32" />
|
|
1542
|
+
<opc:Field Name="Results" TypeName="ua:DataValue" LengthField="NoOfResults" />
|
|
1543
|
+
<opc:Field Name="NoOfDiagnosticInfos" TypeName="opc:Int32" />
|
|
1544
|
+
<opc:Field Name="DiagnosticInfos" TypeName="ua:DiagnosticInfo" LengthField="NoOfDiagnosticInfos" />
|
|
1545
|
+
</opc:StructuredType>
|
|
1546
|
+
|
|
1547
|
+
<opc:StructuredType Name="HistoryReadValueId" BaseType="ua:ExtensionObject">
|
|
1548
|
+
<opc:Field Name="NodeId" TypeName="ua:NodeId" />
|
|
1549
|
+
<opc:Field Name="IndexRange" TypeName="opc:String" />
|
|
1550
|
+
<opc:Field Name="DataEncoding" TypeName="ua:QualifiedName" />
|
|
1551
|
+
<opc:Field Name="ContinuationPoint" TypeName="opc:ByteString" />
|
|
1552
|
+
</opc:StructuredType>
|
|
1553
|
+
|
|
1554
|
+
<opc:StructuredType Name="HistoryReadResult" BaseType="ua:ExtensionObject">
|
|
1555
|
+
<opc:Field Name="StatusCode" TypeName="ua:StatusCode" />
|
|
1556
|
+
<opc:Field Name="ContinuationPoint" TypeName="opc:ByteString" />
|
|
1557
|
+
<opc:Field Name="HistoryData" TypeName="ua:ExtensionObject" />
|
|
1558
|
+
</opc:StructuredType>
|
|
1559
|
+
|
|
1560
|
+
<opc:StructuredType Name="HistoryReadDetails" BaseType="ua:ExtensionObject">
|
|
1561
|
+
</opc:StructuredType>
|
|
1562
|
+
|
|
1563
|
+
<opc:StructuredType Name="ReadEventDetails" BaseType="tns:HistoryReadDetails">
|
|
1564
|
+
<opc:Field Name="NumValuesPerNode" TypeName="opc:UInt32" />
|
|
1565
|
+
<opc:Field Name="StartTime" TypeName="opc:DateTime" />
|
|
1566
|
+
<opc:Field Name="EndTime" TypeName="opc:DateTime" />
|
|
1567
|
+
<opc:Field Name="Filter" TypeName="tns:EventFilter" />
|
|
1568
|
+
</opc:StructuredType>
|
|
1569
|
+
|
|
1570
|
+
<opc:StructuredType Name="ReadRawModifiedDetails" BaseType="tns:HistoryReadDetails">
|
|
1571
|
+
<opc:Field Name="IsReadModified" TypeName="opc:Boolean" />
|
|
1572
|
+
<opc:Field Name="StartTime" TypeName="opc:DateTime" />
|
|
1573
|
+
<opc:Field Name="EndTime" TypeName="opc:DateTime" />
|
|
1574
|
+
<opc:Field Name="NumValuesPerNode" TypeName="opc:UInt32" />
|
|
1575
|
+
<opc:Field Name="ReturnBounds" TypeName="opc:Boolean" />
|
|
1576
|
+
</opc:StructuredType>
|
|
1577
|
+
|
|
1578
|
+
<opc:StructuredType Name="ReadProcessedDetails" BaseType="tns:HistoryReadDetails">
|
|
1579
|
+
<opc:Field Name="StartTime" TypeName="opc:DateTime" />
|
|
1580
|
+
<opc:Field Name="EndTime" TypeName="opc:DateTime" />
|
|
1581
|
+
<opc:Field Name="ProcessingInterval" TypeName="opc:Double" />
|
|
1582
|
+
<opc:Field Name="NoOfAggregateType" TypeName="opc:Int32" />
|
|
1583
|
+
<opc:Field Name="AggregateType" TypeName="ua:NodeId" LengthField="NoOfAggregateType" />
|
|
1584
|
+
<opc:Field Name="AggregateConfiguration" TypeName="tns:AggregateConfiguration" />
|
|
1585
|
+
</opc:StructuredType>
|
|
1586
|
+
|
|
1587
|
+
<opc:StructuredType Name="ReadAtTimeDetails" BaseType="tns:HistoryReadDetails">
|
|
1588
|
+
<opc:Field Name="NoOfReqTimes" TypeName="opc:Int32" />
|
|
1589
|
+
<opc:Field Name="ReqTimes" TypeName="opc:DateTime" LengthField="NoOfReqTimes" />
|
|
1590
|
+
<opc:Field Name="UseSimpleBounds" TypeName="opc:Boolean" />
|
|
1591
|
+
</opc:StructuredType>
|
|
1592
|
+
|
|
1593
|
+
<opc:StructuredType Name="HistoryData" BaseType="ua:ExtensionObject">
|
|
1594
|
+
<opc:Field Name="NoOfDataValues" TypeName="opc:Int32" />
|
|
1595
|
+
<opc:Field Name="DataValues" TypeName="ua:DataValue" LengthField="NoOfDataValues" />
|
|
1596
|
+
</opc:StructuredType>
|
|
1597
|
+
|
|
1598
|
+
<opc:StructuredType Name="ModificationInfo" BaseType="ua:ExtensionObject">
|
|
1599
|
+
<opc:Field Name="ModificationTime" TypeName="opc:DateTime" />
|
|
1600
|
+
<opc:Field Name="UpdateType" TypeName="tns:HistoryUpdateType" />
|
|
1601
|
+
<opc:Field Name="UserName" TypeName="opc:String" />
|
|
1602
|
+
</opc:StructuredType>
|
|
1603
|
+
|
|
1604
|
+
<opc:StructuredType Name="HistoryModifiedData" BaseType="tns:HistoryData">
|
|
1605
|
+
<opc:Field Name="NoOfDataValues" TypeName="opc:Int32" />
|
|
1606
|
+
<opc:Field Name="DataValues" TypeName="ua:DataValue" LengthField="NoOfDataValues" />
|
|
1607
|
+
<opc:Field Name="NoOfModificationInfos" TypeName="opc:Int32" />
|
|
1608
|
+
<opc:Field Name="ModificationInfos" TypeName="tns:ModificationInfo" LengthField="NoOfModificationInfos" />
|
|
1609
|
+
</opc:StructuredType>
|
|
1610
|
+
|
|
1611
|
+
<opc:StructuredType Name="HistoryEvent" BaseType="ua:ExtensionObject">
|
|
1612
|
+
<opc:Field Name="NoOfEvents" TypeName="opc:Int32" />
|
|
1613
|
+
<opc:Field Name="Events" TypeName="tns:HistoryEventFieldList" LengthField="NoOfEvents" />
|
|
1614
|
+
</opc:StructuredType>
|
|
1615
|
+
|
|
1616
|
+
<opc:StructuredType Name="HistoryReadRequest" BaseType="ua:ExtensionObject">
|
|
1617
|
+
<opc:Field Name="RequestHeader" TypeName="tns:RequestHeader" />
|
|
1618
|
+
<opc:Field Name="HistoryReadDetails" TypeName="ua:ExtensionObject" />
|
|
1619
|
+
<opc:Field Name="TimestampsToReturn" TypeName="tns:TimestampsToReturn" />
|
|
1620
|
+
<opc:Field Name="ReleaseContinuationPoints" TypeName="opc:Boolean" />
|
|
1621
|
+
<opc:Field Name="NoOfNodesToRead" TypeName="opc:Int32" />
|
|
1622
|
+
<opc:Field Name="NodesToRead" TypeName="tns:HistoryReadValueId" LengthField="NoOfNodesToRead" />
|
|
1623
|
+
</opc:StructuredType>
|
|
1624
|
+
|
|
1625
|
+
<opc:StructuredType Name="HistoryReadResponse" BaseType="ua:ExtensionObject">
|
|
1626
|
+
<opc:Field Name="ResponseHeader" TypeName="tns:ResponseHeader" />
|
|
1627
|
+
<opc:Field Name="NoOfResults" TypeName="opc:Int32" />
|
|
1628
|
+
<opc:Field Name="Results" TypeName="tns:HistoryReadResult" LengthField="NoOfResults" />
|
|
1629
|
+
<opc:Field Name="NoOfDiagnosticInfos" TypeName="opc:Int32" />
|
|
1630
|
+
<opc:Field Name="DiagnosticInfos" TypeName="ua:DiagnosticInfo" LengthField="NoOfDiagnosticInfos" />
|
|
1631
|
+
</opc:StructuredType>
|
|
1632
|
+
|
|
1633
|
+
<opc:StructuredType Name="WriteValue" BaseType="ua:ExtensionObject">
|
|
1634
|
+
<opc:Field Name="NodeId" TypeName="ua:NodeId" />
|
|
1635
|
+
<opc:Field Name="AttributeId" TypeName="opc:UInt32" />
|
|
1636
|
+
<opc:Field Name="IndexRange" TypeName="opc:String" />
|
|
1637
|
+
<opc:Field Name="Value" TypeName="ua:DataValue" />
|
|
1638
|
+
</opc:StructuredType>
|
|
1639
|
+
|
|
1640
|
+
<opc:StructuredType Name="WriteRequest" BaseType="ua:ExtensionObject">
|
|
1641
|
+
<opc:Field Name="RequestHeader" TypeName="tns:RequestHeader" />
|
|
1642
|
+
<opc:Field Name="NoOfNodesToWrite" TypeName="opc:Int32" />
|
|
1643
|
+
<opc:Field Name="NodesToWrite" TypeName="tns:WriteValue" LengthField="NoOfNodesToWrite" />
|
|
1644
|
+
</opc:StructuredType>
|
|
1645
|
+
|
|
1646
|
+
<opc:StructuredType Name="WriteResponse" BaseType="ua:ExtensionObject">
|
|
1647
|
+
<opc:Field Name="ResponseHeader" TypeName="tns:ResponseHeader" />
|
|
1648
|
+
<opc:Field Name="NoOfResults" TypeName="opc:Int32" />
|
|
1649
|
+
<opc:Field Name="Results" TypeName="ua:StatusCode" LengthField="NoOfResults" />
|
|
1650
|
+
<opc:Field Name="NoOfDiagnosticInfos" TypeName="opc:Int32" />
|
|
1651
|
+
<opc:Field Name="DiagnosticInfos" TypeName="ua:DiagnosticInfo" LengthField="NoOfDiagnosticInfos" />
|
|
1652
|
+
</opc:StructuredType>
|
|
1653
|
+
|
|
1654
|
+
<opc:StructuredType Name="HistoryUpdateDetails" BaseType="ua:ExtensionObject">
|
|
1655
|
+
<opc:Field Name="NodeId" TypeName="ua:NodeId" />
|
|
1656
|
+
</opc:StructuredType>
|
|
1657
|
+
|
|
1658
|
+
<opc:EnumeratedType Name="HistoryUpdateType" LengthInBits="32">
|
|
1659
|
+
<opc:EnumeratedValue Name="Insert" Value="1" />
|
|
1660
|
+
<opc:EnumeratedValue Name="Replace" Value="2" />
|
|
1661
|
+
<opc:EnumeratedValue Name="Update" Value="3" />
|
|
1662
|
+
<opc:EnumeratedValue Name="Delete" Value="4" />
|
|
1663
|
+
</opc:EnumeratedType>
|
|
1664
|
+
|
|
1665
|
+
<opc:EnumeratedType Name="PerformUpdateType" LengthInBits="32">
|
|
1666
|
+
<opc:EnumeratedValue Name="Insert" Value="1" />
|
|
1667
|
+
<opc:EnumeratedValue Name="Replace" Value="2" />
|
|
1668
|
+
<opc:EnumeratedValue Name="Update" Value="3" />
|
|
1669
|
+
<opc:EnumeratedValue Name="Remove" Value="4" />
|
|
1670
|
+
</opc:EnumeratedType>
|
|
1671
|
+
|
|
1672
|
+
<opc:StructuredType Name="UpdateDataDetails" BaseType="tns:HistoryUpdateDetails">
|
|
1673
|
+
<opc:Field Name="NodeId" TypeName="ua:NodeId" SourceType="tns:HistoryUpdateDetails" />
|
|
1674
|
+
<opc:Field Name="PerformInsertReplace" TypeName="tns:PerformUpdateType" />
|
|
1675
|
+
<opc:Field Name="NoOfUpdateValues" TypeName="opc:Int32" />
|
|
1676
|
+
<opc:Field Name="UpdateValues" TypeName="ua:DataValue" LengthField="NoOfUpdateValues" />
|
|
1677
|
+
</opc:StructuredType>
|
|
1678
|
+
|
|
1679
|
+
<opc:StructuredType Name="UpdateStructureDataDetails" BaseType="tns:HistoryUpdateDetails">
|
|
1680
|
+
<opc:Field Name="NodeId" TypeName="ua:NodeId" SourceType="tns:HistoryUpdateDetails" />
|
|
1681
|
+
<opc:Field Name="PerformInsertReplace" TypeName="tns:PerformUpdateType" />
|
|
1682
|
+
<opc:Field Name="NoOfUpdateValues" TypeName="opc:Int32" />
|
|
1683
|
+
<opc:Field Name="UpdateValues" TypeName="ua:DataValue" LengthField="NoOfUpdateValues" />
|
|
1684
|
+
</opc:StructuredType>
|
|
1685
|
+
|
|
1686
|
+
<opc:StructuredType Name="UpdateEventDetails" BaseType="tns:HistoryUpdateDetails">
|
|
1687
|
+
<opc:Field Name="NodeId" TypeName="ua:NodeId" SourceType="tns:HistoryUpdateDetails" />
|
|
1688
|
+
<opc:Field Name="PerformInsertReplace" TypeName="tns:PerformUpdateType" />
|
|
1689
|
+
<opc:Field Name="Filter" TypeName="tns:EventFilter" />
|
|
1690
|
+
<opc:Field Name="NoOfEventData" TypeName="opc:Int32" />
|
|
1691
|
+
<opc:Field Name="EventData" TypeName="tns:HistoryEventFieldList" LengthField="NoOfEventData" />
|
|
1692
|
+
</opc:StructuredType>
|
|
1693
|
+
|
|
1694
|
+
<opc:StructuredType Name="DeleteRawModifiedDetails" BaseType="tns:HistoryUpdateDetails">
|
|
1695
|
+
<opc:Field Name="NodeId" TypeName="ua:NodeId" SourceType="tns:HistoryUpdateDetails" />
|
|
1696
|
+
<opc:Field Name="IsDeleteModified" TypeName="opc:Boolean" />
|
|
1697
|
+
<opc:Field Name="StartTime" TypeName="opc:DateTime" />
|
|
1698
|
+
<opc:Field Name="EndTime" TypeName="opc:DateTime" />
|
|
1699
|
+
</opc:StructuredType>
|
|
1700
|
+
|
|
1701
|
+
<opc:StructuredType Name="DeleteAtTimeDetails" BaseType="tns:HistoryUpdateDetails">
|
|
1702
|
+
<opc:Field Name="NodeId" TypeName="ua:NodeId" SourceType="tns:HistoryUpdateDetails" />
|
|
1703
|
+
<opc:Field Name="NoOfReqTimes" TypeName="opc:Int32" />
|
|
1704
|
+
<opc:Field Name="ReqTimes" TypeName="opc:DateTime" LengthField="NoOfReqTimes" />
|
|
1705
|
+
</opc:StructuredType>
|
|
1706
|
+
|
|
1707
|
+
<opc:StructuredType Name="DeleteEventDetails" BaseType="tns:HistoryUpdateDetails">
|
|
1708
|
+
<opc:Field Name="NodeId" TypeName="ua:NodeId" SourceType="tns:HistoryUpdateDetails" />
|
|
1709
|
+
<opc:Field Name="NoOfEventIds" TypeName="opc:Int32" />
|
|
1710
|
+
<opc:Field Name="EventIds" TypeName="opc:ByteString" LengthField="NoOfEventIds" />
|
|
1711
|
+
</opc:StructuredType>
|
|
1712
|
+
|
|
1713
|
+
<opc:StructuredType Name="HistoryUpdateResult" BaseType="ua:ExtensionObject">
|
|
1714
|
+
<opc:Field Name="StatusCode" TypeName="ua:StatusCode" />
|
|
1715
|
+
<opc:Field Name="NoOfOperationResults" TypeName="opc:Int32" />
|
|
1716
|
+
<opc:Field Name="OperationResults" TypeName="ua:StatusCode" LengthField="NoOfOperationResults" />
|
|
1717
|
+
<opc:Field Name="NoOfDiagnosticInfos" TypeName="opc:Int32" />
|
|
1718
|
+
<opc:Field Name="DiagnosticInfos" TypeName="ua:DiagnosticInfo" LengthField="NoOfDiagnosticInfos" />
|
|
1719
|
+
</opc:StructuredType>
|
|
1720
|
+
|
|
1721
|
+
<opc:StructuredType Name="HistoryUpdateRequest" BaseType="ua:ExtensionObject">
|
|
1722
|
+
<opc:Field Name="RequestHeader" TypeName="tns:RequestHeader" />
|
|
1723
|
+
<opc:Field Name="NoOfHistoryUpdateDetails" TypeName="opc:Int32" />
|
|
1724
|
+
<opc:Field Name="HistoryUpdateDetails" TypeName="ua:ExtensionObject" LengthField="NoOfHistoryUpdateDetails" />
|
|
1725
|
+
</opc:StructuredType>
|
|
1726
|
+
|
|
1727
|
+
<opc:StructuredType Name="HistoryUpdateResponse" BaseType="ua:ExtensionObject">
|
|
1728
|
+
<opc:Field Name="ResponseHeader" TypeName="tns:ResponseHeader" />
|
|
1729
|
+
<opc:Field Name="NoOfResults" TypeName="opc:Int32" />
|
|
1730
|
+
<opc:Field Name="Results" TypeName="tns:HistoryUpdateResult" LengthField="NoOfResults" />
|
|
1731
|
+
<opc:Field Name="NoOfDiagnosticInfos" TypeName="opc:Int32" />
|
|
1732
|
+
<opc:Field Name="DiagnosticInfos" TypeName="ua:DiagnosticInfo" LengthField="NoOfDiagnosticInfos" />
|
|
1733
|
+
</opc:StructuredType>
|
|
1734
|
+
|
|
1735
|
+
<opc:StructuredType Name="CallMethodRequest" BaseType="ua:ExtensionObject">
|
|
1736
|
+
<opc:Field Name="ObjectId" TypeName="ua:NodeId" />
|
|
1737
|
+
<opc:Field Name="MethodId" TypeName="ua:NodeId" />
|
|
1738
|
+
<opc:Field Name="NoOfInputArguments" TypeName="opc:Int32" />
|
|
1739
|
+
<opc:Field Name="InputArguments" TypeName="ua:Variant" LengthField="NoOfInputArguments" />
|
|
1740
|
+
</opc:StructuredType>
|
|
1741
|
+
|
|
1742
|
+
<opc:StructuredType Name="CallMethodResult" BaseType="ua:ExtensionObject">
|
|
1743
|
+
<opc:Field Name="StatusCode" TypeName="ua:StatusCode" />
|
|
1744
|
+
<opc:Field Name="NoOfInputArgumentResults" TypeName="opc:Int32" />
|
|
1745
|
+
<opc:Field Name="InputArgumentResults" TypeName="ua:StatusCode" LengthField="NoOfInputArgumentResults" />
|
|
1746
|
+
<opc:Field Name="NoOfInputArgumentDiagnosticInfos" TypeName="opc:Int32" />
|
|
1747
|
+
<opc:Field Name="InputArgumentDiagnosticInfos" TypeName="ua:DiagnosticInfo" LengthField="NoOfInputArgumentDiagnosticInfos" />
|
|
1748
|
+
<opc:Field Name="NoOfOutputArguments" TypeName="opc:Int32" />
|
|
1749
|
+
<opc:Field Name="OutputArguments" TypeName="ua:Variant" LengthField="NoOfOutputArguments" />
|
|
1750
|
+
</opc:StructuredType>
|
|
1751
|
+
|
|
1752
|
+
<opc:StructuredType Name="CallRequest" BaseType="ua:ExtensionObject">
|
|
1753
|
+
<opc:Field Name="RequestHeader" TypeName="tns:RequestHeader" />
|
|
1754
|
+
<opc:Field Name="NoOfMethodsToCall" TypeName="opc:Int32" />
|
|
1755
|
+
<opc:Field Name="MethodsToCall" TypeName="tns:CallMethodRequest" LengthField="NoOfMethodsToCall" />
|
|
1756
|
+
</opc:StructuredType>
|
|
1757
|
+
|
|
1758
|
+
<opc:StructuredType Name="CallResponse" BaseType="ua:ExtensionObject">
|
|
1759
|
+
<opc:Field Name="ResponseHeader" TypeName="tns:ResponseHeader" />
|
|
1760
|
+
<opc:Field Name="NoOfResults" TypeName="opc:Int32" />
|
|
1761
|
+
<opc:Field Name="Results" TypeName="tns:CallMethodResult" LengthField="NoOfResults" />
|
|
1762
|
+
<opc:Field Name="NoOfDiagnosticInfos" TypeName="opc:Int32" />
|
|
1763
|
+
<opc:Field Name="DiagnosticInfos" TypeName="ua:DiagnosticInfo" LengthField="NoOfDiagnosticInfos" />
|
|
1764
|
+
</opc:StructuredType>
|
|
1765
|
+
|
|
1766
|
+
<opc:EnumeratedType Name="MonitoringMode" LengthInBits="32">
|
|
1767
|
+
<opc:EnumeratedValue Name="Disabled" Value="0" />
|
|
1768
|
+
<opc:EnumeratedValue Name="Sampling" Value="1" />
|
|
1769
|
+
<opc:EnumeratedValue Name="Reporting" Value="2" />
|
|
1770
|
+
</opc:EnumeratedType>
|
|
1771
|
+
|
|
1772
|
+
<opc:EnumeratedType Name="DataChangeTrigger" LengthInBits="32">
|
|
1773
|
+
<opc:EnumeratedValue Name="Status" Value="0" />
|
|
1774
|
+
<opc:EnumeratedValue Name="StatusValue" Value="1" />
|
|
1775
|
+
<opc:EnumeratedValue Name="StatusValueTimestamp" Value="2" />
|
|
1776
|
+
</opc:EnumeratedType>
|
|
1777
|
+
|
|
1778
|
+
<opc:EnumeratedType Name="DeadbandType" LengthInBits="32">
|
|
1779
|
+
<opc:EnumeratedValue Name="None" Value="0" />
|
|
1780
|
+
<opc:EnumeratedValue Name="Absolute" Value="1" />
|
|
1781
|
+
<opc:EnumeratedValue Name="Percent" Value="2" />
|
|
1782
|
+
</opc:EnumeratedType>
|
|
1783
|
+
|
|
1784
|
+
<opc:StructuredType Name="MonitoringFilter" BaseType="ua:ExtensionObject">
|
|
1785
|
+
</opc:StructuredType>
|
|
1786
|
+
|
|
1787
|
+
<opc:StructuredType Name="DataChangeFilter" BaseType="tns:MonitoringFilter">
|
|
1788
|
+
<opc:Field Name="Trigger" TypeName="tns:DataChangeTrigger" />
|
|
1789
|
+
<opc:Field Name="DeadbandType" TypeName="opc:UInt32" />
|
|
1790
|
+
<opc:Field Name="DeadbandValue" TypeName="opc:Double" />
|
|
1791
|
+
</opc:StructuredType>
|
|
1792
|
+
|
|
1793
|
+
<opc:StructuredType Name="EventFilter" BaseType="tns:MonitoringFilter">
|
|
1794
|
+
<opc:Field Name="NoOfSelectClauses" TypeName="opc:Int32" />
|
|
1795
|
+
<opc:Field Name="SelectClauses" TypeName="tns:SimpleAttributeOperand" LengthField="NoOfSelectClauses" />
|
|
1796
|
+
<opc:Field Name="WhereClause" TypeName="tns:ContentFilter" />
|
|
1797
|
+
</opc:StructuredType>
|
|
1798
|
+
|
|
1799
|
+
<opc:StructuredType Name="AggregateConfiguration" BaseType="ua:ExtensionObject">
|
|
1800
|
+
<opc:Field Name="UseServerCapabilitiesDefaults" TypeName="opc:Boolean" />
|
|
1801
|
+
<opc:Field Name="TreatUncertainAsBad" TypeName="opc:Boolean" />
|
|
1802
|
+
<opc:Field Name="PercentDataBad" TypeName="opc:Byte" />
|
|
1803
|
+
<opc:Field Name="PercentDataGood" TypeName="opc:Byte" />
|
|
1804
|
+
<opc:Field Name="UseSlopedExtrapolation" TypeName="opc:Boolean" />
|
|
1805
|
+
</opc:StructuredType>
|
|
1806
|
+
|
|
1807
|
+
<opc:StructuredType Name="AggregateFilter" BaseType="tns:MonitoringFilter">
|
|
1808
|
+
<opc:Field Name="StartTime" TypeName="opc:DateTime" />
|
|
1809
|
+
<opc:Field Name="AggregateType" TypeName="ua:NodeId" />
|
|
1810
|
+
<opc:Field Name="ProcessingInterval" TypeName="opc:Double" />
|
|
1811
|
+
<opc:Field Name="AggregateConfiguration" TypeName="tns:AggregateConfiguration" />
|
|
1812
|
+
</opc:StructuredType>
|
|
1813
|
+
|
|
1814
|
+
<opc:StructuredType Name="MonitoringFilterResult" BaseType="ua:ExtensionObject">
|
|
1815
|
+
</opc:StructuredType>
|
|
1816
|
+
|
|
1817
|
+
<opc:StructuredType Name="EventFilterResult" BaseType="tns:MonitoringFilterResult">
|
|
1818
|
+
<opc:Field Name="NoOfSelectClauseResults" TypeName="opc:Int32" />
|
|
1819
|
+
<opc:Field Name="SelectClauseResults" TypeName="ua:StatusCode" LengthField="NoOfSelectClauseResults" />
|
|
1820
|
+
<opc:Field Name="NoOfSelectClauseDiagnosticInfos" TypeName="opc:Int32" />
|
|
1821
|
+
<opc:Field Name="SelectClauseDiagnosticInfos" TypeName="ua:DiagnosticInfo" LengthField="NoOfSelectClauseDiagnosticInfos" />
|
|
1822
|
+
<opc:Field Name="WhereClauseResult" TypeName="tns:ContentFilterResult" />
|
|
1823
|
+
</opc:StructuredType>
|
|
1824
|
+
|
|
1825
|
+
<opc:StructuredType Name="AggregateFilterResult" BaseType="tns:MonitoringFilterResult">
|
|
1826
|
+
<opc:Field Name="RevisedStartTime" TypeName="opc:DateTime" />
|
|
1827
|
+
<opc:Field Name="RevisedProcessingInterval" TypeName="opc:Double" />
|
|
1828
|
+
<opc:Field Name="RevisedAggregateConfiguration" TypeName="tns:AggregateConfiguration" />
|
|
1829
|
+
</opc:StructuredType>
|
|
1830
|
+
|
|
1831
|
+
<opc:StructuredType Name="MonitoringParameters" BaseType="ua:ExtensionObject">
|
|
1832
|
+
<opc:Field Name="ClientHandle" TypeName="opc:UInt32" />
|
|
1833
|
+
<opc:Field Name="SamplingInterval" TypeName="opc:Double" />
|
|
1834
|
+
<opc:Field Name="Filter" TypeName="ua:ExtensionObject" />
|
|
1835
|
+
<opc:Field Name="QueueSize" TypeName="opc:UInt32" />
|
|
1836
|
+
<opc:Field Name="DiscardOldest" TypeName="opc:Boolean" />
|
|
1837
|
+
</opc:StructuredType>
|
|
1838
|
+
|
|
1839
|
+
<opc:StructuredType Name="MonitoredItemCreateRequest" BaseType="ua:ExtensionObject">
|
|
1840
|
+
<opc:Field Name="ItemToMonitor" TypeName="tns:ReadValueId" />
|
|
1841
|
+
<opc:Field Name="MonitoringMode" TypeName="tns:MonitoringMode" />
|
|
1842
|
+
<opc:Field Name="RequestedParameters" TypeName="tns:MonitoringParameters" />
|
|
1843
|
+
</opc:StructuredType>
|
|
1844
|
+
|
|
1845
|
+
<opc:StructuredType Name="MonitoredItemCreateResult" BaseType="ua:ExtensionObject">
|
|
1846
|
+
<opc:Field Name="StatusCode" TypeName="ua:StatusCode" />
|
|
1847
|
+
<opc:Field Name="MonitoredItemId" TypeName="opc:UInt32" />
|
|
1848
|
+
<opc:Field Name="RevisedSamplingInterval" TypeName="opc:Double" />
|
|
1849
|
+
<opc:Field Name="RevisedQueueSize" TypeName="opc:UInt32" />
|
|
1850
|
+
<opc:Field Name="FilterResult" TypeName="ua:ExtensionObject" />
|
|
1851
|
+
</opc:StructuredType>
|
|
1852
|
+
|
|
1853
|
+
<opc:StructuredType Name="CreateMonitoredItemsRequest" BaseType="ua:ExtensionObject">
|
|
1854
|
+
<opc:Field Name="RequestHeader" TypeName="tns:RequestHeader" />
|
|
1855
|
+
<opc:Field Name="SubscriptionId" TypeName="opc:UInt32" />
|
|
1856
|
+
<opc:Field Name="TimestampsToReturn" TypeName="tns:TimestampsToReturn" />
|
|
1857
|
+
<opc:Field Name="NoOfItemsToCreate" TypeName="opc:Int32" />
|
|
1858
|
+
<opc:Field Name="ItemsToCreate" TypeName="tns:MonitoredItemCreateRequest" LengthField="NoOfItemsToCreate" />
|
|
1859
|
+
</opc:StructuredType>
|
|
1860
|
+
|
|
1861
|
+
<opc:StructuredType Name="CreateMonitoredItemsResponse" BaseType="ua:ExtensionObject">
|
|
1862
|
+
<opc:Field Name="ResponseHeader" TypeName="tns:ResponseHeader" />
|
|
1863
|
+
<opc:Field Name="NoOfResults" TypeName="opc:Int32" />
|
|
1864
|
+
<opc:Field Name="Results" TypeName="tns:MonitoredItemCreateResult" LengthField="NoOfResults" />
|
|
1865
|
+
<opc:Field Name="NoOfDiagnosticInfos" TypeName="opc:Int32" />
|
|
1866
|
+
<opc:Field Name="DiagnosticInfos" TypeName="ua:DiagnosticInfo" LengthField="NoOfDiagnosticInfos" />
|
|
1867
|
+
</opc:StructuredType>
|
|
1868
|
+
|
|
1869
|
+
<opc:StructuredType Name="MonitoredItemModifyRequest" BaseType="ua:ExtensionObject">
|
|
1870
|
+
<opc:Field Name="MonitoredItemId" TypeName="opc:UInt32" />
|
|
1871
|
+
<opc:Field Name="RequestedParameters" TypeName="tns:MonitoringParameters" />
|
|
1872
|
+
</opc:StructuredType>
|
|
1873
|
+
|
|
1874
|
+
<opc:StructuredType Name="MonitoredItemModifyResult" BaseType="ua:ExtensionObject">
|
|
1875
|
+
<opc:Field Name="StatusCode" TypeName="ua:StatusCode" />
|
|
1876
|
+
<opc:Field Name="RevisedSamplingInterval" TypeName="opc:Double" />
|
|
1877
|
+
<opc:Field Name="RevisedQueueSize" TypeName="opc:UInt32" />
|
|
1878
|
+
<opc:Field Name="FilterResult" TypeName="ua:ExtensionObject" />
|
|
1879
|
+
</opc:StructuredType>
|
|
1880
|
+
|
|
1881
|
+
<opc:StructuredType Name="ModifyMonitoredItemsRequest" BaseType="ua:ExtensionObject">
|
|
1882
|
+
<opc:Field Name="RequestHeader" TypeName="tns:RequestHeader" />
|
|
1883
|
+
<opc:Field Name="SubscriptionId" TypeName="opc:UInt32" />
|
|
1884
|
+
<opc:Field Name="TimestampsToReturn" TypeName="tns:TimestampsToReturn" />
|
|
1885
|
+
<opc:Field Name="NoOfItemsToModify" TypeName="opc:Int32" />
|
|
1886
|
+
<opc:Field Name="ItemsToModify" TypeName="tns:MonitoredItemModifyRequest" LengthField="NoOfItemsToModify" />
|
|
1887
|
+
</opc:StructuredType>
|
|
1888
|
+
|
|
1889
|
+
<opc:StructuredType Name="ModifyMonitoredItemsResponse" BaseType="ua:ExtensionObject">
|
|
1890
|
+
<opc:Field Name="ResponseHeader" TypeName="tns:ResponseHeader" />
|
|
1891
|
+
<opc:Field Name="NoOfResults" TypeName="opc:Int32" />
|
|
1892
|
+
<opc:Field Name="Results" TypeName="tns:MonitoredItemModifyResult" LengthField="NoOfResults" />
|
|
1893
|
+
<opc:Field Name="NoOfDiagnosticInfos" TypeName="opc:Int32" />
|
|
1894
|
+
<opc:Field Name="DiagnosticInfos" TypeName="ua:DiagnosticInfo" LengthField="NoOfDiagnosticInfos" />
|
|
1895
|
+
</opc:StructuredType>
|
|
1896
|
+
|
|
1897
|
+
<opc:StructuredType Name="SetMonitoringModeRequest" BaseType="ua:ExtensionObject">
|
|
1898
|
+
<opc:Field Name="RequestHeader" TypeName="tns:RequestHeader" />
|
|
1899
|
+
<opc:Field Name="SubscriptionId" TypeName="opc:UInt32" />
|
|
1900
|
+
<opc:Field Name="MonitoringMode" TypeName="tns:MonitoringMode" />
|
|
1901
|
+
<opc:Field Name="NoOfMonitoredItemIds" TypeName="opc:Int32" />
|
|
1902
|
+
<opc:Field Name="MonitoredItemIds" TypeName="opc:UInt32" LengthField="NoOfMonitoredItemIds" />
|
|
1903
|
+
</opc:StructuredType>
|
|
1904
|
+
|
|
1905
|
+
<opc:StructuredType Name="SetMonitoringModeResponse" BaseType="ua:ExtensionObject">
|
|
1906
|
+
<opc:Field Name="ResponseHeader" TypeName="tns:ResponseHeader" />
|
|
1907
|
+
<opc:Field Name="NoOfResults" TypeName="opc:Int32" />
|
|
1908
|
+
<opc:Field Name="Results" TypeName="ua:StatusCode" LengthField="NoOfResults" />
|
|
1909
|
+
<opc:Field Name="NoOfDiagnosticInfos" TypeName="opc:Int32" />
|
|
1910
|
+
<opc:Field Name="DiagnosticInfos" TypeName="ua:DiagnosticInfo" LengthField="NoOfDiagnosticInfos" />
|
|
1911
|
+
</opc:StructuredType>
|
|
1912
|
+
|
|
1913
|
+
<opc:StructuredType Name="SetTriggeringRequest" BaseType="ua:ExtensionObject">
|
|
1914
|
+
<opc:Field Name="RequestHeader" TypeName="tns:RequestHeader" />
|
|
1915
|
+
<opc:Field Name="SubscriptionId" TypeName="opc:UInt32" />
|
|
1916
|
+
<opc:Field Name="TriggeringItemId" TypeName="opc:UInt32" />
|
|
1917
|
+
<opc:Field Name="NoOfLinksToAdd" TypeName="opc:Int32" />
|
|
1918
|
+
<opc:Field Name="LinksToAdd" TypeName="opc:UInt32" LengthField="NoOfLinksToAdd" />
|
|
1919
|
+
<opc:Field Name="NoOfLinksToRemove" TypeName="opc:Int32" />
|
|
1920
|
+
<opc:Field Name="LinksToRemove" TypeName="opc:UInt32" LengthField="NoOfLinksToRemove" />
|
|
1921
|
+
</opc:StructuredType>
|
|
1922
|
+
|
|
1923
|
+
<opc:StructuredType Name="SetTriggeringResponse" BaseType="ua:ExtensionObject">
|
|
1924
|
+
<opc:Field Name="ResponseHeader" TypeName="tns:ResponseHeader" />
|
|
1925
|
+
<opc:Field Name="NoOfAddResults" TypeName="opc:Int32" />
|
|
1926
|
+
<opc:Field Name="AddResults" TypeName="ua:StatusCode" LengthField="NoOfAddResults" />
|
|
1927
|
+
<opc:Field Name="NoOfAddDiagnosticInfos" TypeName="opc:Int32" />
|
|
1928
|
+
<opc:Field Name="AddDiagnosticInfos" TypeName="ua:DiagnosticInfo" LengthField="NoOfAddDiagnosticInfos" />
|
|
1929
|
+
<opc:Field Name="NoOfRemoveResults" TypeName="opc:Int32" />
|
|
1930
|
+
<opc:Field Name="RemoveResults" TypeName="ua:StatusCode" LengthField="NoOfRemoveResults" />
|
|
1931
|
+
<opc:Field Name="NoOfRemoveDiagnosticInfos" TypeName="opc:Int32" />
|
|
1932
|
+
<opc:Field Name="RemoveDiagnosticInfos" TypeName="ua:DiagnosticInfo" LengthField="NoOfRemoveDiagnosticInfos" />
|
|
1933
|
+
</opc:StructuredType>
|
|
1934
|
+
|
|
1935
|
+
<opc:StructuredType Name="DeleteMonitoredItemsRequest" BaseType="ua:ExtensionObject">
|
|
1936
|
+
<opc:Field Name="RequestHeader" TypeName="tns:RequestHeader" />
|
|
1937
|
+
<opc:Field Name="SubscriptionId" TypeName="opc:UInt32" />
|
|
1938
|
+
<opc:Field Name="NoOfMonitoredItemIds" TypeName="opc:Int32" />
|
|
1939
|
+
<opc:Field Name="MonitoredItemIds" TypeName="opc:UInt32" LengthField="NoOfMonitoredItemIds" />
|
|
1940
|
+
</opc:StructuredType>
|
|
1941
|
+
|
|
1942
|
+
<opc:StructuredType Name="DeleteMonitoredItemsResponse" BaseType="ua:ExtensionObject">
|
|
1943
|
+
<opc:Field Name="ResponseHeader" TypeName="tns:ResponseHeader" />
|
|
1944
|
+
<opc:Field Name="NoOfResults" TypeName="opc:Int32" />
|
|
1945
|
+
<opc:Field Name="Results" TypeName="ua:StatusCode" LengthField="NoOfResults" />
|
|
1946
|
+
<opc:Field Name="NoOfDiagnosticInfos" TypeName="opc:Int32" />
|
|
1947
|
+
<opc:Field Name="DiagnosticInfos" TypeName="ua:DiagnosticInfo" LengthField="NoOfDiagnosticInfos" />
|
|
1948
|
+
</opc:StructuredType>
|
|
1949
|
+
|
|
1950
|
+
<opc:StructuredType Name="CreateSubscriptionRequest" BaseType="ua:ExtensionObject">
|
|
1951
|
+
<opc:Field Name="RequestHeader" TypeName="tns:RequestHeader" />
|
|
1952
|
+
<opc:Field Name="RequestedPublishingInterval" TypeName="opc:Double" />
|
|
1953
|
+
<opc:Field Name="RequestedLifetimeCount" TypeName="opc:UInt32" />
|
|
1954
|
+
<opc:Field Name="RequestedMaxKeepAliveCount" TypeName="opc:UInt32" />
|
|
1955
|
+
<opc:Field Name="MaxNotificationsPerPublish" TypeName="opc:UInt32" />
|
|
1956
|
+
<opc:Field Name="PublishingEnabled" TypeName="opc:Boolean" />
|
|
1957
|
+
<opc:Field Name="Priority" TypeName="opc:Byte" />
|
|
1958
|
+
</opc:StructuredType>
|
|
1959
|
+
|
|
1960
|
+
<opc:StructuredType Name="CreateSubscriptionResponse" BaseType="ua:ExtensionObject">
|
|
1961
|
+
<opc:Field Name="ResponseHeader" TypeName="tns:ResponseHeader" />
|
|
1962
|
+
<opc:Field Name="SubscriptionId" TypeName="opc:UInt32" />
|
|
1963
|
+
<opc:Field Name="RevisedPublishingInterval" TypeName="opc:Double" />
|
|
1964
|
+
<opc:Field Name="RevisedLifetimeCount" TypeName="opc:UInt32" />
|
|
1965
|
+
<opc:Field Name="RevisedMaxKeepAliveCount" TypeName="opc:UInt32" />
|
|
1966
|
+
</opc:StructuredType>
|
|
1967
|
+
|
|
1968
|
+
<opc:StructuredType Name="ModifySubscriptionRequest" BaseType="ua:ExtensionObject">
|
|
1969
|
+
<opc:Field Name="RequestHeader" TypeName="tns:RequestHeader" />
|
|
1970
|
+
<opc:Field Name="SubscriptionId" TypeName="opc:UInt32" />
|
|
1971
|
+
<opc:Field Name="RequestedPublishingInterval" TypeName="opc:Double" />
|
|
1972
|
+
<opc:Field Name="RequestedLifetimeCount" TypeName="opc:UInt32" />
|
|
1973
|
+
<opc:Field Name="RequestedMaxKeepAliveCount" TypeName="opc:UInt32" />
|
|
1974
|
+
<opc:Field Name="MaxNotificationsPerPublish" TypeName="opc:UInt32" />
|
|
1975
|
+
<opc:Field Name="Priority" TypeName="opc:Byte" />
|
|
1976
|
+
</opc:StructuredType>
|
|
1977
|
+
|
|
1978
|
+
<opc:StructuredType Name="ModifySubscriptionResponse" BaseType="ua:ExtensionObject">
|
|
1979
|
+
<opc:Field Name="ResponseHeader" TypeName="tns:ResponseHeader" />
|
|
1980
|
+
<opc:Field Name="RevisedPublishingInterval" TypeName="opc:Double" />
|
|
1981
|
+
<opc:Field Name="RevisedLifetimeCount" TypeName="opc:UInt32" />
|
|
1982
|
+
<opc:Field Name="RevisedMaxKeepAliveCount" TypeName="opc:UInt32" />
|
|
1983
|
+
</opc:StructuredType>
|
|
1984
|
+
|
|
1985
|
+
<opc:StructuredType Name="SetPublishingModeRequest" BaseType="ua:ExtensionObject">
|
|
1986
|
+
<opc:Field Name="RequestHeader" TypeName="tns:RequestHeader" />
|
|
1987
|
+
<opc:Field Name="PublishingEnabled" TypeName="opc:Boolean" />
|
|
1988
|
+
<opc:Field Name="NoOfSubscriptionIds" TypeName="opc:Int32" />
|
|
1989
|
+
<opc:Field Name="SubscriptionIds" TypeName="opc:UInt32" LengthField="NoOfSubscriptionIds" />
|
|
1990
|
+
</opc:StructuredType>
|
|
1991
|
+
|
|
1992
|
+
<opc:StructuredType Name="SetPublishingModeResponse" BaseType="ua:ExtensionObject">
|
|
1993
|
+
<opc:Field Name="ResponseHeader" TypeName="tns:ResponseHeader" />
|
|
1994
|
+
<opc:Field Name="NoOfResults" TypeName="opc:Int32" />
|
|
1995
|
+
<opc:Field Name="Results" TypeName="ua:StatusCode" LengthField="NoOfResults" />
|
|
1996
|
+
<opc:Field Name="NoOfDiagnosticInfos" TypeName="opc:Int32" />
|
|
1997
|
+
<opc:Field Name="DiagnosticInfos" TypeName="ua:DiagnosticInfo" LengthField="NoOfDiagnosticInfos" />
|
|
1998
|
+
</opc:StructuredType>
|
|
1999
|
+
|
|
2000
|
+
<opc:StructuredType Name="NotificationMessage" BaseType="ua:ExtensionObject">
|
|
2001
|
+
<opc:Field Name="SequenceNumber" TypeName="opc:UInt32" />
|
|
2002
|
+
<opc:Field Name="PublishTime" TypeName="opc:DateTime" />
|
|
2003
|
+
<opc:Field Name="NoOfNotificationData" TypeName="opc:Int32" />
|
|
2004
|
+
<opc:Field Name="NotificationData" TypeName="ua:ExtensionObject" LengthField="NoOfNotificationData" />
|
|
2005
|
+
</opc:StructuredType>
|
|
2006
|
+
|
|
2007
|
+
<opc:StructuredType Name="NotificationData" BaseType="ua:ExtensionObject">
|
|
2008
|
+
</opc:StructuredType>
|
|
2009
|
+
|
|
2010
|
+
<opc:StructuredType Name="DataChangeNotification" BaseType="tns:NotificationData">
|
|
2011
|
+
<opc:Field Name="NoOfMonitoredItems" TypeName="opc:Int32" />
|
|
2012
|
+
<opc:Field Name="MonitoredItems" TypeName="tns:MonitoredItemNotification" LengthField="NoOfMonitoredItems" />
|
|
2013
|
+
<opc:Field Name="NoOfDiagnosticInfos" TypeName="opc:Int32" />
|
|
2014
|
+
<opc:Field Name="DiagnosticInfos" TypeName="ua:DiagnosticInfo" LengthField="NoOfDiagnosticInfos" />
|
|
2015
|
+
</opc:StructuredType>
|
|
2016
|
+
|
|
2017
|
+
<opc:StructuredType Name="MonitoredItemNotification" BaseType="ua:ExtensionObject">
|
|
2018
|
+
<opc:Field Name="ClientHandle" TypeName="opc:UInt32" />
|
|
2019
|
+
<opc:Field Name="Value" TypeName="ua:DataValue" />
|
|
2020
|
+
</opc:StructuredType>
|
|
2021
|
+
|
|
2022
|
+
<opc:StructuredType Name="EventNotificationList" BaseType="tns:NotificationData">
|
|
2023
|
+
<opc:Field Name="NoOfEvents" TypeName="opc:Int32" />
|
|
2024
|
+
<opc:Field Name="Events" TypeName="tns:EventFieldList" LengthField="NoOfEvents" />
|
|
2025
|
+
</opc:StructuredType>
|
|
2026
|
+
|
|
2027
|
+
<opc:StructuredType Name="EventFieldList" BaseType="ua:ExtensionObject">
|
|
2028
|
+
<opc:Field Name="ClientHandle" TypeName="opc:UInt32" />
|
|
2029
|
+
<opc:Field Name="NoOfEventFields" TypeName="opc:Int32" />
|
|
2030
|
+
<opc:Field Name="EventFields" TypeName="ua:Variant" LengthField="NoOfEventFields" />
|
|
2031
|
+
</opc:StructuredType>
|
|
2032
|
+
|
|
2033
|
+
<opc:StructuredType Name="HistoryEventFieldList" BaseType="ua:ExtensionObject">
|
|
2034
|
+
<opc:Field Name="NoOfEventFields" TypeName="opc:Int32" />
|
|
2035
|
+
<opc:Field Name="EventFields" TypeName="ua:Variant" LengthField="NoOfEventFields" />
|
|
2036
|
+
</opc:StructuredType>
|
|
2037
|
+
|
|
2038
|
+
<opc:StructuredType Name="StatusChangeNotification" BaseType="tns:NotificationData">
|
|
2039
|
+
<opc:Field Name="Status" TypeName="ua:StatusCode" />
|
|
2040
|
+
<opc:Field Name="DiagnosticInfo" TypeName="ua:DiagnosticInfo" />
|
|
2041
|
+
</opc:StructuredType>
|
|
2042
|
+
|
|
2043
|
+
<opc:StructuredType Name="SubscriptionAcknowledgement" BaseType="ua:ExtensionObject">
|
|
2044
|
+
<opc:Field Name="SubscriptionId" TypeName="opc:UInt32" />
|
|
2045
|
+
<opc:Field Name="SequenceNumber" TypeName="opc:UInt32" />
|
|
2046
|
+
</opc:StructuredType>
|
|
2047
|
+
|
|
2048
|
+
<opc:StructuredType Name="PublishRequest" BaseType="ua:ExtensionObject">
|
|
2049
|
+
<opc:Field Name="RequestHeader" TypeName="tns:RequestHeader" />
|
|
2050
|
+
<opc:Field Name="NoOfSubscriptionAcknowledgements" TypeName="opc:Int32" />
|
|
2051
|
+
<opc:Field Name="SubscriptionAcknowledgements" TypeName="tns:SubscriptionAcknowledgement" LengthField="NoOfSubscriptionAcknowledgements" />
|
|
2052
|
+
</opc:StructuredType>
|
|
2053
|
+
|
|
2054
|
+
<opc:StructuredType Name="PublishResponse" BaseType="ua:ExtensionObject">
|
|
2055
|
+
<opc:Field Name="ResponseHeader" TypeName="tns:ResponseHeader" />
|
|
2056
|
+
<opc:Field Name="SubscriptionId" TypeName="opc:UInt32" />
|
|
2057
|
+
<opc:Field Name="NoOfAvailableSequenceNumbers" TypeName="opc:Int32" />
|
|
2058
|
+
<opc:Field Name="AvailableSequenceNumbers" TypeName="opc:UInt32" LengthField="NoOfAvailableSequenceNumbers" />
|
|
2059
|
+
<opc:Field Name="MoreNotifications" TypeName="opc:Boolean" />
|
|
2060
|
+
<opc:Field Name="NotificationMessage" TypeName="tns:NotificationMessage" />
|
|
2061
|
+
<opc:Field Name="NoOfResults" TypeName="opc:Int32" />
|
|
2062
|
+
<opc:Field Name="Results" TypeName="ua:StatusCode" LengthField="NoOfResults" />
|
|
2063
|
+
<opc:Field Name="NoOfDiagnosticInfos" TypeName="opc:Int32" />
|
|
2064
|
+
<opc:Field Name="DiagnosticInfos" TypeName="ua:DiagnosticInfo" LengthField="NoOfDiagnosticInfos" />
|
|
2065
|
+
</opc:StructuredType>
|
|
2066
|
+
|
|
2067
|
+
<opc:StructuredType Name="RepublishRequest" BaseType="ua:ExtensionObject">
|
|
2068
|
+
<opc:Field Name="RequestHeader" TypeName="tns:RequestHeader" />
|
|
2069
|
+
<opc:Field Name="SubscriptionId" TypeName="opc:UInt32" />
|
|
2070
|
+
<opc:Field Name="RetransmitSequenceNumber" TypeName="opc:UInt32" />
|
|
2071
|
+
</opc:StructuredType>
|
|
2072
|
+
|
|
2073
|
+
<opc:StructuredType Name="RepublishResponse" BaseType="ua:ExtensionObject">
|
|
2074
|
+
<opc:Field Name="ResponseHeader" TypeName="tns:ResponseHeader" />
|
|
2075
|
+
<opc:Field Name="NotificationMessage" TypeName="tns:NotificationMessage" />
|
|
2076
|
+
</opc:StructuredType>
|
|
2077
|
+
|
|
2078
|
+
<opc:StructuredType Name="TransferResult" BaseType="ua:ExtensionObject">
|
|
2079
|
+
<opc:Field Name="StatusCode" TypeName="ua:StatusCode" />
|
|
2080
|
+
<opc:Field Name="NoOfAvailableSequenceNumbers" TypeName="opc:Int32" />
|
|
2081
|
+
<opc:Field Name="AvailableSequenceNumbers" TypeName="opc:UInt32" LengthField="NoOfAvailableSequenceNumbers" />
|
|
2082
|
+
</opc:StructuredType>
|
|
2083
|
+
|
|
2084
|
+
<opc:StructuredType Name="TransferSubscriptionsRequest" BaseType="ua:ExtensionObject">
|
|
2085
|
+
<opc:Field Name="RequestHeader" TypeName="tns:RequestHeader" />
|
|
2086
|
+
<opc:Field Name="NoOfSubscriptionIds" TypeName="opc:Int32" />
|
|
2087
|
+
<opc:Field Name="SubscriptionIds" TypeName="opc:UInt32" LengthField="NoOfSubscriptionIds" />
|
|
2088
|
+
<opc:Field Name="SendInitialValues" TypeName="opc:Boolean" />
|
|
2089
|
+
</opc:StructuredType>
|
|
2090
|
+
|
|
2091
|
+
<opc:StructuredType Name="TransferSubscriptionsResponse" BaseType="ua:ExtensionObject">
|
|
2092
|
+
<opc:Field Name="ResponseHeader" TypeName="tns:ResponseHeader" />
|
|
2093
|
+
<opc:Field Name="NoOfResults" TypeName="opc:Int32" />
|
|
2094
|
+
<opc:Field Name="Results" TypeName="tns:TransferResult" LengthField="NoOfResults" />
|
|
2095
|
+
<opc:Field Name="NoOfDiagnosticInfos" TypeName="opc:Int32" />
|
|
2096
|
+
<opc:Field Name="DiagnosticInfos" TypeName="ua:DiagnosticInfo" LengthField="NoOfDiagnosticInfos" />
|
|
2097
|
+
</opc:StructuredType>
|
|
2098
|
+
|
|
2099
|
+
<opc:StructuredType Name="DeleteSubscriptionsRequest" BaseType="ua:ExtensionObject">
|
|
2100
|
+
<opc:Field Name="RequestHeader" TypeName="tns:RequestHeader" />
|
|
2101
|
+
<opc:Field Name="NoOfSubscriptionIds" TypeName="opc:Int32" />
|
|
2102
|
+
<opc:Field Name="SubscriptionIds" TypeName="opc:UInt32" LengthField="NoOfSubscriptionIds" />
|
|
2103
|
+
</opc:StructuredType>
|
|
2104
|
+
|
|
2105
|
+
<opc:StructuredType Name="DeleteSubscriptionsResponse" BaseType="ua:ExtensionObject">
|
|
2106
|
+
<opc:Field Name="ResponseHeader" TypeName="tns:ResponseHeader" />
|
|
2107
|
+
<opc:Field Name="NoOfResults" TypeName="opc:Int32" />
|
|
2108
|
+
<opc:Field Name="Results" TypeName="ua:StatusCode" LengthField="NoOfResults" />
|
|
2109
|
+
<opc:Field Name="NoOfDiagnosticInfos" TypeName="opc:Int32" />
|
|
2110
|
+
<opc:Field Name="DiagnosticInfos" TypeName="ua:DiagnosticInfo" LengthField="NoOfDiagnosticInfos" />
|
|
2111
|
+
</opc:StructuredType>
|
|
2112
|
+
|
|
2113
|
+
<opc:EnumeratedType Name="EnumeratedTestType" LengthInBits="32">
|
|
2114
|
+
<opc:Documentation>A simple enumerated type used for testing.</opc:Documentation>
|
|
2115
|
+
<opc:EnumeratedValue Name="Red" Value="1" />
|
|
2116
|
+
<opc:EnumeratedValue Name="Yellow" Value="4" />
|
|
2117
|
+
<opc:EnumeratedValue Name="Green" Value="5" />
|
|
2118
|
+
</opc:EnumeratedType>
|
|
2119
|
+
|
|
2120
|
+
<opc:StructuredType Name="BuildInfo" BaseType="ua:ExtensionObject">
|
|
2121
|
+
<opc:Field Name="ProductUri" TypeName="opc:String" />
|
|
2122
|
+
<opc:Field Name="ManufacturerName" TypeName="opc:String" />
|
|
2123
|
+
<opc:Field Name="ProductName" TypeName="opc:String" />
|
|
2124
|
+
<opc:Field Name="SoftwareVersion" TypeName="opc:String" />
|
|
2125
|
+
<opc:Field Name="BuildNumber" TypeName="opc:String" />
|
|
2126
|
+
<opc:Field Name="BuildDate" TypeName="opc:DateTime" />
|
|
2127
|
+
</opc:StructuredType>
|
|
2128
|
+
|
|
2129
|
+
<opc:EnumeratedType Name="RedundancySupport" LengthInBits="32">
|
|
2130
|
+
<opc:EnumeratedValue Name="None" Value="0" />
|
|
2131
|
+
<opc:EnumeratedValue Name="Cold" Value="1" />
|
|
2132
|
+
<opc:EnumeratedValue Name="Warm" Value="2" />
|
|
2133
|
+
<opc:EnumeratedValue Name="Hot" Value="3" />
|
|
2134
|
+
<opc:EnumeratedValue Name="Transparent" Value="4" />
|
|
2135
|
+
<opc:EnumeratedValue Name="HotAndMirrored" Value="5" />
|
|
2136
|
+
</opc:EnumeratedType>
|
|
2137
|
+
|
|
2138
|
+
<opc:EnumeratedType Name="ServerState" LengthInBits="32">
|
|
2139
|
+
<opc:EnumeratedValue Name="Running" Value="0" />
|
|
2140
|
+
<opc:EnumeratedValue Name="Failed" Value="1" />
|
|
2141
|
+
<opc:EnumeratedValue Name="NoConfiguration" Value="2" />
|
|
2142
|
+
<opc:EnumeratedValue Name="Suspended" Value="3" />
|
|
2143
|
+
<opc:EnumeratedValue Name="Shutdown" Value="4" />
|
|
2144
|
+
<opc:EnumeratedValue Name="Test" Value="5" />
|
|
2145
|
+
<opc:EnumeratedValue Name="CommunicationFault" Value="6" />
|
|
2146
|
+
<opc:EnumeratedValue Name="Unknown" Value="7" />
|
|
2147
|
+
</opc:EnumeratedType>
|
|
2148
|
+
|
|
2149
|
+
<opc:StructuredType Name="RedundantServerDataType" BaseType="ua:ExtensionObject">
|
|
2150
|
+
<opc:Field Name="ServerId" TypeName="opc:String" />
|
|
2151
|
+
<opc:Field Name="ServiceLevel" TypeName="opc:Byte" />
|
|
2152
|
+
<opc:Field Name="ServerState" TypeName="tns:ServerState" />
|
|
2153
|
+
</opc:StructuredType>
|
|
2154
|
+
|
|
2155
|
+
<opc:StructuredType Name="EndpointUrlListDataType" BaseType="ua:ExtensionObject">
|
|
2156
|
+
<opc:Field Name="NoOfEndpointUrlList" TypeName="opc:Int32" />
|
|
2157
|
+
<opc:Field Name="EndpointUrlList" TypeName="opc:String" LengthField="NoOfEndpointUrlList" />
|
|
2158
|
+
</opc:StructuredType>
|
|
2159
|
+
|
|
2160
|
+
<opc:StructuredType Name="NetworkGroupDataType" BaseType="ua:ExtensionObject">
|
|
2161
|
+
<opc:Field Name="ServerUri" TypeName="opc:String" />
|
|
2162
|
+
<opc:Field Name="NoOfNetworkPaths" TypeName="opc:Int32" />
|
|
2163
|
+
<opc:Field Name="NetworkPaths" TypeName="tns:EndpointUrlListDataType" LengthField="NoOfNetworkPaths" />
|
|
2164
|
+
</opc:StructuredType>
|
|
2165
|
+
|
|
2166
|
+
<opc:StructuredType Name="SamplingIntervalDiagnosticsDataType" BaseType="ua:ExtensionObject">
|
|
2167
|
+
<opc:Field Name="SamplingInterval" TypeName="opc:Double" />
|
|
2168
|
+
<opc:Field Name="MonitoredItemCount" TypeName="opc:UInt32" />
|
|
2169
|
+
<opc:Field Name="MaxMonitoredItemCount" TypeName="opc:UInt32" />
|
|
2170
|
+
<opc:Field Name="DisabledMonitoredItemCount" TypeName="opc:UInt32" />
|
|
2171
|
+
</opc:StructuredType>
|
|
2172
|
+
|
|
2173
|
+
<opc:StructuredType Name="ServerDiagnosticsSummaryDataType" BaseType="ua:ExtensionObject">
|
|
2174
|
+
<opc:Field Name="ServerViewCount" TypeName="opc:UInt32" />
|
|
2175
|
+
<opc:Field Name="CurrentSessionCount" TypeName="opc:UInt32" />
|
|
2176
|
+
<opc:Field Name="CumulatedSessionCount" TypeName="opc:UInt32" />
|
|
2177
|
+
<opc:Field Name="SecurityRejectedSessionCount" TypeName="opc:UInt32" />
|
|
2178
|
+
<opc:Field Name="RejectedSessionCount" TypeName="opc:UInt32" />
|
|
2179
|
+
<opc:Field Name="SessionTimeoutCount" TypeName="opc:UInt32" />
|
|
2180
|
+
<opc:Field Name="SessionAbortCount" TypeName="opc:UInt32" />
|
|
2181
|
+
<opc:Field Name="CurrentSubscriptionCount" TypeName="opc:UInt32" />
|
|
2182
|
+
<opc:Field Name="CumulatedSubscriptionCount" TypeName="opc:UInt32" />
|
|
2183
|
+
<opc:Field Name="PublishingIntervalCount" TypeName="opc:UInt32" />
|
|
2184
|
+
<opc:Field Name="SecurityRejectedRequestsCount" TypeName="opc:UInt32" />
|
|
2185
|
+
<opc:Field Name="RejectedRequestsCount" TypeName="opc:UInt32" />
|
|
2186
|
+
</opc:StructuredType>
|
|
2187
|
+
|
|
2188
|
+
<opc:StructuredType Name="ServerStatusDataType" BaseType="ua:ExtensionObject">
|
|
2189
|
+
<opc:Field Name="StartTime" TypeName="opc:DateTime" />
|
|
2190
|
+
<opc:Field Name="CurrentTime" TypeName="opc:DateTime" />
|
|
2191
|
+
<opc:Field Name="State" TypeName="tns:ServerState" />
|
|
2192
|
+
<opc:Field Name="BuildInfo" TypeName="tns:BuildInfo" />
|
|
2193
|
+
<opc:Field Name="SecondsTillShutdown" TypeName="opc:UInt32" />
|
|
2194
|
+
<opc:Field Name="ShutdownReason" TypeName="ua:LocalizedText" />
|
|
2195
|
+
</opc:StructuredType>
|
|
2196
|
+
|
|
2197
|
+
<opc:StructuredType Name="SessionDiagnosticsDataType" BaseType="ua:ExtensionObject">
|
|
2198
|
+
<opc:Field Name="SessionId" TypeName="ua:NodeId" />
|
|
2199
|
+
<opc:Field Name="SessionName" TypeName="opc:String" />
|
|
2200
|
+
<opc:Field Name="ClientDescription" TypeName="tns:ApplicationDescription" />
|
|
2201
|
+
<opc:Field Name="ServerUri" TypeName="opc:String" />
|
|
2202
|
+
<opc:Field Name="EndpointUrl" TypeName="opc:String" />
|
|
2203
|
+
<opc:Field Name="NoOfLocaleIds" TypeName="opc:Int32" />
|
|
2204
|
+
<opc:Field Name="LocaleIds" TypeName="opc:String" LengthField="NoOfLocaleIds" />
|
|
2205
|
+
<opc:Field Name="ActualSessionTimeout" TypeName="opc:Double" />
|
|
2206
|
+
<opc:Field Name="MaxResponseMessageSize" TypeName="opc:UInt32" />
|
|
2207
|
+
<opc:Field Name="ClientConnectionTime" TypeName="opc:DateTime" />
|
|
2208
|
+
<opc:Field Name="ClientLastContactTime" TypeName="opc:DateTime" />
|
|
2209
|
+
<opc:Field Name="CurrentSubscriptionsCount" TypeName="opc:UInt32" />
|
|
2210
|
+
<opc:Field Name="CurrentMonitoredItemsCount" TypeName="opc:UInt32" />
|
|
2211
|
+
<opc:Field Name="CurrentPublishRequestsInQueue" TypeName="opc:UInt32" />
|
|
2212
|
+
<opc:Field Name="TotalRequestCount" TypeName="tns:ServiceCounterDataType" />
|
|
2213
|
+
<opc:Field Name="UnauthorizedRequestCount" TypeName="opc:UInt32" />
|
|
2214
|
+
<opc:Field Name="ReadCount" TypeName="tns:ServiceCounterDataType" />
|
|
2215
|
+
<opc:Field Name="HistoryReadCount" TypeName="tns:ServiceCounterDataType" />
|
|
2216
|
+
<opc:Field Name="WriteCount" TypeName="tns:ServiceCounterDataType" />
|
|
2217
|
+
<opc:Field Name="HistoryUpdateCount" TypeName="tns:ServiceCounterDataType" />
|
|
2218
|
+
<opc:Field Name="CallCount" TypeName="tns:ServiceCounterDataType" />
|
|
2219
|
+
<opc:Field Name="CreateMonitoredItemsCount" TypeName="tns:ServiceCounterDataType" />
|
|
2220
|
+
<opc:Field Name="ModifyMonitoredItemsCount" TypeName="tns:ServiceCounterDataType" />
|
|
2221
|
+
<opc:Field Name="SetMonitoringModeCount" TypeName="tns:ServiceCounterDataType" />
|
|
2222
|
+
<opc:Field Name="SetTriggeringCount" TypeName="tns:ServiceCounterDataType" />
|
|
2223
|
+
<opc:Field Name="DeleteMonitoredItemsCount" TypeName="tns:ServiceCounterDataType" />
|
|
2224
|
+
<opc:Field Name="CreateSubscriptionCount" TypeName="tns:ServiceCounterDataType" />
|
|
2225
|
+
<opc:Field Name="ModifySubscriptionCount" TypeName="tns:ServiceCounterDataType" />
|
|
2226
|
+
<opc:Field Name="SetPublishingModeCount" TypeName="tns:ServiceCounterDataType" />
|
|
2227
|
+
<opc:Field Name="PublishCount" TypeName="tns:ServiceCounterDataType" />
|
|
2228
|
+
<opc:Field Name="RepublishCount" TypeName="tns:ServiceCounterDataType" />
|
|
2229
|
+
<opc:Field Name="TransferSubscriptionsCount" TypeName="tns:ServiceCounterDataType" />
|
|
2230
|
+
<opc:Field Name="DeleteSubscriptionsCount" TypeName="tns:ServiceCounterDataType" />
|
|
2231
|
+
<opc:Field Name="AddNodesCount" TypeName="tns:ServiceCounterDataType" />
|
|
2232
|
+
<opc:Field Name="AddReferencesCount" TypeName="tns:ServiceCounterDataType" />
|
|
2233
|
+
<opc:Field Name="DeleteNodesCount" TypeName="tns:ServiceCounterDataType" />
|
|
2234
|
+
<opc:Field Name="DeleteReferencesCount" TypeName="tns:ServiceCounterDataType" />
|
|
2235
|
+
<opc:Field Name="BrowseCount" TypeName="tns:ServiceCounterDataType" />
|
|
2236
|
+
<opc:Field Name="BrowseNextCount" TypeName="tns:ServiceCounterDataType" />
|
|
2237
|
+
<opc:Field Name="TranslateBrowsePathsToNodeIdsCount" TypeName="tns:ServiceCounterDataType" />
|
|
2238
|
+
<opc:Field Name="QueryFirstCount" TypeName="tns:ServiceCounterDataType" />
|
|
2239
|
+
<opc:Field Name="QueryNextCount" TypeName="tns:ServiceCounterDataType" />
|
|
2240
|
+
<opc:Field Name="RegisterNodesCount" TypeName="tns:ServiceCounterDataType" />
|
|
2241
|
+
<opc:Field Name="UnregisterNodesCount" TypeName="tns:ServiceCounterDataType" />
|
|
2242
|
+
</opc:StructuredType>
|
|
2243
|
+
|
|
2244
|
+
<opc:StructuredType Name="SessionSecurityDiagnosticsDataType" BaseType="ua:ExtensionObject">
|
|
2245
|
+
<opc:Field Name="SessionId" TypeName="ua:NodeId" />
|
|
2246
|
+
<opc:Field Name="ClientUserIdOfSession" TypeName="opc:String" />
|
|
2247
|
+
<opc:Field Name="NoOfClientUserIdHistory" TypeName="opc:Int32" />
|
|
2248
|
+
<opc:Field Name="ClientUserIdHistory" TypeName="opc:String" LengthField="NoOfClientUserIdHistory" />
|
|
2249
|
+
<opc:Field Name="AuthenticationMechanism" TypeName="opc:String" />
|
|
2250
|
+
<opc:Field Name="Encoding" TypeName="opc:String" />
|
|
2251
|
+
<opc:Field Name="TransportProtocol" TypeName="opc:String" />
|
|
2252
|
+
<opc:Field Name="SecurityMode" TypeName="tns:MessageSecurityMode" />
|
|
2253
|
+
<opc:Field Name="SecurityPolicyUri" TypeName="opc:String" />
|
|
2254
|
+
<opc:Field Name="ClientCertificate" TypeName="opc:ByteString" />
|
|
2255
|
+
</opc:StructuredType>
|
|
2256
|
+
|
|
2257
|
+
<opc:StructuredType Name="ServiceCounterDataType" BaseType="ua:ExtensionObject">
|
|
2258
|
+
<opc:Field Name="TotalCount" TypeName="opc:UInt32" />
|
|
2259
|
+
<opc:Field Name="ErrorCount" TypeName="opc:UInt32" />
|
|
2260
|
+
</opc:StructuredType>
|
|
2261
|
+
|
|
2262
|
+
<opc:StructuredType Name="StatusResult" BaseType="ua:ExtensionObject">
|
|
2263
|
+
<opc:Field Name="StatusCode" TypeName="ua:StatusCode" />
|
|
2264
|
+
<opc:Field Name="DiagnosticInfo" TypeName="ua:DiagnosticInfo" />
|
|
2265
|
+
</opc:StructuredType>
|
|
2266
|
+
|
|
2267
|
+
<opc:StructuredType Name="SubscriptionDiagnosticsDataType" BaseType="ua:ExtensionObject">
|
|
2268
|
+
<opc:Field Name="SessionId" TypeName="ua:NodeId" />
|
|
2269
|
+
<opc:Field Name="SubscriptionId" TypeName="opc:UInt32" />
|
|
2270
|
+
<opc:Field Name="Priority" TypeName="opc:Byte" />
|
|
2271
|
+
<opc:Field Name="PublishingInterval" TypeName="opc:Double" />
|
|
2272
|
+
<opc:Field Name="MaxKeepAliveCount" TypeName="opc:UInt32" />
|
|
2273
|
+
<opc:Field Name="MaxLifetimeCount" TypeName="opc:UInt32" />
|
|
2274
|
+
<opc:Field Name="MaxNotificationsPerPublish" TypeName="opc:UInt32" />
|
|
2275
|
+
<opc:Field Name="PublishingEnabled" TypeName="opc:Boolean" />
|
|
2276
|
+
<opc:Field Name="ModifyCount" TypeName="opc:UInt32" />
|
|
2277
|
+
<opc:Field Name="EnableCount" TypeName="opc:UInt32" />
|
|
2278
|
+
<opc:Field Name="DisableCount" TypeName="opc:UInt32" />
|
|
2279
|
+
<opc:Field Name="RepublishRequestCount" TypeName="opc:UInt32" />
|
|
2280
|
+
<opc:Field Name="RepublishMessageRequestCount" TypeName="opc:UInt32" />
|
|
2281
|
+
<opc:Field Name="RepublishMessageCount" TypeName="opc:UInt32" />
|
|
2282
|
+
<opc:Field Name="TransferRequestCount" TypeName="opc:UInt32" />
|
|
2283
|
+
<opc:Field Name="TransferredToAltClientCount" TypeName="opc:UInt32" />
|
|
2284
|
+
<opc:Field Name="TransferredToSameClientCount" TypeName="opc:UInt32" />
|
|
2285
|
+
<opc:Field Name="PublishRequestCount" TypeName="opc:UInt32" />
|
|
2286
|
+
<opc:Field Name="DataChangeNotificationsCount" TypeName="opc:UInt32" />
|
|
2287
|
+
<opc:Field Name="EventNotificationsCount" TypeName="opc:UInt32" />
|
|
2288
|
+
<opc:Field Name="NotificationsCount" TypeName="opc:UInt32" />
|
|
2289
|
+
<opc:Field Name="LatePublishRequestCount" TypeName="opc:UInt32" />
|
|
2290
|
+
<opc:Field Name="CurrentKeepAliveCount" TypeName="opc:UInt32" />
|
|
2291
|
+
<opc:Field Name="CurrentLifetimeCount" TypeName="opc:UInt32" />
|
|
2292
|
+
<opc:Field Name="UnacknowledgedMessageCount" TypeName="opc:UInt32" />
|
|
2293
|
+
<opc:Field Name="DiscardedMessageCount" TypeName="opc:UInt32" />
|
|
2294
|
+
<opc:Field Name="MonitoredItemCount" TypeName="opc:UInt32" />
|
|
2295
|
+
<opc:Field Name="DisabledMonitoredItemCount" TypeName="opc:UInt32" />
|
|
2296
|
+
<opc:Field Name="MonitoringQueueOverflowCount" TypeName="opc:UInt32" />
|
|
2297
|
+
<opc:Field Name="NextSequenceNumber" TypeName="opc:UInt32" />
|
|
2298
|
+
<opc:Field Name="EventQueueOverFlowCount" TypeName="opc:UInt32" />
|
|
2299
|
+
</opc:StructuredType>
|
|
2300
|
+
|
|
2301
|
+
<opc:EnumeratedType Name="ModelChangeStructureVerbMask" LengthInBits="32">
|
|
2302
|
+
<opc:EnumeratedValue Name="NodeAdded" Value="1" />
|
|
2303
|
+
<opc:EnumeratedValue Name="NodeDeleted" Value="2" />
|
|
2304
|
+
<opc:EnumeratedValue Name="ReferenceAdded" Value="4" />
|
|
2305
|
+
<opc:EnumeratedValue Name="ReferenceDeleted" Value="8" />
|
|
2306
|
+
<opc:EnumeratedValue Name="DataTypeChanged" Value="16" />
|
|
2307
|
+
</opc:EnumeratedType>
|
|
2308
|
+
|
|
2309
|
+
<opc:StructuredType Name="ModelChangeStructureDataType" BaseType="ua:ExtensionObject">
|
|
2310
|
+
<opc:Field Name="Affected" TypeName="ua:NodeId" />
|
|
2311
|
+
<opc:Field Name="AffectedType" TypeName="ua:NodeId" />
|
|
2312
|
+
<opc:Field Name="Verb" TypeName="opc:Byte" />
|
|
2313
|
+
</opc:StructuredType>
|
|
2314
|
+
|
|
2315
|
+
<opc:StructuredType Name="SemanticChangeStructureDataType" BaseType="ua:ExtensionObject">
|
|
2316
|
+
<opc:Field Name="Affected" TypeName="ua:NodeId" />
|
|
2317
|
+
<opc:Field Name="AffectedType" TypeName="ua:NodeId" />
|
|
2318
|
+
</opc:StructuredType>
|
|
2319
|
+
|
|
2320
|
+
<opc:StructuredType Name="Range" BaseType="ua:ExtensionObject">
|
|
2321
|
+
<opc:Field Name="Low" TypeName="opc:Double" />
|
|
2322
|
+
<opc:Field Name="High" TypeName="opc:Double" />
|
|
2323
|
+
</opc:StructuredType>
|
|
2324
|
+
|
|
2325
|
+
<opc:StructuredType Name="EUInformation" BaseType="ua:ExtensionObject">
|
|
2326
|
+
<opc:Field Name="NamespaceUri" TypeName="opc:String" />
|
|
2327
|
+
<opc:Field Name="UnitId" TypeName="opc:Int32" />
|
|
2328
|
+
<opc:Field Name="DisplayName" TypeName="ua:LocalizedText" />
|
|
2329
|
+
<opc:Field Name="Description" TypeName="ua:LocalizedText" />
|
|
2330
|
+
</opc:StructuredType>
|
|
2331
|
+
|
|
2332
|
+
<opc:EnumeratedType Name="AxisScaleEnumeration" LengthInBits="32">
|
|
2333
|
+
<opc:EnumeratedValue Name="Linear" Value="0" />
|
|
2334
|
+
<opc:EnumeratedValue Name="Log" Value="1" />
|
|
2335
|
+
<opc:EnumeratedValue Name="Ln" Value="2" />
|
|
2336
|
+
</opc:EnumeratedType>
|
|
2337
|
+
|
|
2338
|
+
<opc:StructuredType Name="ComplexNumberType" BaseType="ua:ExtensionObject">
|
|
2339
|
+
<opc:Field Name="Real" TypeName="opc:Float" />
|
|
2340
|
+
<opc:Field Name="Imaginary" TypeName="opc:Float" />
|
|
2341
|
+
</opc:StructuredType>
|
|
2342
|
+
|
|
2343
|
+
<opc:StructuredType Name="DoubleComplexNumberType" BaseType="ua:ExtensionObject">
|
|
2344
|
+
<opc:Field Name="Real" TypeName="opc:Double" />
|
|
2345
|
+
<opc:Field Name="Imaginary" TypeName="opc:Double" />
|
|
2346
|
+
</opc:StructuredType>
|
|
2347
|
+
|
|
2348
|
+
<opc:StructuredType Name="AxisInformation" BaseType="ua:ExtensionObject">
|
|
2349
|
+
<opc:Field Name="EngineeringUnits" TypeName="tns:EUInformation" />
|
|
2350
|
+
<opc:Field Name="EURange" TypeName="tns:Range" />
|
|
2351
|
+
<opc:Field Name="Title" TypeName="ua:LocalizedText" />
|
|
2352
|
+
<opc:Field Name="AxisScaleType" TypeName="tns:AxisScaleEnumeration" />
|
|
2353
|
+
<opc:Field Name="NoOfAxisSteps" TypeName="opc:Int32" />
|
|
2354
|
+
<opc:Field Name="AxisSteps" TypeName="opc:Double" LengthField="NoOfAxisSteps" />
|
|
2355
|
+
</opc:StructuredType>
|
|
2356
|
+
|
|
2357
|
+
<opc:StructuredType Name="XVType" BaseType="ua:ExtensionObject">
|
|
2358
|
+
<opc:Field Name="X" TypeName="opc:Double" />
|
|
2359
|
+
<opc:Field Name="Value" TypeName="opc:Float" />
|
|
2360
|
+
</opc:StructuredType>
|
|
2361
|
+
|
|
2362
|
+
<opc:StructuredType Name="ProgramDiagnosticDataType" BaseType="ua:ExtensionObject">
|
|
2363
|
+
<opc:Field Name="CreateSessionId" TypeName="ua:NodeId" />
|
|
2364
|
+
<opc:Field Name="CreateClientName" TypeName="opc:String" />
|
|
2365
|
+
<opc:Field Name="InvocationCreationTime" TypeName="opc:DateTime" />
|
|
2366
|
+
<opc:Field Name="LastTransitionTime" TypeName="opc:DateTime" />
|
|
2367
|
+
<opc:Field Name="LastMethodCall" TypeName="opc:String" />
|
|
2368
|
+
<opc:Field Name="LastMethodSessionId" TypeName="ua:NodeId" />
|
|
2369
|
+
<opc:Field Name="NoOfLastMethodInputArguments" TypeName="opc:Int32" />
|
|
2370
|
+
<opc:Field Name="LastMethodInputArguments" TypeName="tns:Argument" LengthField="NoOfLastMethodInputArguments" />
|
|
2371
|
+
<opc:Field Name="NoOfLastMethodOutputArguments" TypeName="opc:Int32" />
|
|
2372
|
+
<opc:Field Name="LastMethodOutputArguments" TypeName="tns:Argument" LengthField="NoOfLastMethodOutputArguments" />
|
|
2373
|
+
<opc:Field Name="LastMethodCallTime" TypeName="opc:DateTime" />
|
|
2374
|
+
<opc:Field Name="LastMethodReturnStatus" TypeName="tns:StatusResult" />
|
|
2375
|
+
</opc:StructuredType>
|
|
2376
|
+
|
|
2377
|
+
<opc:StructuredType Name="Annotation" BaseType="ua:ExtensionObject">
|
|
2378
|
+
<opc:Field Name="Message" TypeName="opc:String" />
|
|
2379
|
+
<opc:Field Name="UserName" TypeName="opc:String" />
|
|
2380
|
+
<opc:Field Name="AnnotationTime" TypeName="opc:DateTime" />
|
|
2381
|
+
</opc:StructuredType>
|
|
2382
|
+
|
|
2383
|
+
<opc:EnumeratedType Name="ExceptionDeviationFormat" LengthInBits="32">
|
|
2384
|
+
<opc:EnumeratedValue Name="AbsoluteValue" Value="0" />
|
|
2385
|
+
<opc:EnumeratedValue Name="PercentOfValue" Value="1" />
|
|
2386
|
+
<opc:EnumeratedValue Name="PercentOfRange" Value="2" />
|
|
2387
|
+
<opc:EnumeratedValue Name="PercentOfEURange" Value="3" />
|
|
2388
|
+
<opc:EnumeratedValue Name="Unknown" Value="4" />
|
|
2389
|
+
</opc:EnumeratedType>
|
|
2390
|
+
|
|
2391
|
+
</opc:TypeDictionary>
|