Opc.Ua.Types.bsd 156 KB

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