Opc.Ua.Types.bsd 139 KB

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