@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,832 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<UANodeSet xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" LastModified="2015-08-18T00:23:00Z" xmlns="http://opcfoundation.org/UA/2011/03/UANodeSet.xsd">
|
|
3
|
+
<Models>
|
|
4
|
+
<Model ModelUri="http://opcfoundation.org/UA/" Version="1.02" PublicationDate="2015-08-17T17:23:51.7072359-07:00" />
|
|
5
|
+
</Models>
|
|
6
|
+
<Aliases>
|
|
7
|
+
<Alias Alias="Boolean">i=1</Alias>
|
|
8
|
+
<Alias Alias="SByte">i=2</Alias>
|
|
9
|
+
<Alias Alias="Byte">i=3</Alias>
|
|
10
|
+
<Alias Alias="Int16">i=4</Alias>
|
|
11
|
+
<Alias Alias="UInt16">i=5</Alias>
|
|
12
|
+
<Alias Alias="Int32">i=6</Alias>
|
|
13
|
+
<Alias Alias="UInt32">i=7</Alias>
|
|
14
|
+
<Alias Alias="Int64">i=8</Alias>
|
|
15
|
+
<Alias Alias="UInt64">i=9</Alias>
|
|
16
|
+
<Alias Alias="Float">i=10</Alias>
|
|
17
|
+
<Alias Alias="Double">i=11</Alias>
|
|
18
|
+
<Alias Alias="DateTime">i=13</Alias>
|
|
19
|
+
<Alias Alias="String">i=12</Alias>
|
|
20
|
+
<Alias Alias="ByteString">i=15</Alias>
|
|
21
|
+
<Alias Alias="Guid">i=14</Alias>
|
|
22
|
+
<Alias Alias="XmlElement">i=16</Alias>
|
|
23
|
+
<Alias Alias="NodeId">i=17</Alias>
|
|
24
|
+
<Alias Alias="ExpandedNodeId">i=18</Alias>
|
|
25
|
+
<Alias Alias="QualifiedName">i=20</Alias>
|
|
26
|
+
<Alias Alias="LocalizedText">i=21</Alias>
|
|
27
|
+
<Alias Alias="StatusCode">i=19</Alias>
|
|
28
|
+
<Alias Alias="Structure">i=22</Alias>
|
|
29
|
+
<Alias Alias="Number">i=26</Alias>
|
|
30
|
+
<Alias Alias="Integer">i=27</Alias>
|
|
31
|
+
<Alias Alias="UInteger">i=28</Alias>
|
|
32
|
+
<Alias Alias="HasComponent">i=47</Alias>
|
|
33
|
+
<Alias Alias="HasProperty">i=46</Alias>
|
|
34
|
+
<Alias Alias="Organizes">i=35</Alias>
|
|
35
|
+
<Alias Alias="HasEventSource">i=36</Alias>
|
|
36
|
+
<Alias Alias="HasNotifier">i=48</Alias>
|
|
37
|
+
<Alias Alias="HasSubtype">i=45</Alias>
|
|
38
|
+
<Alias Alias="HasTypeDefinition">i=40</Alias>
|
|
39
|
+
<Alias Alias="HasModellingRule">i=37</Alias>
|
|
40
|
+
<Alias Alias="HasEncoding">i=38</Alias>
|
|
41
|
+
<Alias Alias="HasDescription">i=39</Alias>
|
|
42
|
+
</Aliases>
|
|
43
|
+
<UAObjectType NodeId="i=2391" BrowseName="ProgramStateMachineType">
|
|
44
|
+
<DisplayName>ProgramStateMachineType</DisplayName>
|
|
45
|
+
<Description>A state machine for a program.</Description>
|
|
46
|
+
<References>
|
|
47
|
+
<Reference ReferenceType="HasComponent">i=3830</Reference>
|
|
48
|
+
<Reference ReferenceType="HasComponent">i=3835</Reference>
|
|
49
|
+
<Reference ReferenceType="HasProperty">i=2392</Reference>
|
|
50
|
+
<Reference ReferenceType="HasProperty">i=2393</Reference>
|
|
51
|
+
<Reference ReferenceType="HasProperty">i=2394</Reference>
|
|
52
|
+
<Reference ReferenceType="HasProperty">i=2395</Reference>
|
|
53
|
+
<Reference ReferenceType="HasProperty">i=2396</Reference>
|
|
54
|
+
<Reference ReferenceType="HasProperty">i=2397</Reference>
|
|
55
|
+
<Reference ReferenceType="HasProperty">i=2398</Reference>
|
|
56
|
+
<Reference ReferenceType="HasComponent">i=2399</Reference>
|
|
57
|
+
<Reference ReferenceType="HasComponent">i=3850</Reference>
|
|
58
|
+
<Reference ReferenceType="HasComponent">i=2400</Reference>
|
|
59
|
+
<Reference ReferenceType="HasComponent">i=2402</Reference>
|
|
60
|
+
<Reference ReferenceType="HasComponent">i=2404</Reference>
|
|
61
|
+
<Reference ReferenceType="HasComponent">i=2406</Reference>
|
|
62
|
+
<Reference ReferenceType="HasComponent">i=2408</Reference>
|
|
63
|
+
<Reference ReferenceType="HasComponent">i=2410</Reference>
|
|
64
|
+
<Reference ReferenceType="HasComponent">i=2412</Reference>
|
|
65
|
+
<Reference ReferenceType="HasComponent">i=2414</Reference>
|
|
66
|
+
<Reference ReferenceType="HasComponent">i=2416</Reference>
|
|
67
|
+
<Reference ReferenceType="HasComponent">i=2418</Reference>
|
|
68
|
+
<Reference ReferenceType="HasComponent">i=2420</Reference>
|
|
69
|
+
<Reference ReferenceType="HasComponent">i=2422</Reference>
|
|
70
|
+
<Reference ReferenceType="HasComponent">i=2424</Reference>
|
|
71
|
+
<Reference ReferenceType="HasComponent">i=2426</Reference>
|
|
72
|
+
<Reference ReferenceType="HasComponent">i=2427</Reference>
|
|
73
|
+
<Reference ReferenceType="HasComponent">i=2428</Reference>
|
|
74
|
+
<Reference ReferenceType="HasComponent">i=2429</Reference>
|
|
75
|
+
<Reference ReferenceType="HasComponent">i=2430</Reference>
|
|
76
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">i=2771</Reference>
|
|
77
|
+
</References>
|
|
78
|
+
</UAObjectType>
|
|
79
|
+
<UAVariable NodeId="i=3830" BrowseName="CurrentState" ParentNodeId="i=2391" DataType="LocalizedText">
|
|
80
|
+
<DisplayName>CurrentState</DisplayName>
|
|
81
|
+
<References>
|
|
82
|
+
<Reference ReferenceType="HasProperty">i=3831</Reference>
|
|
83
|
+
<Reference ReferenceType="HasProperty">i=3833</Reference>
|
|
84
|
+
<Reference ReferenceType="HasTypeDefinition">i=2760</Reference>
|
|
85
|
+
<Reference ReferenceType="HasModellingRule">i=78</Reference>
|
|
86
|
+
<Reference ReferenceType="HasComponent" IsForward="false">i=2391</Reference>
|
|
87
|
+
</References>
|
|
88
|
+
</UAVariable>
|
|
89
|
+
<UAVariable NodeId="i=3831" BrowseName="Id" ParentNodeId="i=3830" DataType="NodeId">
|
|
90
|
+
<DisplayName>Id</DisplayName>
|
|
91
|
+
<References>
|
|
92
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
93
|
+
<Reference ReferenceType="HasModellingRule">i=78</Reference>
|
|
94
|
+
<Reference ReferenceType="HasProperty" IsForward="false">i=3830</Reference>
|
|
95
|
+
</References>
|
|
96
|
+
</UAVariable>
|
|
97
|
+
<UAVariable NodeId="i=3833" BrowseName="Number" ParentNodeId="i=3830" DataType="UInt32">
|
|
98
|
+
<DisplayName>Number</DisplayName>
|
|
99
|
+
<References>
|
|
100
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
101
|
+
<Reference ReferenceType="HasModellingRule">i=78</Reference>
|
|
102
|
+
<Reference ReferenceType="HasProperty" IsForward="false">i=3830</Reference>
|
|
103
|
+
</References>
|
|
104
|
+
</UAVariable>
|
|
105
|
+
<UAVariable NodeId="i=3835" BrowseName="LastTransition" ParentNodeId="i=2391" DataType="LocalizedText">
|
|
106
|
+
<DisplayName>LastTransition</DisplayName>
|
|
107
|
+
<References>
|
|
108
|
+
<Reference ReferenceType="HasProperty">i=3836</Reference>
|
|
109
|
+
<Reference ReferenceType="HasProperty">i=3838</Reference>
|
|
110
|
+
<Reference ReferenceType="HasProperty">i=3839</Reference>
|
|
111
|
+
<Reference ReferenceType="HasTypeDefinition">i=2767</Reference>
|
|
112
|
+
<Reference ReferenceType="HasModellingRule">i=78</Reference>
|
|
113
|
+
<Reference ReferenceType="HasComponent" IsForward="false">i=2391</Reference>
|
|
114
|
+
</References>
|
|
115
|
+
</UAVariable>
|
|
116
|
+
<UAVariable NodeId="i=3836" BrowseName="Id" ParentNodeId="i=3835" DataType="NodeId">
|
|
117
|
+
<DisplayName>Id</DisplayName>
|
|
118
|
+
<References>
|
|
119
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
120
|
+
<Reference ReferenceType="HasModellingRule">i=78</Reference>
|
|
121
|
+
<Reference ReferenceType="HasProperty" IsForward="false">i=3835</Reference>
|
|
122
|
+
</References>
|
|
123
|
+
</UAVariable>
|
|
124
|
+
<UAVariable NodeId="i=3838" BrowseName="Number" ParentNodeId="i=3835" DataType="UInt32">
|
|
125
|
+
<DisplayName>Number</DisplayName>
|
|
126
|
+
<References>
|
|
127
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
128
|
+
<Reference ReferenceType="HasModellingRule">i=78</Reference>
|
|
129
|
+
<Reference ReferenceType="HasProperty" IsForward="false">i=3835</Reference>
|
|
130
|
+
</References>
|
|
131
|
+
</UAVariable>
|
|
132
|
+
<UAVariable NodeId="i=3839" BrowseName="TransitionTime" ParentNodeId="i=3835" DataType="i=294">
|
|
133
|
+
<DisplayName>TransitionTime</DisplayName>
|
|
134
|
+
<References>
|
|
135
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
136
|
+
<Reference ReferenceType="HasModellingRule">i=78</Reference>
|
|
137
|
+
<Reference ReferenceType="HasProperty" IsForward="false">i=3835</Reference>
|
|
138
|
+
</References>
|
|
139
|
+
</UAVariable>
|
|
140
|
+
<UAVariable NodeId="i=2392" BrowseName="Creatable" ParentNodeId="i=2391" DataType="Boolean">
|
|
141
|
+
<DisplayName>Creatable</DisplayName>
|
|
142
|
+
<References>
|
|
143
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
144
|
+
<Reference ReferenceType="HasProperty" IsForward="false">i=2391</Reference>
|
|
145
|
+
</References>
|
|
146
|
+
</UAVariable>
|
|
147
|
+
<UAVariable NodeId="i=2393" BrowseName="Deletable" ParentNodeId="i=2391" DataType="Boolean">
|
|
148
|
+
<DisplayName>Deletable</DisplayName>
|
|
149
|
+
<References>
|
|
150
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
151
|
+
<Reference ReferenceType="HasModellingRule">i=78</Reference>
|
|
152
|
+
<Reference ReferenceType="HasProperty" IsForward="false">i=2391</Reference>
|
|
153
|
+
</References>
|
|
154
|
+
</UAVariable>
|
|
155
|
+
<UAVariable NodeId="i=2394" BrowseName="AutoDelete" ParentNodeId="i=2391" DataType="Boolean">
|
|
156
|
+
<DisplayName>AutoDelete</DisplayName>
|
|
157
|
+
<References>
|
|
158
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
159
|
+
<Reference ReferenceType="HasModellingRule">i=79</Reference>
|
|
160
|
+
<Reference ReferenceType="HasProperty" IsForward="false">i=2391</Reference>
|
|
161
|
+
</References>
|
|
162
|
+
</UAVariable>
|
|
163
|
+
<UAVariable NodeId="i=2395" BrowseName="RecycleCount" ParentNodeId="i=2391" DataType="Int32">
|
|
164
|
+
<DisplayName>RecycleCount</DisplayName>
|
|
165
|
+
<References>
|
|
166
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
167
|
+
<Reference ReferenceType="HasModellingRule">i=78</Reference>
|
|
168
|
+
<Reference ReferenceType="HasProperty" IsForward="false">i=2391</Reference>
|
|
169
|
+
</References>
|
|
170
|
+
</UAVariable>
|
|
171
|
+
<UAVariable NodeId="i=2396" BrowseName="InstanceCount" ParentNodeId="i=2391" DataType="UInt32">
|
|
172
|
+
<DisplayName>InstanceCount</DisplayName>
|
|
173
|
+
<References>
|
|
174
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
175
|
+
<Reference ReferenceType="HasProperty" IsForward="false">i=2391</Reference>
|
|
176
|
+
</References>
|
|
177
|
+
</UAVariable>
|
|
178
|
+
<UAVariable NodeId="i=2397" BrowseName="MaxInstanceCount" ParentNodeId="i=2391" DataType="UInt32">
|
|
179
|
+
<DisplayName>MaxInstanceCount</DisplayName>
|
|
180
|
+
<References>
|
|
181
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
182
|
+
<Reference ReferenceType="HasProperty" IsForward="false">i=2391</Reference>
|
|
183
|
+
</References>
|
|
184
|
+
</UAVariable>
|
|
185
|
+
<UAVariable NodeId="i=2398" BrowseName="MaxRecycleCount" ParentNodeId="i=2391" DataType="UInt32">
|
|
186
|
+
<DisplayName>MaxRecycleCount</DisplayName>
|
|
187
|
+
<References>
|
|
188
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
189
|
+
<Reference ReferenceType="HasProperty" IsForward="false">i=2391</Reference>
|
|
190
|
+
</References>
|
|
191
|
+
</UAVariable>
|
|
192
|
+
<UAVariable NodeId="i=2399" BrowseName="ProgramDiagnostics" ParentNodeId="i=2391" DataType="i=894">
|
|
193
|
+
<DisplayName>ProgramDiagnostics</DisplayName>
|
|
194
|
+
<References>
|
|
195
|
+
<Reference ReferenceType="HasProperty">i=3840</Reference>
|
|
196
|
+
<Reference ReferenceType="HasProperty">i=3841</Reference>
|
|
197
|
+
<Reference ReferenceType="HasProperty">i=3842</Reference>
|
|
198
|
+
<Reference ReferenceType="HasProperty">i=3843</Reference>
|
|
199
|
+
<Reference ReferenceType="HasProperty">i=3844</Reference>
|
|
200
|
+
<Reference ReferenceType="HasProperty">i=3845</Reference>
|
|
201
|
+
<Reference ReferenceType="HasProperty">i=3846</Reference>
|
|
202
|
+
<Reference ReferenceType="HasProperty">i=3847</Reference>
|
|
203
|
+
<Reference ReferenceType="HasProperty">i=3848</Reference>
|
|
204
|
+
<Reference ReferenceType="HasProperty">i=3849</Reference>
|
|
205
|
+
<Reference ReferenceType="HasTypeDefinition">i=2380</Reference>
|
|
206
|
+
<Reference ReferenceType="HasModellingRule">i=80</Reference>
|
|
207
|
+
<Reference ReferenceType="HasComponent" IsForward="false">i=2391</Reference>
|
|
208
|
+
</References>
|
|
209
|
+
</UAVariable>
|
|
210
|
+
<UAVariable NodeId="i=3840" BrowseName="CreateSessionId" ParentNodeId="i=2399" DataType="NodeId">
|
|
211
|
+
<DisplayName>CreateSessionId</DisplayName>
|
|
212
|
+
<References>
|
|
213
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
214
|
+
<Reference ReferenceType="HasModellingRule">i=78</Reference>
|
|
215
|
+
<Reference ReferenceType="HasProperty" IsForward="false">i=2399</Reference>
|
|
216
|
+
</References>
|
|
217
|
+
</UAVariable>
|
|
218
|
+
<UAVariable NodeId="i=3841" BrowseName="CreateClientName" ParentNodeId="i=2399" DataType="String">
|
|
219
|
+
<DisplayName>CreateClientName</DisplayName>
|
|
220
|
+
<References>
|
|
221
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
222
|
+
<Reference ReferenceType="HasModellingRule">i=78</Reference>
|
|
223
|
+
<Reference ReferenceType="HasProperty" IsForward="false">i=2399</Reference>
|
|
224
|
+
</References>
|
|
225
|
+
</UAVariable>
|
|
226
|
+
<UAVariable NodeId="i=3842" BrowseName="InvocationCreationTime" ParentNodeId="i=2399" DataType="i=294">
|
|
227
|
+
<DisplayName>InvocationCreationTime</DisplayName>
|
|
228
|
+
<References>
|
|
229
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
230
|
+
<Reference ReferenceType="HasModellingRule">i=78</Reference>
|
|
231
|
+
<Reference ReferenceType="HasProperty" IsForward="false">i=2399</Reference>
|
|
232
|
+
</References>
|
|
233
|
+
</UAVariable>
|
|
234
|
+
<UAVariable NodeId="i=3843" BrowseName="LastTransitionTime" ParentNodeId="i=2399" DataType="i=294">
|
|
235
|
+
<DisplayName>LastTransitionTime</DisplayName>
|
|
236
|
+
<References>
|
|
237
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
238
|
+
<Reference ReferenceType="HasModellingRule">i=78</Reference>
|
|
239
|
+
<Reference ReferenceType="HasProperty" IsForward="false">i=2399</Reference>
|
|
240
|
+
</References>
|
|
241
|
+
</UAVariable>
|
|
242
|
+
<UAVariable NodeId="i=3844" BrowseName="LastMethodCall" ParentNodeId="i=2399" DataType="String">
|
|
243
|
+
<DisplayName>LastMethodCall</DisplayName>
|
|
244
|
+
<References>
|
|
245
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
246
|
+
<Reference ReferenceType="HasModellingRule">i=78</Reference>
|
|
247
|
+
<Reference ReferenceType="HasProperty" IsForward="false">i=2399</Reference>
|
|
248
|
+
</References>
|
|
249
|
+
</UAVariable>
|
|
250
|
+
<UAVariable NodeId="i=3845" BrowseName="LastMethodSessionId" ParentNodeId="i=2399" DataType="NodeId">
|
|
251
|
+
<DisplayName>LastMethodSessionId</DisplayName>
|
|
252
|
+
<References>
|
|
253
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
254
|
+
<Reference ReferenceType="HasModellingRule">i=78</Reference>
|
|
255
|
+
<Reference ReferenceType="HasProperty" IsForward="false">i=2399</Reference>
|
|
256
|
+
</References>
|
|
257
|
+
</UAVariable>
|
|
258
|
+
<UAVariable NodeId="i=3846" BrowseName="LastMethodInputArguments" ParentNodeId="i=2399" DataType="i=296" ValueRank="1">
|
|
259
|
+
<DisplayName>LastMethodInputArguments</DisplayName>
|
|
260
|
+
<References>
|
|
261
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
262
|
+
<Reference ReferenceType="HasModellingRule">i=78</Reference>
|
|
263
|
+
<Reference ReferenceType="HasProperty" IsForward="false">i=2399</Reference>
|
|
264
|
+
</References>
|
|
265
|
+
</UAVariable>
|
|
266
|
+
<UAVariable NodeId="i=3847" BrowseName="LastMethodOutputArguments" ParentNodeId="i=2399" DataType="i=296" ValueRank="1">
|
|
267
|
+
<DisplayName>LastMethodOutputArguments</DisplayName>
|
|
268
|
+
<References>
|
|
269
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
270
|
+
<Reference ReferenceType="HasModellingRule">i=78</Reference>
|
|
271
|
+
<Reference ReferenceType="HasProperty" IsForward="false">i=2399</Reference>
|
|
272
|
+
</References>
|
|
273
|
+
</UAVariable>
|
|
274
|
+
<UAVariable NodeId="i=3848" BrowseName="LastMethodCallTime" ParentNodeId="i=2399" DataType="i=294">
|
|
275
|
+
<DisplayName>LastMethodCallTime</DisplayName>
|
|
276
|
+
<References>
|
|
277
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
278
|
+
<Reference ReferenceType="HasModellingRule">i=78</Reference>
|
|
279
|
+
<Reference ReferenceType="HasProperty" IsForward="false">i=2399</Reference>
|
|
280
|
+
</References>
|
|
281
|
+
</UAVariable>
|
|
282
|
+
<UAVariable NodeId="i=3849" BrowseName="LastMethodReturnStatus" ParentNodeId="i=2399" DataType="i=299">
|
|
283
|
+
<DisplayName>LastMethodReturnStatus</DisplayName>
|
|
284
|
+
<References>
|
|
285
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
286
|
+
<Reference ReferenceType="HasModellingRule">i=78</Reference>
|
|
287
|
+
<Reference ReferenceType="HasProperty" IsForward="false">i=2399</Reference>
|
|
288
|
+
</References>
|
|
289
|
+
</UAVariable>
|
|
290
|
+
<UAObject NodeId="i=3850" BrowseName="FinalResultData" ParentNodeId="i=2391">
|
|
291
|
+
<DisplayName>FinalResultData</DisplayName>
|
|
292
|
+
<References>
|
|
293
|
+
<Reference ReferenceType="HasTypeDefinition">i=58</Reference>
|
|
294
|
+
<Reference ReferenceType="HasModellingRule">i=80</Reference>
|
|
295
|
+
<Reference ReferenceType="HasComponent" IsForward="false">i=2391</Reference>
|
|
296
|
+
</References>
|
|
297
|
+
</UAObject>
|
|
298
|
+
<UAObject NodeId="i=2400" BrowseName="Ready" ParentNodeId="i=2391">
|
|
299
|
+
<DisplayName>Ready</DisplayName>
|
|
300
|
+
<Description>The Program is properly initialized and may be started.</Description>
|
|
301
|
+
<References>
|
|
302
|
+
<Reference ReferenceType="HasProperty">i=2401</Reference>
|
|
303
|
+
<Reference ReferenceType="i=52" IsForward="false">i=2408</Reference>
|
|
304
|
+
<Reference ReferenceType="i=51" IsForward="false">i=2410</Reference>
|
|
305
|
+
<Reference ReferenceType="i=52" IsForward="false">i=2414</Reference>
|
|
306
|
+
<Reference ReferenceType="i=52" IsForward="false">i=2422</Reference>
|
|
307
|
+
<Reference ReferenceType="i=51" IsForward="false">i=2424</Reference>
|
|
308
|
+
<Reference ReferenceType="HasTypeDefinition">i=2307</Reference>
|
|
309
|
+
<Reference ReferenceType="HasComponent" IsForward="false">i=2391</Reference>
|
|
310
|
+
</References>
|
|
311
|
+
</UAObject>
|
|
312
|
+
<UAVariable NodeId="i=2401" BrowseName="StateNumber" ParentNodeId="i=2400" DataType="UInt32">
|
|
313
|
+
<DisplayName>StateNumber</DisplayName>
|
|
314
|
+
<References>
|
|
315
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
316
|
+
<Reference ReferenceType="HasModellingRule">i=78</Reference>
|
|
317
|
+
<Reference ReferenceType="HasProperty" IsForward="false">i=2400</Reference>
|
|
318
|
+
</References>
|
|
319
|
+
<Value>
|
|
320
|
+
<UInt32 xmlns="http://opcfoundation.org/UA/2008/02/Types.xsd">1</UInt32>
|
|
321
|
+
</Value>
|
|
322
|
+
</UAVariable>
|
|
323
|
+
<UAObject NodeId="i=2402" BrowseName="Running" ParentNodeId="i=2391">
|
|
324
|
+
<DisplayName>Running</DisplayName>
|
|
325
|
+
<Description>The Program is executing making progress towards completion.</Description>
|
|
326
|
+
<References>
|
|
327
|
+
<Reference ReferenceType="HasProperty">i=2403</Reference>
|
|
328
|
+
<Reference ReferenceType="i=52" IsForward="false">i=2410</Reference>
|
|
329
|
+
<Reference ReferenceType="i=51" IsForward="false">i=2412</Reference>
|
|
330
|
+
<Reference ReferenceType="i=51" IsForward="false">i=2414</Reference>
|
|
331
|
+
<Reference ReferenceType="i=51" IsForward="false">i=2416</Reference>
|
|
332
|
+
<Reference ReferenceType="i=52" IsForward="false">i=2418</Reference>
|
|
333
|
+
<Reference ReferenceType="HasTypeDefinition">i=2307</Reference>
|
|
334
|
+
<Reference ReferenceType="HasComponent" IsForward="false">i=2391</Reference>
|
|
335
|
+
</References>
|
|
336
|
+
</UAObject>
|
|
337
|
+
<UAVariable NodeId="i=2403" BrowseName="StateNumber" ParentNodeId="i=2402" DataType="UInt32">
|
|
338
|
+
<DisplayName>StateNumber</DisplayName>
|
|
339
|
+
<References>
|
|
340
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
341
|
+
<Reference ReferenceType="HasModellingRule">i=78</Reference>
|
|
342
|
+
<Reference ReferenceType="HasProperty" IsForward="false">i=2402</Reference>
|
|
343
|
+
</References>
|
|
344
|
+
<Value>
|
|
345
|
+
<UInt32 xmlns="http://opcfoundation.org/UA/2008/02/Types.xsd">2</UInt32>
|
|
346
|
+
</Value>
|
|
347
|
+
</UAVariable>
|
|
348
|
+
<UAObject NodeId="i=2404" BrowseName="Suspended" ParentNodeId="i=2391">
|
|
349
|
+
<DisplayName>Suspended</DisplayName>
|
|
350
|
+
<Description>The Program has been stopped prior to reaching a terminal state but may be resumed.</Description>
|
|
351
|
+
<References>
|
|
352
|
+
<Reference ReferenceType="HasProperty">i=2405</Reference>
|
|
353
|
+
<Reference ReferenceType="i=52" IsForward="false">i=2416</Reference>
|
|
354
|
+
<Reference ReferenceType="i=51" IsForward="false">i=2418</Reference>
|
|
355
|
+
<Reference ReferenceType="i=51" IsForward="false">i=2420</Reference>
|
|
356
|
+
<Reference ReferenceType="i=51" IsForward="false">i=2422</Reference>
|
|
357
|
+
<Reference ReferenceType="HasTypeDefinition">i=2307</Reference>
|
|
358
|
+
<Reference ReferenceType="HasComponent" IsForward="false">i=2391</Reference>
|
|
359
|
+
</References>
|
|
360
|
+
</UAObject>
|
|
361
|
+
<UAVariable NodeId="i=2405" BrowseName="StateNumber" ParentNodeId="i=2404" DataType="UInt32">
|
|
362
|
+
<DisplayName>StateNumber</DisplayName>
|
|
363
|
+
<References>
|
|
364
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
365
|
+
<Reference ReferenceType="HasModellingRule">i=78</Reference>
|
|
366
|
+
<Reference ReferenceType="HasProperty" IsForward="false">i=2404</Reference>
|
|
367
|
+
</References>
|
|
368
|
+
<Value>
|
|
369
|
+
<UInt32 xmlns="http://opcfoundation.org/UA/2008/02/Types.xsd">3</UInt32>
|
|
370
|
+
</Value>
|
|
371
|
+
</UAVariable>
|
|
372
|
+
<UAObject NodeId="i=2406" BrowseName="Halted" ParentNodeId="i=2391">
|
|
373
|
+
<DisplayName>Halted</DisplayName>
|
|
374
|
+
<Description>The Program is in a terminal or failed state, and it cannot be started or resumed without being reset.</Description>
|
|
375
|
+
<References>
|
|
376
|
+
<Reference ReferenceType="HasProperty">i=2407</Reference>
|
|
377
|
+
<Reference ReferenceType="i=51" IsForward="false">i=2408</Reference>
|
|
378
|
+
<Reference ReferenceType="i=52" IsForward="false">i=2412</Reference>
|
|
379
|
+
<Reference ReferenceType="i=52" IsForward="false">i=2420</Reference>
|
|
380
|
+
<Reference ReferenceType="i=52" IsForward="false">i=2424</Reference>
|
|
381
|
+
<Reference ReferenceType="HasTypeDefinition">i=2307</Reference>
|
|
382
|
+
<Reference ReferenceType="HasComponent" IsForward="false">i=2391</Reference>
|
|
383
|
+
</References>
|
|
384
|
+
</UAObject>
|
|
385
|
+
<UAVariable NodeId="i=2407" BrowseName="StateNumber" ParentNodeId="i=2406" DataType="UInt32">
|
|
386
|
+
<DisplayName>StateNumber</DisplayName>
|
|
387
|
+
<References>
|
|
388
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
389
|
+
<Reference ReferenceType="HasModellingRule">i=78</Reference>
|
|
390
|
+
<Reference ReferenceType="HasProperty" IsForward="false">i=2406</Reference>
|
|
391
|
+
</References>
|
|
392
|
+
<Value>
|
|
393
|
+
<UInt32 xmlns="http://opcfoundation.org/UA/2008/02/Types.xsd">4</UInt32>
|
|
394
|
+
</Value>
|
|
395
|
+
</UAVariable>
|
|
396
|
+
<UAObject NodeId="i=2408" BrowseName="HaltedToReady" ParentNodeId="i=2391">
|
|
397
|
+
<DisplayName>HaltedToReady</DisplayName>
|
|
398
|
+
<References>
|
|
399
|
+
<Reference ReferenceType="HasProperty">i=2409</Reference>
|
|
400
|
+
<Reference ReferenceType="i=51">i=2406</Reference>
|
|
401
|
+
<Reference ReferenceType="i=52">i=2400</Reference>
|
|
402
|
+
<Reference ReferenceType="i=53">i=2430</Reference>
|
|
403
|
+
<Reference ReferenceType="i=54">i=2378</Reference>
|
|
404
|
+
<Reference ReferenceType="HasTypeDefinition">i=2310</Reference>
|
|
405
|
+
<Reference ReferenceType="HasComponent" IsForward="false">i=2391</Reference>
|
|
406
|
+
</References>
|
|
407
|
+
</UAObject>
|
|
408
|
+
<UAVariable NodeId="i=2409" BrowseName="TransitionNumber" ParentNodeId="i=2408" DataType="UInt32">
|
|
409
|
+
<DisplayName>TransitionNumber</DisplayName>
|
|
410
|
+
<References>
|
|
411
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
412
|
+
<Reference ReferenceType="HasModellingRule">i=78</Reference>
|
|
413
|
+
<Reference ReferenceType="HasProperty" IsForward="false">i=2408</Reference>
|
|
414
|
+
</References>
|
|
415
|
+
<Value>
|
|
416
|
+
<UInt32 xmlns="http://opcfoundation.org/UA/2008/02/Types.xsd">1</UInt32>
|
|
417
|
+
</Value>
|
|
418
|
+
</UAVariable>
|
|
419
|
+
<UAObject NodeId="i=2410" BrowseName="ReadyToRunning" ParentNodeId="i=2391">
|
|
420
|
+
<DisplayName>ReadyToRunning</DisplayName>
|
|
421
|
+
<References>
|
|
422
|
+
<Reference ReferenceType="HasProperty">i=2411</Reference>
|
|
423
|
+
<Reference ReferenceType="i=51">i=2400</Reference>
|
|
424
|
+
<Reference ReferenceType="i=52">i=2402</Reference>
|
|
425
|
+
<Reference ReferenceType="i=53">i=2426</Reference>
|
|
426
|
+
<Reference ReferenceType="i=54">i=2378</Reference>
|
|
427
|
+
<Reference ReferenceType="HasTypeDefinition">i=2310</Reference>
|
|
428
|
+
<Reference ReferenceType="HasComponent" IsForward="false">i=2391</Reference>
|
|
429
|
+
</References>
|
|
430
|
+
</UAObject>
|
|
431
|
+
<UAVariable NodeId="i=2411" BrowseName="TransitionNumber" ParentNodeId="i=2410" DataType="UInt32">
|
|
432
|
+
<DisplayName>TransitionNumber</DisplayName>
|
|
433
|
+
<References>
|
|
434
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
435
|
+
<Reference ReferenceType="HasModellingRule">i=78</Reference>
|
|
436
|
+
<Reference ReferenceType="HasProperty" IsForward="false">i=2410</Reference>
|
|
437
|
+
</References>
|
|
438
|
+
<Value>
|
|
439
|
+
<UInt32 xmlns="http://opcfoundation.org/UA/2008/02/Types.xsd">2</UInt32>
|
|
440
|
+
</Value>
|
|
441
|
+
</UAVariable>
|
|
442
|
+
<UAObject NodeId="i=2412" BrowseName="RunningToHalted" ParentNodeId="i=2391">
|
|
443
|
+
<DisplayName>RunningToHalted</DisplayName>
|
|
444
|
+
<References>
|
|
445
|
+
<Reference ReferenceType="HasProperty">i=2413</Reference>
|
|
446
|
+
<Reference ReferenceType="i=51">i=2402</Reference>
|
|
447
|
+
<Reference ReferenceType="i=52">i=2406</Reference>
|
|
448
|
+
<Reference ReferenceType="i=53">i=2429</Reference>
|
|
449
|
+
<Reference ReferenceType="i=54">i=2378</Reference>
|
|
450
|
+
<Reference ReferenceType="HasTypeDefinition">i=2310</Reference>
|
|
451
|
+
<Reference ReferenceType="HasComponent" IsForward="false">i=2391</Reference>
|
|
452
|
+
</References>
|
|
453
|
+
</UAObject>
|
|
454
|
+
<UAVariable NodeId="i=2413" BrowseName="TransitionNumber" ParentNodeId="i=2412" DataType="UInt32">
|
|
455
|
+
<DisplayName>TransitionNumber</DisplayName>
|
|
456
|
+
<References>
|
|
457
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
458
|
+
<Reference ReferenceType="HasModellingRule">i=78</Reference>
|
|
459
|
+
<Reference ReferenceType="HasProperty" IsForward="false">i=2412</Reference>
|
|
460
|
+
</References>
|
|
461
|
+
<Value>
|
|
462
|
+
<UInt32 xmlns="http://opcfoundation.org/UA/2008/02/Types.xsd">3</UInt32>
|
|
463
|
+
</Value>
|
|
464
|
+
</UAVariable>
|
|
465
|
+
<UAObject NodeId="i=2414" BrowseName="RunningToReady" ParentNodeId="i=2391">
|
|
466
|
+
<DisplayName>RunningToReady</DisplayName>
|
|
467
|
+
<References>
|
|
468
|
+
<Reference ReferenceType="HasProperty">i=2415</Reference>
|
|
469
|
+
<Reference ReferenceType="i=51">i=2402</Reference>
|
|
470
|
+
<Reference ReferenceType="i=52">i=2400</Reference>
|
|
471
|
+
<Reference ReferenceType="i=54">i=2378</Reference>
|
|
472
|
+
<Reference ReferenceType="HasTypeDefinition">i=2310</Reference>
|
|
473
|
+
<Reference ReferenceType="HasComponent" IsForward="false">i=2391</Reference>
|
|
474
|
+
</References>
|
|
475
|
+
</UAObject>
|
|
476
|
+
<UAVariable NodeId="i=2415" BrowseName="TransitionNumber" ParentNodeId="i=2414" DataType="UInt32">
|
|
477
|
+
<DisplayName>TransitionNumber</DisplayName>
|
|
478
|
+
<References>
|
|
479
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
480
|
+
<Reference ReferenceType="HasModellingRule">i=78</Reference>
|
|
481
|
+
<Reference ReferenceType="HasProperty" IsForward="false">i=2414</Reference>
|
|
482
|
+
</References>
|
|
483
|
+
<Value>
|
|
484
|
+
<UInt32 xmlns="http://opcfoundation.org/UA/2008/02/Types.xsd">4</UInt32>
|
|
485
|
+
</Value>
|
|
486
|
+
</UAVariable>
|
|
487
|
+
<UAObject NodeId="i=2416" BrowseName="RunningToSuspended" ParentNodeId="i=2391">
|
|
488
|
+
<DisplayName>RunningToSuspended</DisplayName>
|
|
489
|
+
<References>
|
|
490
|
+
<Reference ReferenceType="HasProperty">i=2417</Reference>
|
|
491
|
+
<Reference ReferenceType="i=51">i=2402</Reference>
|
|
492
|
+
<Reference ReferenceType="i=52">i=2404</Reference>
|
|
493
|
+
<Reference ReferenceType="i=53">i=2427</Reference>
|
|
494
|
+
<Reference ReferenceType="i=54">i=2378</Reference>
|
|
495
|
+
<Reference ReferenceType="HasTypeDefinition">i=2310</Reference>
|
|
496
|
+
<Reference ReferenceType="HasComponent" IsForward="false">i=2391</Reference>
|
|
497
|
+
</References>
|
|
498
|
+
</UAObject>
|
|
499
|
+
<UAVariable NodeId="i=2417" BrowseName="TransitionNumber" ParentNodeId="i=2416" DataType="UInt32">
|
|
500
|
+
<DisplayName>TransitionNumber</DisplayName>
|
|
501
|
+
<References>
|
|
502
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
503
|
+
<Reference ReferenceType="HasModellingRule">i=78</Reference>
|
|
504
|
+
<Reference ReferenceType="HasProperty" IsForward="false">i=2416</Reference>
|
|
505
|
+
</References>
|
|
506
|
+
<Value>
|
|
507
|
+
<UInt32 xmlns="http://opcfoundation.org/UA/2008/02/Types.xsd">5</UInt32>
|
|
508
|
+
</Value>
|
|
509
|
+
</UAVariable>
|
|
510
|
+
<UAObject NodeId="i=2418" BrowseName="SuspendedToRunning" ParentNodeId="i=2391">
|
|
511
|
+
<DisplayName>SuspendedToRunning</DisplayName>
|
|
512
|
+
<References>
|
|
513
|
+
<Reference ReferenceType="HasProperty">i=2419</Reference>
|
|
514
|
+
<Reference ReferenceType="i=51">i=2404</Reference>
|
|
515
|
+
<Reference ReferenceType="i=52">i=2402</Reference>
|
|
516
|
+
<Reference ReferenceType="i=53">i=2428</Reference>
|
|
517
|
+
<Reference ReferenceType="i=54">i=2378</Reference>
|
|
518
|
+
<Reference ReferenceType="HasTypeDefinition">i=2310</Reference>
|
|
519
|
+
<Reference ReferenceType="HasComponent" IsForward="false">i=2391</Reference>
|
|
520
|
+
</References>
|
|
521
|
+
</UAObject>
|
|
522
|
+
<UAVariable NodeId="i=2419" BrowseName="TransitionNumber" ParentNodeId="i=2418" DataType="UInt32">
|
|
523
|
+
<DisplayName>TransitionNumber</DisplayName>
|
|
524
|
+
<References>
|
|
525
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
526
|
+
<Reference ReferenceType="HasModellingRule">i=78</Reference>
|
|
527
|
+
<Reference ReferenceType="HasProperty" IsForward="false">i=2418</Reference>
|
|
528
|
+
</References>
|
|
529
|
+
<Value>
|
|
530
|
+
<UInt32 xmlns="http://opcfoundation.org/UA/2008/02/Types.xsd">6</UInt32>
|
|
531
|
+
</Value>
|
|
532
|
+
</UAVariable>
|
|
533
|
+
<UAObject NodeId="i=2420" BrowseName="SuspendedToHalted" ParentNodeId="i=2391">
|
|
534
|
+
<DisplayName>SuspendedToHalted</DisplayName>
|
|
535
|
+
<References>
|
|
536
|
+
<Reference ReferenceType="HasProperty">i=2421</Reference>
|
|
537
|
+
<Reference ReferenceType="i=51">i=2404</Reference>
|
|
538
|
+
<Reference ReferenceType="i=52">i=2406</Reference>
|
|
539
|
+
<Reference ReferenceType="i=53">i=2429</Reference>
|
|
540
|
+
<Reference ReferenceType="i=54">i=2378</Reference>
|
|
541
|
+
<Reference ReferenceType="HasTypeDefinition">i=2310</Reference>
|
|
542
|
+
<Reference ReferenceType="HasComponent" IsForward="false">i=2391</Reference>
|
|
543
|
+
</References>
|
|
544
|
+
</UAObject>
|
|
545
|
+
<UAVariable NodeId="i=2421" BrowseName="TransitionNumber" ParentNodeId="i=2420" DataType="UInt32">
|
|
546
|
+
<DisplayName>TransitionNumber</DisplayName>
|
|
547
|
+
<References>
|
|
548
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
549
|
+
<Reference ReferenceType="HasModellingRule">i=78</Reference>
|
|
550
|
+
<Reference ReferenceType="HasProperty" IsForward="false">i=2420</Reference>
|
|
551
|
+
</References>
|
|
552
|
+
<Value>
|
|
553
|
+
<UInt32 xmlns="http://opcfoundation.org/UA/2008/02/Types.xsd">7</UInt32>
|
|
554
|
+
</Value>
|
|
555
|
+
</UAVariable>
|
|
556
|
+
<UAObject NodeId="i=2422" BrowseName="SuspendedToReady" ParentNodeId="i=2391">
|
|
557
|
+
<DisplayName>SuspendedToReady</DisplayName>
|
|
558
|
+
<References>
|
|
559
|
+
<Reference ReferenceType="HasProperty">i=2423</Reference>
|
|
560
|
+
<Reference ReferenceType="i=51">i=2404</Reference>
|
|
561
|
+
<Reference ReferenceType="i=52">i=2400</Reference>
|
|
562
|
+
<Reference ReferenceType="i=54">i=2378</Reference>
|
|
563
|
+
<Reference ReferenceType="HasTypeDefinition">i=2310</Reference>
|
|
564
|
+
<Reference ReferenceType="HasComponent" IsForward="false">i=2391</Reference>
|
|
565
|
+
</References>
|
|
566
|
+
</UAObject>
|
|
567
|
+
<UAVariable NodeId="i=2423" BrowseName="TransitionNumber" ParentNodeId="i=2422" DataType="UInt32">
|
|
568
|
+
<DisplayName>TransitionNumber</DisplayName>
|
|
569
|
+
<References>
|
|
570
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
571
|
+
<Reference ReferenceType="HasModellingRule">i=78</Reference>
|
|
572
|
+
<Reference ReferenceType="HasProperty" IsForward="false">i=2422</Reference>
|
|
573
|
+
</References>
|
|
574
|
+
<Value>
|
|
575
|
+
<UInt32 xmlns="http://opcfoundation.org/UA/2008/02/Types.xsd">8</UInt32>
|
|
576
|
+
</Value>
|
|
577
|
+
</UAVariable>
|
|
578
|
+
<UAObject NodeId="i=2424" BrowseName="ReadyToHalted" ParentNodeId="i=2391">
|
|
579
|
+
<DisplayName>ReadyToHalted</DisplayName>
|
|
580
|
+
<References>
|
|
581
|
+
<Reference ReferenceType="HasProperty">i=2425</Reference>
|
|
582
|
+
<Reference ReferenceType="i=51">i=2400</Reference>
|
|
583
|
+
<Reference ReferenceType="i=52">i=2406</Reference>
|
|
584
|
+
<Reference ReferenceType="i=53">i=2429</Reference>
|
|
585
|
+
<Reference ReferenceType="i=54">i=2378</Reference>
|
|
586
|
+
<Reference ReferenceType="HasTypeDefinition">i=2310</Reference>
|
|
587
|
+
<Reference ReferenceType="HasComponent" IsForward="false">i=2391</Reference>
|
|
588
|
+
</References>
|
|
589
|
+
</UAObject>
|
|
590
|
+
<UAVariable NodeId="i=2425" BrowseName="TransitionNumber" ParentNodeId="i=2424" DataType="UInt32">
|
|
591
|
+
<DisplayName>TransitionNumber</DisplayName>
|
|
592
|
+
<References>
|
|
593
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
594
|
+
<Reference ReferenceType="HasModellingRule">i=78</Reference>
|
|
595
|
+
<Reference ReferenceType="HasProperty" IsForward="false">i=2424</Reference>
|
|
596
|
+
</References>
|
|
597
|
+
<Value>
|
|
598
|
+
<UInt32 xmlns="http://opcfoundation.org/UA/2008/02/Types.xsd">9</UInt32>
|
|
599
|
+
</Value>
|
|
600
|
+
</UAVariable>
|
|
601
|
+
<UAMethod NodeId="i=2426" BrowseName="Start" ParentNodeId="i=2391">
|
|
602
|
+
<DisplayName>Start</DisplayName>
|
|
603
|
+
<Description>Causes the Program to transition from the Ready state to the Running state.</Description>
|
|
604
|
+
<References>
|
|
605
|
+
<Reference ReferenceType="i=53" IsForward="false">i=2410</Reference>
|
|
606
|
+
<Reference ReferenceType="HasModellingRule">i=78</Reference>
|
|
607
|
+
<Reference ReferenceType="HasComponent" IsForward="false">i=2391</Reference>
|
|
608
|
+
</References>
|
|
609
|
+
</UAMethod>
|
|
610
|
+
<UAMethod NodeId="i=2427" BrowseName="Suspend" ParentNodeId="i=2391">
|
|
611
|
+
<DisplayName>Suspend</DisplayName>
|
|
612
|
+
<Description>Causes the Program to transition from the Running state to the Suspended state.</Description>
|
|
613
|
+
<References>
|
|
614
|
+
<Reference ReferenceType="i=53" IsForward="false">i=2416</Reference>
|
|
615
|
+
<Reference ReferenceType="HasModellingRule">i=78</Reference>
|
|
616
|
+
<Reference ReferenceType="HasComponent" IsForward="false">i=2391</Reference>
|
|
617
|
+
</References>
|
|
618
|
+
</UAMethod>
|
|
619
|
+
<UAMethod NodeId="i=2428" BrowseName="Resume" ParentNodeId="i=2391">
|
|
620
|
+
<DisplayName>Resume</DisplayName>
|
|
621
|
+
<Description>Causes the Program to transition from the Suspended state to the Running state.</Description>
|
|
622
|
+
<References>
|
|
623
|
+
<Reference ReferenceType="i=53" IsForward="false">i=2418</Reference>
|
|
624
|
+
<Reference ReferenceType="HasModellingRule">i=78</Reference>
|
|
625
|
+
<Reference ReferenceType="HasComponent" IsForward="false">i=2391</Reference>
|
|
626
|
+
</References>
|
|
627
|
+
</UAMethod>
|
|
628
|
+
<UAMethod NodeId="i=2429" BrowseName="Halt" ParentNodeId="i=2391">
|
|
629
|
+
<DisplayName>Halt</DisplayName>
|
|
630
|
+
<Description>Causes the Program to transition from the Ready, Running or Suspended state to the Halted state.</Description>
|
|
631
|
+
<References>
|
|
632
|
+
<Reference ReferenceType="i=53" IsForward="false">i=2412</Reference>
|
|
633
|
+
<Reference ReferenceType="i=53" IsForward="false">i=2420</Reference>
|
|
634
|
+
<Reference ReferenceType="i=53" IsForward="false">i=2424</Reference>
|
|
635
|
+
<Reference ReferenceType="HasModellingRule">i=78</Reference>
|
|
636
|
+
<Reference ReferenceType="HasComponent" IsForward="false">i=2391</Reference>
|
|
637
|
+
</References>
|
|
638
|
+
</UAMethod>
|
|
639
|
+
<UAMethod NodeId="i=2430" BrowseName="Reset" ParentNodeId="i=2391">
|
|
640
|
+
<DisplayName>Reset</DisplayName>
|
|
641
|
+
<Description>Causes the Program to transition from the Halted state to the Ready state.</Description>
|
|
642
|
+
<References>
|
|
643
|
+
<Reference ReferenceType="i=53" IsForward="false">i=2408</Reference>
|
|
644
|
+
<Reference ReferenceType="HasModellingRule">i=78</Reference>
|
|
645
|
+
<Reference ReferenceType="HasComponent" IsForward="false">i=2391</Reference>
|
|
646
|
+
</References>
|
|
647
|
+
</UAMethod>
|
|
648
|
+
<UAObjectType NodeId="i=2378" BrowseName="ProgramTransitionEventType">
|
|
649
|
+
<DisplayName>ProgramTransitionEventType</DisplayName>
|
|
650
|
+
<References>
|
|
651
|
+
<Reference ReferenceType="HasProperty">i=2379</Reference>
|
|
652
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">i=2311</Reference>
|
|
653
|
+
</References>
|
|
654
|
+
</UAObjectType>
|
|
655
|
+
<UAVariable NodeId="i=2379" BrowseName="IntermediateResult" ParentNodeId="i=2378">
|
|
656
|
+
<DisplayName>IntermediateResult</DisplayName>
|
|
657
|
+
<References>
|
|
658
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
659
|
+
<Reference ReferenceType="HasModellingRule">i=78</Reference>
|
|
660
|
+
<Reference ReferenceType="HasProperty" IsForward="false">i=2378</Reference>
|
|
661
|
+
</References>
|
|
662
|
+
</UAVariable>
|
|
663
|
+
<UAObjectType NodeId="i=11856" BrowseName="AuditProgramTransitionEventType">
|
|
664
|
+
<DisplayName>AuditProgramTransitionEventType</DisplayName>
|
|
665
|
+
<References>
|
|
666
|
+
<Reference ReferenceType="HasProperty">i=11875</Reference>
|
|
667
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">i=2315</Reference>
|
|
668
|
+
</References>
|
|
669
|
+
</UAObjectType>
|
|
670
|
+
<UAVariable NodeId="i=11875" BrowseName="TransitionNumber" ParentNodeId="i=11856" DataType="UInt32">
|
|
671
|
+
<DisplayName>TransitionNumber</DisplayName>
|
|
672
|
+
<References>
|
|
673
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
674
|
+
<Reference ReferenceType="HasModellingRule">i=78</Reference>
|
|
675
|
+
<Reference ReferenceType="HasProperty" IsForward="false">i=11856</Reference>
|
|
676
|
+
</References>
|
|
677
|
+
</UAVariable>
|
|
678
|
+
<UAObjectType NodeId="i=3806" BrowseName="ProgramTransitionAuditEventType">
|
|
679
|
+
<DisplayName>ProgramTransitionAuditEventType</DisplayName>
|
|
680
|
+
<References>
|
|
681
|
+
<Reference ReferenceType="HasComponent">i=3825</Reference>
|
|
682
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">i=2315</Reference>
|
|
683
|
+
</References>
|
|
684
|
+
</UAObjectType>
|
|
685
|
+
<UAVariable NodeId="i=3825" BrowseName="Transition" ParentNodeId="i=3806" DataType="LocalizedText">
|
|
686
|
+
<DisplayName>Transition</DisplayName>
|
|
687
|
+
<References>
|
|
688
|
+
<Reference ReferenceType="HasProperty">i=3826</Reference>
|
|
689
|
+
<Reference ReferenceType="HasTypeDefinition">i=2767</Reference>
|
|
690
|
+
<Reference ReferenceType="HasModellingRule">i=78</Reference>
|
|
691
|
+
<Reference ReferenceType="HasComponent" IsForward="false">i=3806</Reference>
|
|
692
|
+
</References>
|
|
693
|
+
</UAVariable>
|
|
694
|
+
<UAVariable NodeId="i=3826" BrowseName="Id" ParentNodeId="i=3825" DataType="NodeId">
|
|
695
|
+
<DisplayName>Id</DisplayName>
|
|
696
|
+
<References>
|
|
697
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
698
|
+
<Reference ReferenceType="HasModellingRule">i=78</Reference>
|
|
699
|
+
<Reference ReferenceType="HasProperty" IsForward="false">i=3825</Reference>
|
|
700
|
+
</References>
|
|
701
|
+
</UAVariable>
|
|
702
|
+
<UAVariableType NodeId="i=2380" BrowseName="ProgramDiagnosticType" DataType="i=894">
|
|
703
|
+
<DisplayName>ProgramDiagnosticType</DisplayName>
|
|
704
|
+
<References>
|
|
705
|
+
<Reference ReferenceType="HasProperty">i=2381</Reference>
|
|
706
|
+
<Reference ReferenceType="HasProperty">i=2382</Reference>
|
|
707
|
+
<Reference ReferenceType="HasProperty">i=2383</Reference>
|
|
708
|
+
<Reference ReferenceType="HasProperty">i=2384</Reference>
|
|
709
|
+
<Reference ReferenceType="HasProperty">i=2385</Reference>
|
|
710
|
+
<Reference ReferenceType="HasProperty">i=2386</Reference>
|
|
711
|
+
<Reference ReferenceType="HasProperty">i=2387</Reference>
|
|
712
|
+
<Reference ReferenceType="HasProperty">i=2388</Reference>
|
|
713
|
+
<Reference ReferenceType="HasProperty">i=2389</Reference>
|
|
714
|
+
<Reference ReferenceType="HasProperty">i=2390</Reference>
|
|
715
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">i=63</Reference>
|
|
716
|
+
</References>
|
|
717
|
+
</UAVariableType>
|
|
718
|
+
<UAVariable NodeId="i=2381" BrowseName="CreateSessionId" ParentNodeId="i=2380" DataType="NodeId">
|
|
719
|
+
<DisplayName>CreateSessionId</DisplayName>
|
|
720
|
+
<References>
|
|
721
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
722
|
+
<Reference ReferenceType="HasModellingRule">i=78</Reference>
|
|
723
|
+
<Reference ReferenceType="HasProperty" IsForward="false">i=2380</Reference>
|
|
724
|
+
</References>
|
|
725
|
+
</UAVariable>
|
|
726
|
+
<UAVariable NodeId="i=2382" BrowseName="CreateClientName" ParentNodeId="i=2380" DataType="String">
|
|
727
|
+
<DisplayName>CreateClientName</DisplayName>
|
|
728
|
+
<References>
|
|
729
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
730
|
+
<Reference ReferenceType="HasModellingRule">i=78</Reference>
|
|
731
|
+
<Reference ReferenceType="HasProperty" IsForward="false">i=2380</Reference>
|
|
732
|
+
</References>
|
|
733
|
+
</UAVariable>
|
|
734
|
+
<UAVariable NodeId="i=2383" BrowseName="InvocationCreationTime" ParentNodeId="i=2380" DataType="i=294">
|
|
735
|
+
<DisplayName>InvocationCreationTime</DisplayName>
|
|
736
|
+
<References>
|
|
737
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
738
|
+
<Reference ReferenceType="HasModellingRule">i=78</Reference>
|
|
739
|
+
<Reference ReferenceType="HasProperty" IsForward="false">i=2380</Reference>
|
|
740
|
+
</References>
|
|
741
|
+
</UAVariable>
|
|
742
|
+
<UAVariable NodeId="i=2384" BrowseName="LastTransitionTime" ParentNodeId="i=2380" DataType="i=294">
|
|
743
|
+
<DisplayName>LastTransitionTime</DisplayName>
|
|
744
|
+
<References>
|
|
745
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
746
|
+
<Reference ReferenceType="HasModellingRule">i=78</Reference>
|
|
747
|
+
<Reference ReferenceType="HasProperty" IsForward="false">i=2380</Reference>
|
|
748
|
+
</References>
|
|
749
|
+
</UAVariable>
|
|
750
|
+
<UAVariable NodeId="i=2385" BrowseName="LastMethodCall" ParentNodeId="i=2380" DataType="String">
|
|
751
|
+
<DisplayName>LastMethodCall</DisplayName>
|
|
752
|
+
<References>
|
|
753
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
754
|
+
<Reference ReferenceType="HasModellingRule">i=78</Reference>
|
|
755
|
+
<Reference ReferenceType="HasProperty" IsForward="false">i=2380</Reference>
|
|
756
|
+
</References>
|
|
757
|
+
</UAVariable>
|
|
758
|
+
<UAVariable NodeId="i=2386" BrowseName="LastMethodSessionId" ParentNodeId="i=2380" DataType="NodeId">
|
|
759
|
+
<DisplayName>LastMethodSessionId</DisplayName>
|
|
760
|
+
<References>
|
|
761
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
762
|
+
<Reference ReferenceType="HasModellingRule">i=78</Reference>
|
|
763
|
+
<Reference ReferenceType="HasProperty" IsForward="false">i=2380</Reference>
|
|
764
|
+
</References>
|
|
765
|
+
</UAVariable>
|
|
766
|
+
<UAVariable NodeId="i=2387" BrowseName="LastMethodInputArguments" ParentNodeId="i=2380" DataType="i=296" ValueRank="1">
|
|
767
|
+
<DisplayName>LastMethodInputArguments</DisplayName>
|
|
768
|
+
<References>
|
|
769
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
770
|
+
<Reference ReferenceType="HasModellingRule">i=78</Reference>
|
|
771
|
+
<Reference ReferenceType="HasProperty" IsForward="false">i=2380</Reference>
|
|
772
|
+
</References>
|
|
773
|
+
</UAVariable>
|
|
774
|
+
<UAVariable NodeId="i=2388" BrowseName="LastMethodOutputArguments" ParentNodeId="i=2380" DataType="i=296" ValueRank="1">
|
|
775
|
+
<DisplayName>LastMethodOutputArguments</DisplayName>
|
|
776
|
+
<References>
|
|
777
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
778
|
+
<Reference ReferenceType="HasModellingRule">i=78</Reference>
|
|
779
|
+
<Reference ReferenceType="HasProperty" IsForward="false">i=2380</Reference>
|
|
780
|
+
</References>
|
|
781
|
+
</UAVariable>
|
|
782
|
+
<UAVariable NodeId="i=2389" BrowseName="LastMethodCallTime" ParentNodeId="i=2380" DataType="i=294">
|
|
783
|
+
<DisplayName>LastMethodCallTime</DisplayName>
|
|
784
|
+
<References>
|
|
785
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
786
|
+
<Reference ReferenceType="HasModellingRule">i=78</Reference>
|
|
787
|
+
<Reference ReferenceType="HasProperty" IsForward="false">i=2380</Reference>
|
|
788
|
+
</References>
|
|
789
|
+
</UAVariable>
|
|
790
|
+
<UAVariable NodeId="i=2390" BrowseName="LastMethodReturnStatus" ParentNodeId="i=2380" DataType="i=299">
|
|
791
|
+
<DisplayName>LastMethodReturnStatus</DisplayName>
|
|
792
|
+
<References>
|
|
793
|
+
<Reference ReferenceType="HasTypeDefinition">i=68</Reference>
|
|
794
|
+
<Reference ReferenceType="HasModellingRule">i=78</Reference>
|
|
795
|
+
<Reference ReferenceType="HasProperty" IsForward="false">i=2380</Reference>
|
|
796
|
+
</References>
|
|
797
|
+
</UAVariable>
|
|
798
|
+
<UADataType NodeId="i=894" BrowseName="ProgramDiagnosticDataType">
|
|
799
|
+
<DisplayName>ProgramDiagnosticDataType</DisplayName>
|
|
800
|
+
<References>
|
|
801
|
+
<Reference ReferenceType="HasSubtype" IsForward="false">i=22</Reference>
|
|
802
|
+
</References>
|
|
803
|
+
<Definition Name="ProgramDiagnosticDataType">
|
|
804
|
+
<Field Name="CreateSessionId" DataType="i=17" />
|
|
805
|
+
<Field Name="CreateClientName" DataType="i=12" />
|
|
806
|
+
<Field Name="InvocationCreationTime" DataType="i=294" />
|
|
807
|
+
<Field Name="LastTransitionTime" DataType="i=294" />
|
|
808
|
+
<Field Name="LastMethodCall" DataType="i=12" />
|
|
809
|
+
<Field Name="LastMethodSessionId" DataType="i=17" />
|
|
810
|
+
<Field Name="LastMethodInputArguments" DataType="i=296" ValueRank="1" />
|
|
811
|
+
<Field Name="LastMethodOutputArguments" DataType="i=296" ValueRank="1" />
|
|
812
|
+
<Field Name="LastMethodCallTime" DataType="i=294" />
|
|
813
|
+
<Field Name="LastMethodReturnStatus" DataType="i=299" />
|
|
814
|
+
</Definition>
|
|
815
|
+
</UADataType>
|
|
816
|
+
<UAObject NodeId="i=895" BrowseName="Default XML" SymbolicName="DefaultXml">
|
|
817
|
+
<DisplayName>Default XML</DisplayName>
|
|
818
|
+
<References>
|
|
819
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=894</Reference>
|
|
820
|
+
<Reference ReferenceType="HasDescription">i=8882</Reference>
|
|
821
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
822
|
+
</References>
|
|
823
|
+
</UAObject>
|
|
824
|
+
<UAObject NodeId="i=896" BrowseName="Default Binary" SymbolicName="DefaultBinary">
|
|
825
|
+
<DisplayName>Default Binary</DisplayName>
|
|
826
|
+
<References>
|
|
827
|
+
<Reference ReferenceType="HasEncoding" IsForward="false">i=894</Reference>
|
|
828
|
+
<Reference ReferenceType="HasDescription">i=8247</Reference>
|
|
829
|
+
<Reference ReferenceType="HasTypeDefinition">i=76</Reference>
|
|
830
|
+
</References>
|
|
831
|
+
</UAObject>
|
|
832
|
+
</UANodeSet>
|