devicemgmt.wsdl 156 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <?xml-stylesheet type="text/xsl" href="../../../ver20/util/onvif-wsdl-viewer.xsl"?>
  3. <!--
  4. Copyright (c) 2008-2014 by ONVIF: Open Network Video Interface Forum. All rights reserved.
  5. Recipients of this document may copy, distribute, publish, or display this document so long as this copyright notice, license and disclaimer are retained with all copies of the document. No license is granted to modify this document.
  6. THIS DOCUMENT IS PROVIDED "AS IS," AND THE CORPORATION AND ITS MEMBERS AND THEIR AFFILIATES, MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, OR TITLE; THAT THE CONTENTS OF THIS DOCUMENT ARE SUITABLE FOR ANY PURPOSE; OR THAT THE IMPLEMENTATION OF SUCH CONTENTS WILL NOT INFRINGE ANY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.
  7. IN NO EVENT WILL THE CORPORATION OR ITS MEMBERS OR THEIR AFFILIATES BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, PUNITIVE OR CONSEQUENTIAL DAMAGES, ARISING OUT OF OR RELATING TO ANY USE OR DISTRIBUTION OF THIS DOCUMENT, WHETHER OR NOT (1) THE CORPORATION, MEMBERS OR THEIR AFFILIATES HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES, OR (2) SUCH DAMAGES WERE REASONABLY FORESEEABLE, AND ARISING OUT OF OR RELATING TO ANY USE OR DISTRIBUTION OF THIS DOCUMENT. THE FOREGOING DISCLAIMER AND LIMITATION ON LIABILITY DO NOT APPLY TO, INVALIDATE, OR LIMIT REPRESENTATIONS AND WARRANTIES MADE BY THE MEMBERS AND THEIR RESPECTIVE AFFILIATES TO THE CORPORATION AND OTHER MEMBERS IN CERTAIN WRITTEN POLICIES OF THE CORPORATION.
  8. -->
  9. <wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:tds="http://www.onvif.org/ver10/device/wsdl" targetNamespace="http://www.onvif.org/ver10/device/wsdl">
  10. <wsdl:types>
  11. <xs:schema targetNamespace="http://www.onvif.org/ver10/device/wsdl" xmlns:tt="http://www.onvif.org/ver10/schema" xmlns:tds="http://www.onvif.org/ver10/device/wsdl" elementFormDefault="qualified" version="2.4.2">
  12. <xs:import namespace="http://www.onvif.org/ver10/schema" schemaLocation="onvif.xsd"/>
  13. <!--===============================-->
  14. <xs:element name="GetServices">
  15. <xs:complexType>
  16. <xs:sequence>
  17. <xs:element name="IncludeCapability" type="xs:boolean">
  18. <xs:annotation>
  19. <xs:documentation>Indicates if the service capabilities (untyped) should be included in the response.</xs:documentation>
  20. </xs:annotation>
  21. </xs:element>
  22. </xs:sequence>
  23. </xs:complexType>
  24. </xs:element>
  25. <xs:element name="GetServicesResponse">
  26. <xs:complexType>
  27. <xs:sequence>
  28. <xs:element name="Service" type="tds:Service" maxOccurs="unbounded">
  29. <xs:annotation>
  30. <xs:documentation>Each Service element contains information about one service.</xs:documentation>
  31. </xs:annotation>
  32. </xs:element>
  33. </xs:sequence>
  34. </xs:complexType>
  35. </xs:element>
  36. <!--===============================-->
  37. <xs:complexType name="Service">
  38. <xs:sequence>
  39. <xs:element name="Namespace" type="xs:anyURI">
  40. <xs:annotation>
  41. <xs:documentation>Namespace of the service being described. This parameter allows to match the service capabilities to the service. Note that only one set of capabilities is supported per namespace.</xs:documentation>
  42. </xs:annotation>
  43. </xs:element>
  44. <xs:element name="XAddr" type="xs:anyURI">
  45. <xs:annotation>
  46. <xs:documentation>The transport addresses where the service can be reached. The scheme and IP part shall match the one used in the request (i.e. the GetServices request).</xs:documentation>
  47. </xs:annotation>
  48. </xs:element>
  49. <xs:element name="Capabilities" minOccurs="0">
  50. <xs:complexType>
  51. <xs:sequence>
  52. <xs:any namespace="##any" processContents="lax">
  53. <xs:annotation>
  54. <xs:documentation>The placeholder for the service capabilities. The service capability element shall be returned here. For example for the device service that would be the tds:DeviceServiceCapabilities element (not complextype).</xs:documentation>
  55. </xs:annotation>
  56. </xs:any>
  57. </xs:sequence>
  58. </xs:complexType>
  59. </xs:element>
  60. <xs:element name="Version" type="tt:OnvifVersion">
  61. <xs:annotation>
  62. <xs:documentation>The version of the service (not the ONVIF core spec version).</xs:documentation>
  63. </xs:annotation>
  64. </xs:element>
  65. <xs:any namespace="##any" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
  66. </xs:sequence>
  67. <xs:anyAttribute processContents="lax"/>
  68. </xs:complexType>
  69. <!--===============================-->
  70. <xs:element name="GetServiceCapabilities">
  71. <xs:complexType>
  72. <xs:sequence/>
  73. </xs:complexType>
  74. </xs:element>
  75. <xs:element name="GetServiceCapabilitiesResponse">
  76. <xs:complexType>
  77. <xs:sequence>
  78. <xs:element name="Capabilities" type="tds:DeviceServiceCapabilities">
  79. <xs:annotation>
  80. <xs:documentation>The capabilities for the device service is returned in the Capabilities element.</xs:documentation>
  81. </xs:annotation>
  82. </xs:element>
  83. </xs:sequence>
  84. </xs:complexType>
  85. </xs:element>
  86. <!--===============================-->
  87. <xs:complexType name="DeviceServiceCapabilities">
  88. <xs:sequence>
  89. <xs:element name="Network" type="tds:NetworkCapabilities">
  90. <xs:annotation>
  91. <xs:documentation>Network capabilities.</xs:documentation>
  92. </xs:annotation>
  93. </xs:element>
  94. <xs:element name="Security" type="tds:SecurityCapabilities">
  95. <xs:annotation>
  96. <xs:documentation>Security capabilities.</xs:documentation>
  97. </xs:annotation>
  98. </xs:element>
  99. <xs:element name="System" type="tds:SystemCapabilities">
  100. <xs:annotation>
  101. <xs:documentation>System capabilities.</xs:documentation>
  102. </xs:annotation>
  103. </xs:element>
  104. <xs:element name="Misc" type="tds:MiscCapabilities" minOccurs="0">
  105. <xs:annotation>
  106. <xs:documentation>Capabilities that do not fit in any of the other categories.</xs:documentation>
  107. </xs:annotation>
  108. </xs:element>
  109. </xs:sequence>
  110. </xs:complexType>
  111. <xs:element name="Capabilities" type="tds:DeviceServiceCapabilities"/>
  112. <!--===============================-->
  113. <xs:complexType name="NetworkCapabilities">
  114. <xs:attribute name="IPFilter" type="xs:boolean">
  115. <xs:annotation>
  116. <xs:documentation>Indicates support for IP filtering.</xs:documentation>
  117. </xs:annotation>
  118. </xs:attribute>
  119. <xs:attribute name="ZeroConfiguration" type="xs:boolean">
  120. <xs:annotation>
  121. <xs:documentation>Indicates support for zeroconf.</xs:documentation>
  122. </xs:annotation>
  123. </xs:attribute>
  124. <xs:attribute name="IPVersion6" type="xs:boolean">
  125. <xs:annotation>
  126. <xs:documentation>Indicates support for IPv6.</xs:documentation>
  127. </xs:annotation>
  128. </xs:attribute>
  129. <xs:attribute name="DynDNS" type="xs:boolean">
  130. <xs:annotation>
  131. <xs:documentation>Indicates support for dynamic DNS configuration.</xs:documentation>
  132. </xs:annotation>
  133. </xs:attribute>
  134. <xs:attribute name="Dot11Configuration" type="xs:boolean">
  135. <xs:annotation>
  136. <xs:documentation>Indicates support for IEEE 802.11 configuration.</xs:documentation>
  137. </xs:annotation>
  138. </xs:attribute>
  139. <xs:attribute name="Dot1XConfigurations" type="xs:int">
  140. <xs:annotation>
  141. <xs:documentation>Indicates the maximum number of Dot1X configurations supported by the device</xs:documentation>
  142. </xs:annotation>
  143. </xs:attribute>
  144. <xs:attribute name="HostnameFromDHCP" type="xs:boolean">
  145. <xs:annotation>
  146. <xs:documentation>Indicates support for retrieval of hostname from DHCP.</xs:documentation>
  147. </xs:annotation>
  148. </xs:attribute>
  149. <xs:attribute name="NTP" type="xs:int">
  150. <xs:annotation>
  151. <xs:documentation>Maximum number of NTP servers supported by the devices SetNTP command.</xs:documentation>
  152. </xs:annotation>
  153. </xs:attribute>
  154. <xs:attribute name="DHCPv6" type="xs:boolean">
  155. <xs:annotation>
  156. <xs:documentation>Indicates support for Stateful IPv6 DHCP.</xs:documentation>
  157. </xs:annotation>
  158. </xs:attribute>
  159. <xs:anyAttribute processContents="lax"/>
  160. </xs:complexType>
  161. <!--===============================-->
  162. <xs:simpleType name="EAPMethodTypes">
  163. <xs:list itemType="xs:int"/>
  164. </xs:simpleType>
  165. <xs:complexType name="SecurityCapabilities">
  166. <xs:attribute name="TLS1.0" type="xs:boolean">
  167. <xs:annotation>
  168. <xs:documentation>Indicates support for TLS 1.0.</xs:documentation>
  169. </xs:annotation>
  170. </xs:attribute>
  171. <xs:attribute name="TLS1.1" type="xs:boolean">
  172. <xs:annotation>
  173. <xs:documentation>Indicates support for TLS 1.1.</xs:documentation>
  174. </xs:annotation>
  175. </xs:attribute>
  176. <xs:attribute name="TLS1.2" type="xs:boolean">
  177. <xs:annotation>
  178. <xs:documentation>Indicates support for TLS 1.2.</xs:documentation>
  179. </xs:annotation>
  180. </xs:attribute>
  181. <xs:attribute name="OnboardKeyGeneration" type="xs:boolean">
  182. <xs:annotation>
  183. <xs:documentation>Indicates support for onboard key generation.</xs:documentation>
  184. </xs:annotation>
  185. </xs:attribute>
  186. <xs:attribute name="AccessPolicyConfig" type="xs:boolean">
  187. <xs:annotation>
  188. <xs:documentation>Indicates support for access policy configuration.</xs:documentation>
  189. </xs:annotation>
  190. </xs:attribute>
  191. <xs:attribute name="DefaultAccessPolicy" type="xs:boolean">
  192. <xs:annotation>
  193. <xs:documentation>Indicates support for the ONVIF default access policy.</xs:documentation>
  194. </xs:annotation>
  195. </xs:attribute>
  196. <xs:attribute name="Dot1X" type="xs:boolean">
  197. <xs:annotation>
  198. <xs:documentation>Indicates support for IEEE 802.1X configuration.</xs:documentation>
  199. </xs:annotation>
  200. </xs:attribute>
  201. <xs:attribute name="RemoteUserHandling" type="xs:boolean">
  202. <xs:annotation>
  203. <xs:documentation>Indicates support for remote user configuration. Used when accessing another device.</xs:documentation>
  204. </xs:annotation>
  205. </xs:attribute>
  206. <xs:attribute name="X.509Token" type="xs:boolean">
  207. <xs:annotation>
  208. <xs:documentation>Indicates support for WS-Security X.509 token.</xs:documentation>
  209. </xs:annotation>
  210. </xs:attribute>
  211. <xs:attribute name="SAMLToken" type="xs:boolean">
  212. <xs:annotation>
  213. <xs:documentation>Indicates support for WS-Security SAML token.</xs:documentation>
  214. </xs:annotation>
  215. </xs:attribute>
  216. <xs:attribute name="KerberosToken" type="xs:boolean">
  217. <xs:annotation>
  218. <xs:documentation>Indicates support for WS-Security Kerberos token.</xs:documentation>
  219. </xs:annotation>
  220. </xs:attribute>
  221. <xs:attribute name="UsernameToken" type="xs:boolean">
  222. <xs:annotation>
  223. <xs:documentation>Indicates support for WS-Security Username token.</xs:documentation>
  224. </xs:annotation>
  225. </xs:attribute>
  226. <xs:attribute name="HttpDigest" type="xs:boolean">
  227. <xs:annotation>
  228. <xs:documentation>Indicates support for WS over HTTP digest authenticated communication layer.</xs:documentation>
  229. </xs:annotation>
  230. </xs:attribute>
  231. <xs:attribute name="RELToken" type="xs:boolean">
  232. <xs:annotation>
  233. <xs:documentation>Indicates support for WS-Security REL token.</xs:documentation>
  234. </xs:annotation>
  235. </xs:attribute>
  236. <xs:attribute name="SupportedEAPMethods" type="tds:EAPMethodTypes">
  237. <xs:annotation>
  238. <xs:documentation>EAP Methods supported by the device. The int values refer to the <a href="http://www.iana.org/assignments/eap-numbers/eap-numbers.xhtml">IANA EAP Registry</a>.</xs:documentation>
  239. </xs:annotation>
  240. </xs:attribute>
  241. <xs:attribute name="MaxUsers" type="xs:int">
  242. <xs:annotation>
  243. <xs:documentation>The maximum number of users that the device supports.</xs:documentation>
  244. </xs:annotation>
  245. </xs:attribute>
  246. <xs:anyAttribute processContents="lax"/>
  247. </xs:complexType>
  248. <!--===============================-->
  249. <xs:complexType name="SystemCapabilities">
  250. <xs:attribute name="DiscoveryResolve" type="xs:boolean">
  251. <xs:annotation>
  252. <xs:documentation>Indicates support for WS Discovery resolve requests.</xs:documentation>
  253. </xs:annotation>
  254. </xs:attribute>
  255. <xs:attribute name="DiscoveryBye" type="xs:boolean">
  256. <xs:annotation>
  257. <xs:documentation>Indicates support for WS-Discovery Bye.</xs:documentation>
  258. </xs:annotation>
  259. </xs:attribute>
  260. <xs:attribute name="RemoteDiscovery" type="xs:boolean">
  261. <xs:annotation>
  262. <xs:documentation>Indicates support for remote discovery.</xs:documentation>
  263. </xs:annotation>
  264. </xs:attribute>
  265. <xs:attribute name="SystemBackup" type="xs:boolean">
  266. <xs:annotation>
  267. <xs:documentation>Indicates support for system backup through MTOM.</xs:documentation>
  268. </xs:annotation>
  269. </xs:attribute>
  270. <xs:attribute name="SystemLogging" type="xs:boolean">
  271. <xs:annotation>
  272. <xs:documentation>Indicates support for retrieval of system logging through MTOM.</xs:documentation>
  273. </xs:annotation>
  274. </xs:attribute>
  275. <xs:attribute name="FirmwareUpgrade" type="xs:boolean">
  276. <xs:annotation>
  277. <xs:documentation>Indicates support for firmware upgrade through MTOM.</xs:documentation>
  278. </xs:annotation>
  279. </xs:attribute>
  280. <xs:attribute name="HttpFirmwareUpgrade" type="xs:boolean">
  281. <xs:annotation>
  282. <xs:documentation>Indicates support for system backup through MTOM.</xs:documentation>
  283. </xs:annotation>
  284. </xs:attribute>
  285. <xs:attribute name="HttpSystemBackup" type="xs:boolean">
  286. <xs:annotation>
  287. <xs:documentation>Indicates support for system backup through HTTP.</xs:documentation>
  288. </xs:annotation>
  289. </xs:attribute>
  290. <xs:attribute name="HttpSystemLogging" type="xs:boolean">
  291. <xs:annotation>
  292. <xs:documentation>Indicates support for retrieval of system logging through HTTP.</xs:documentation>
  293. </xs:annotation>
  294. </xs:attribute>
  295. <xs:attribute name="HttpSupportInformation" type="xs:boolean">
  296. <xs:annotation>
  297. <xs:documentation>Indicates support for retrieving support information through HTTP.</xs:documentation>
  298. </xs:annotation>
  299. </xs:attribute>
  300. <xs:anyAttribute processContents="lax"/>
  301. </xs:complexType>
  302. <!--===============================-->
  303. <xs:complexType name="MiscCapabilities">
  304. <xs:attribute name="AuxiliaryCommands" type="tt:StringAttrList">
  305. <xs:annotation>
  306. <xs:documentation>Lists of commands supported by SendAuxiliaryCommand.</xs:documentation>
  307. </xs:annotation>
  308. </xs:attribute>
  309. <xs:anyAttribute processContents="lax"/>
  310. </xs:complexType>
  311. <!--===============================-->
  312. <xs:element name="GetDeviceInformation">
  313. <xs:complexType>
  314. <xs:sequence/>
  315. </xs:complexType>
  316. </xs:element>
  317. <xs:element name="GetDeviceInformationResponse">
  318. <xs:complexType>
  319. <xs:sequence>
  320. <xs:element name="Manufacturer" type="xs:string">
  321. <xs:annotation>
  322. <xs:documentation>The manufactor of the device.</xs:documentation>
  323. </xs:annotation>
  324. </xs:element>
  325. <xs:element name="Model" type="xs:string">
  326. <xs:annotation>
  327. <xs:documentation>The device model.</xs:documentation>
  328. </xs:annotation>
  329. </xs:element>
  330. <xs:element name="FirmwareVersion" type="xs:string">
  331. <xs:annotation>
  332. <xs:documentation>The firmware version in the device.</xs:documentation>
  333. </xs:annotation>
  334. </xs:element>
  335. <xs:element name="SerialNumber" type="xs:string">
  336. <xs:annotation>
  337. <xs:documentation>The serial number of the device.</xs:documentation>
  338. </xs:annotation>
  339. </xs:element>
  340. <xs:element name="HardwareId" type="xs:string">
  341. <xs:annotation>
  342. <xs:documentation>The hardware ID of the device.</xs:documentation>
  343. </xs:annotation>
  344. </xs:element>
  345. </xs:sequence>
  346. </xs:complexType>
  347. </xs:element>
  348. <!--===============================-->
  349. <xs:element name="SetSystemDateAndTime">
  350. <xs:complexType>
  351. <xs:sequence>
  352. <xs:element name="DateTimeType" type="tt:SetDateTimeType">
  353. <xs:annotation>
  354. <xs:documentation>Defines if the date and time is set via NTP or manually.</xs:documentation>
  355. </xs:annotation>
  356. </xs:element>
  357. <xs:element name="DaylightSavings" type="xs:boolean">
  358. <xs:annotation>
  359. <xs:documentation>Automatically adjust Daylight savings if defined in TimeZone.</xs:documentation>
  360. </xs:annotation>
  361. </xs:element>
  362. <xs:element name="TimeZone" type="tt:TimeZone" minOccurs="0">
  363. <xs:annotation>
  364. <xs:documentation>The time zone in POSIX 1003.1 format</xs:documentation>
  365. </xs:annotation>
  366. </xs:element>
  367. <xs:element name="UTCDateTime" type="tt:DateTime" minOccurs="0">
  368. <xs:annotation>
  369. <xs:documentation>Date and time in UTC. If time is obtained via NTP, UTCDateTime has no meaning</xs:documentation>
  370. </xs:annotation>
  371. </xs:element>
  372. </xs:sequence>
  373. </xs:complexType>
  374. </xs:element>
  375. <xs:element name="SetSystemDateAndTimeResponse">
  376. <xs:complexType>
  377. <xs:sequence>
  378. </xs:sequence>
  379. </xs:complexType>
  380. </xs:element>
  381. <!--===============================-->
  382. <xs:element name="GetSystemDateAndTime">
  383. <xs:complexType>
  384. <xs:sequence/>
  385. </xs:complexType>
  386. </xs:element>
  387. <xs:element name="GetSystemDateAndTimeResponse">
  388. <xs:complexType>
  389. <xs:sequence>
  390. <xs:element name="SystemDateAndTime" type="tt:SystemDateTime">
  391. <xs:annotation>
  392. <xs:documentation>Contains information whether system date and time are set manually or by NTP, daylight savings is on or off, time zone in POSIX 1003.1 format and system date and time in UTC and also local system date and time.</xs:documentation>
  393. </xs:annotation>
  394. </xs:element>
  395. </xs:sequence>
  396. </xs:complexType>
  397. </xs:element>
  398. <!--===============================-->
  399. <xs:element name="SetSystemFactoryDefault">
  400. <xs:complexType>
  401. <xs:sequence>
  402. <xs:element name="FactoryDefault" type="tt:FactoryDefaultType">
  403. <xs:annotation>
  404. <xs:documentation>Specifies the factory default action type.</xs:documentation>
  405. </xs:annotation>
  406. </xs:element>
  407. </xs:sequence>
  408. </xs:complexType>
  409. </xs:element>
  410. <xs:element name="SetSystemFactoryDefaultResponse">
  411. <xs:complexType>
  412. <xs:sequence>
  413. </xs:sequence>
  414. </xs:complexType>
  415. </xs:element>
  416. <!--===============================-->
  417. <xs:element name="UpgradeSystemFirmware">
  418. <xs:complexType>
  419. <xs:sequence>
  420. <xs:element name="Firmware" type="tt:AttachmentData"/>
  421. </xs:sequence>
  422. </xs:complexType>
  423. </xs:element>
  424. <xs:element name="UpgradeSystemFirmwareResponse">
  425. <xs:complexType>
  426. <xs:sequence>
  427. <xs:element name="Message" type="xs:string" minOccurs="0" maxOccurs="1"/>
  428. </xs:sequence>
  429. </xs:complexType>
  430. </xs:element>
  431. <!--===============================-->
  432. <xs:element name="SystemReboot">
  433. <xs:complexType>
  434. <xs:sequence/>
  435. </xs:complexType>
  436. </xs:element>
  437. <xs:element name="SystemRebootResponse">
  438. <xs:complexType>
  439. <xs:sequence>
  440. <xs:element name="Message" type="xs:string">
  441. <xs:annotation>
  442. <xs:documentation>Contains the reboot message sent by the device.</xs:documentation>
  443. </xs:annotation>
  444. </xs:element>
  445. </xs:sequence>
  446. </xs:complexType>
  447. </xs:element>
  448. <!--===============================-->
  449. <xs:element name="RestoreSystem">
  450. <xs:complexType>
  451. <xs:sequence>
  452. <xs:element name="BackupFiles" type="tt:BackupFile" minOccurs="1" maxOccurs="unbounded"/>
  453. </xs:sequence>
  454. </xs:complexType>
  455. </xs:element>
  456. <xs:element name="RestoreSystemResponse">
  457. <xs:complexType>
  458. <xs:sequence/>
  459. </xs:complexType>
  460. </xs:element>
  461. <!--===============================-->
  462. <xs:element name="GetSystemBackup">
  463. <xs:complexType>
  464. <xs:sequence/>
  465. </xs:complexType>
  466. </xs:element>
  467. <xs:element name="GetSystemBackupResponse">
  468. <xs:complexType>
  469. <xs:sequence>
  470. <xs:element name="BackupFiles" type="tt:BackupFile" minOccurs="1" maxOccurs="unbounded"/>
  471. </xs:sequence>
  472. </xs:complexType>
  473. </xs:element>
  474. <!--===============================-->
  475. <xs:element name="GetSystemSupportInformation">
  476. <xs:complexType>
  477. <xs:sequence/>
  478. </xs:complexType>
  479. </xs:element>
  480. <xs:element name="GetSystemSupportInformationResponse">
  481. <xs:complexType>
  482. <xs:sequence>
  483. <xs:element name="SupportInformation" type="tt:SupportInformation">
  484. <xs:annotation>
  485. <xs:documentation>Contains the arbitary device diagnostics information.</xs:documentation>
  486. </xs:annotation>
  487. </xs:element>
  488. </xs:sequence>
  489. </xs:complexType>
  490. </xs:element>
  491. <!--===============================-->
  492. <xs:element name="GetSystemLog">
  493. <xs:complexType>
  494. <xs:sequence>
  495. <xs:element name="LogType" type="tt:SystemLogType">
  496. <xs:annotation>
  497. <xs:documentation>Specifies the type of system log to get.</xs:documentation>
  498. </xs:annotation>
  499. </xs:element>
  500. </xs:sequence>
  501. </xs:complexType>
  502. </xs:element>
  503. <xs:element name="GetSystemLogResponse">
  504. <xs:complexType>
  505. <xs:sequence>
  506. <xs:element name="SystemLog" type="tt:SystemLog">
  507. <xs:annotation>
  508. <xs:documentation>Contains the system log information.</xs:documentation>
  509. </xs:annotation>
  510. </xs:element>
  511. </xs:sequence>
  512. </xs:complexType>
  513. </xs:element>
  514. <!--===============================-->
  515. <xs:element name="GetScopes">
  516. <xs:complexType>
  517. <xs:sequence>
  518. </xs:sequence>
  519. </xs:complexType>
  520. </xs:element>
  521. <xs:element name="GetScopesResponse">
  522. <xs:complexType>
  523. <xs:sequence>
  524. <xs:element name="Scopes" type="tt:Scope" minOccurs="1" maxOccurs="unbounded">
  525. <xs:annotation>
  526. <xs:documentation>Contains a list of URI definining the device scopes. Scope parameters can be of two types: fixed and configurable. Fixed parameters can not be altered.</xs:documentation>
  527. </xs:annotation>
  528. </xs:element>
  529. </xs:sequence>
  530. </xs:complexType>
  531. </xs:element>
  532. <!--===============================-->
  533. <xs:element name="SetScopes">
  534. <xs:complexType>
  535. <xs:sequence>
  536. <xs:element name="Scopes" type="xs:anyURI" minOccurs="1" maxOccurs="unbounded">
  537. <xs:annotation>
  538. <xs:documentation>Contains a list of scope parameters that will replace all existing configurable scope parameters.</xs:documentation>
  539. </xs:annotation>
  540. </xs:element>
  541. </xs:sequence>
  542. </xs:complexType>
  543. </xs:element>
  544. <xs:element name="SetScopesResponse">
  545. <xs:complexType>
  546. <xs:sequence>
  547. </xs:sequence>
  548. </xs:complexType>
  549. </xs:element>
  550. <!--===============================-->
  551. <xs:element name="AddScopes">
  552. <xs:complexType>
  553. <xs:sequence>
  554. <xs:element name="ScopeItem" type="xs:anyURI" minOccurs="1" maxOccurs="unbounded">
  555. <xs:annotation>
  556. <xs:documentation>Contains a list of new configurable scope parameters that will be added to the existing configurable scope.</xs:documentation>
  557. </xs:annotation>
  558. </xs:element>
  559. </xs:sequence>
  560. </xs:complexType>
  561. </xs:element>
  562. <xs:element name="AddScopesResponse">
  563. <xs:complexType>
  564. <xs:sequence>
  565. </xs:sequence>
  566. </xs:complexType>
  567. </xs:element>
  568. <!--===============================-->
  569. <xs:element name="RemoveScopes">
  570. <xs:complexType>
  571. <xs:sequence>
  572. <xs:element name="ScopeItem" type="xs:anyURI" minOccurs="1" maxOccurs="unbounded">
  573. <xs:annotation>
  574. <xs:documentation>Contains a list of URIs that should be removed from the device scope.<br/>
  575. Note that the response message always will match the request or an error will be returned. The use of the response is for that reason deprecated.
  576. </xs:documentation>
  577. </xs:annotation>
  578. </xs:element>
  579. </xs:sequence>
  580. </xs:complexType>
  581. </xs:element>
  582. <xs:element name="RemoveScopesResponse">
  583. <xs:complexType>
  584. <xs:sequence>
  585. <xs:element name="ScopeItem" type="xs:anyURI" minOccurs="0" maxOccurs="unbounded">
  586. <xs:annotation>
  587. <xs:documentation>Contains a list of URIs that has been removed from the device scope</xs:documentation>
  588. </xs:annotation>
  589. </xs:element>
  590. </xs:sequence>
  591. </xs:complexType>
  592. </xs:element>
  593. <!--===============================-->
  594. <xs:element name="GetDiscoveryMode">
  595. <xs:complexType>
  596. <xs:sequence>
  597. </xs:sequence>
  598. </xs:complexType>
  599. </xs:element>
  600. <xs:element name="GetDiscoveryModeResponse">
  601. <xs:complexType>
  602. <xs:sequence>
  603. <xs:element name="DiscoveryMode" type="tt:DiscoveryMode">
  604. <xs:annotation>
  605. <xs:documentation>
  606. Indicator of discovery mode: Discoverable, NonDiscoverable.
  607. </xs:documentation>
  608. </xs:annotation>
  609. </xs:element>
  610. </xs:sequence>
  611. </xs:complexType>
  612. </xs:element>
  613. <!--===============================-->
  614. <xs:element name="SetDiscoveryMode">
  615. <xs:complexType>
  616. <xs:sequence>
  617. <xs:element name="DiscoveryMode" type="tt:DiscoveryMode">
  618. <xs:annotation>
  619. <xs:documentation>
  620. Indicator of discovery mode: Discoverable, NonDiscoverable.
  621. </xs:documentation>
  622. </xs:annotation>
  623. </xs:element>
  624. </xs:sequence>
  625. </xs:complexType>
  626. </xs:element>
  627. <xs:element name="SetDiscoveryModeResponse">
  628. <xs:complexType>
  629. <xs:sequence>
  630. </xs:sequence>
  631. </xs:complexType>
  632. </xs:element>
  633. <!--===============================-->
  634. <xs:element name="GetRemoteDiscoveryMode">
  635. <xs:complexType>
  636. <xs:sequence>
  637. </xs:sequence>
  638. </xs:complexType>
  639. </xs:element>
  640. <xs:element name="GetRemoteDiscoveryModeResponse">
  641. <xs:complexType>
  642. <xs:sequence>
  643. <xs:element name="RemoteDiscoveryMode" type="tt:DiscoveryMode">
  644. <xs:annotation>
  645. <xs:documentation>
  646. Indicator of discovery mode: Discoverable, NonDiscoverable.
  647. </xs:documentation>
  648. </xs:annotation>
  649. </xs:element>
  650. </xs:sequence>
  651. </xs:complexType>
  652. </xs:element>
  653. <!--===============================-->
  654. <xs:element name="SetRemoteDiscoveryMode">
  655. <xs:complexType>
  656. <xs:sequence>
  657. <xs:element name="RemoteDiscoveryMode" type="tt:DiscoveryMode">
  658. <xs:annotation>
  659. <xs:documentation>
  660. Indicator of discovery mode: Discoverable, NonDiscoverable.
  661. </xs:documentation>
  662. </xs:annotation>
  663. </xs:element>
  664. </xs:sequence>
  665. </xs:complexType>
  666. </xs:element>
  667. <xs:element name="SetRemoteDiscoveryModeResponse">
  668. <xs:complexType>
  669. <xs:sequence>
  670. </xs:sequence>
  671. </xs:complexType>
  672. </xs:element>
  673. <!--===============================-->
  674. <xs:element name="GetDPAddresses">
  675. <xs:complexType>
  676. <xs:sequence>
  677. </xs:sequence>
  678. </xs:complexType>
  679. </xs:element>
  680. <xs:element name="GetDPAddressesResponse">
  681. <xs:complexType>
  682. <xs:sequence>
  683. <xs:element name="DPAddress" type="tt:NetworkHost" minOccurs="0" maxOccurs="unbounded"/>
  684. </xs:sequence>
  685. </xs:complexType>
  686. </xs:element>
  687. <!--===============================-->
  688. <xs:element name="SetDPAddresses">
  689. <xs:complexType>
  690. <xs:sequence>
  691. <xs:element name="DPAddress" type="tt:NetworkHost" minOccurs="0" maxOccurs="unbounded"/>
  692. </xs:sequence>
  693. </xs:complexType>
  694. </xs:element>
  695. <xs:element name="SetDPAddressesResponse">
  696. <xs:complexType>
  697. <xs:sequence>
  698. </xs:sequence>
  699. </xs:complexType>
  700. </xs:element>
  701. <!--===============================-->
  702. <xs:element name="GetEndpointReference">
  703. <xs:complexType>
  704. <xs:sequence/>
  705. </xs:complexType>
  706. </xs:element>
  707. <xs:element name="GetEndpointReferenceResponse">
  708. <xs:complexType>
  709. <xs:sequence>
  710. <xs:element name="GUID" type="xs:string"/>
  711. <xs:any namespace="##any" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
  712. </xs:sequence>
  713. </xs:complexType>
  714. </xs:element>
  715. <!--===============================-->
  716. <xs:element name="GetRemoteUser">
  717. <xs:complexType>
  718. <xs:sequence/>
  719. </xs:complexType>
  720. </xs:element>
  721. <xs:element name="GetRemoteUserResponse">
  722. <xs:complexType>
  723. <xs:sequence>
  724. <xs:element name="RemoteUser" type="tt:RemoteUser" minOccurs="0"/>
  725. </xs:sequence>
  726. </xs:complexType>
  727. </xs:element>
  728. <!--===============================-->
  729. <xs:element name="SetRemoteUser">
  730. <xs:complexType>
  731. <xs:sequence>
  732. <xs:element name="RemoteUser" type="tt:RemoteUser" minOccurs="0"/>
  733. </xs:sequence>
  734. </xs:complexType>
  735. </xs:element>
  736. <xs:element name="SetRemoteUserResponse">
  737. <xs:complexType>
  738. <xs:sequence>
  739. </xs:sequence>
  740. </xs:complexType>
  741. </xs:element>
  742. <!--===============================-->
  743. <xs:element name="GetUsers">
  744. <xs:complexType>
  745. <xs:sequence>
  746. </xs:sequence>
  747. </xs:complexType>
  748. </xs:element>
  749. <xs:element name="GetUsersResponse">
  750. <xs:complexType>
  751. <xs:sequence>
  752. <xs:element name="User" type="tt:User" minOccurs="0" maxOccurs="unbounded">
  753. <xs:annotation>
  754. <xs:documentation>Contains a list of the onvif users and following information is included in each entry: username and user level.</xs:documentation>
  755. </xs:annotation>
  756. </xs:element>
  757. </xs:sequence>
  758. </xs:complexType>
  759. </xs:element>
  760. <!--===============================-->
  761. <xs:element name="CreateUsers">
  762. <xs:complexType>
  763. <xs:sequence>
  764. <xs:element name="User" type="tt:User" minOccurs="1" maxOccurs="unbounded">
  765. <xs:annotation>
  766. <xs:documentation>Creates new device users and corresponding credentials. Each user entry includes: username, password and user level. Either all users are created successfully or a fault message MUST be returned without creating any user. If trying to create several users with exactly the same username the request is rejected and no users are created. If password is missing, then fault message Too weak password is returned.</xs:documentation>
  767. </xs:annotation>
  768. </xs:element>
  769. </xs:sequence>
  770. </xs:complexType>
  771. </xs:element>
  772. <xs:element name="CreateUsersResponse">
  773. <xs:complexType>
  774. <xs:sequence>
  775. </xs:sequence>
  776. </xs:complexType>
  777. </xs:element>
  778. <!--===============================-->
  779. <xs:element name="DeleteUsers">
  780. <xs:complexType>
  781. <xs:sequence>
  782. <xs:element name="Username" type="xs:string" minOccurs="1" maxOccurs="unbounded">
  783. <xs:annotation>
  784. <xs:documentation>Deletes users on an device and there may exist users that cannot be deleted to ensure access to the unit. Either all users are deleted successfully or a fault message MUST be returned and no users be deleted. If a username exists multiple times in the request, then a fault message is returned.</xs:documentation>
  785. </xs:annotation>
  786. </xs:element>
  787. </xs:sequence>
  788. </xs:complexType>
  789. </xs:element>
  790. <xs:element name="DeleteUsersResponse">
  791. <xs:complexType>
  792. <xs:sequence>
  793. </xs:sequence>
  794. </xs:complexType>
  795. </xs:element>
  796. <!--===============================-->
  797. <xs:element name="SetUser">
  798. <xs:complexType>
  799. <xs:sequence>
  800. <xs:element name="User" type="tt:User" minOccurs="1" maxOccurs="unbounded">
  801. <xs:annotation>
  802. <xs:documentation>Updates the credentials for one or several users on an device. Either all change requests are processed successfully or a fault message MUST be returned. If the request contains the same username multiple times, a fault message is returned. </xs:documentation>
  803. </xs:annotation>
  804. </xs:element>
  805. </xs:sequence>
  806. </xs:complexType>
  807. </xs:element>
  808. <xs:element name="SetUserResponse">
  809. <xs:complexType>
  810. <xs:sequence>
  811. </xs:sequence>
  812. </xs:complexType>
  813. </xs:element>
  814. <!--===============================-->
  815. <xs:element name="GetWsdlUrl">
  816. <xs:complexType>
  817. <xs:sequence>
  818. </xs:sequence>
  819. </xs:complexType>
  820. </xs:element>
  821. <xs:element name="GetWsdlUrlResponse">
  822. <xs:complexType>
  823. <xs:sequence>
  824. <xs:element name="WsdlUrl" type="xs:anyURI"/>
  825. </xs:sequence>
  826. </xs:complexType>
  827. </xs:element>
  828. <!--===============================-->
  829. <xs:element name="GetCapabilities">
  830. <xs:complexType>
  831. <xs:sequence>
  832. <xs:element name="Category" type="tt:CapabilityCategory" minOccurs="0" maxOccurs="unbounded">
  833. <xs:annotation>
  834. <xs:documentation>
  835. List of categories to retrieve capability information on.
  836. </xs:documentation>
  837. </xs:annotation>
  838. </xs:element>
  839. </xs:sequence>
  840. </xs:complexType>
  841. </xs:element>
  842. <xs:element name="GetCapabilitiesResponse">
  843. <xs:complexType>
  844. <xs:sequence>
  845. <xs:element name="Capabilities" type="tt:Capabilities">
  846. <xs:annotation>
  847. <xs:documentation>
  848. Capability information.
  849. </xs:documentation>
  850. </xs:annotation>
  851. </xs:element>
  852. </xs:sequence>
  853. </xs:complexType>
  854. </xs:element>
  855. <!--===============================-->
  856. <xs:element name="GetHostname">
  857. <xs:complexType>
  858. <xs:sequence>
  859. </xs:sequence>
  860. </xs:complexType>
  861. </xs:element>
  862. <xs:element name="GetHostnameResponse">
  863. <xs:complexType>
  864. <xs:sequence>
  865. <xs:element name="HostnameInformation" type="tt:HostnameInformation">
  866. <xs:annotation>
  867. <xs:documentation>Contains the hostname information.</xs:documentation>
  868. </xs:annotation>
  869. </xs:element>
  870. </xs:sequence>
  871. </xs:complexType>
  872. </xs:element>
  873. <!--===============================-->
  874. <xs:element name="SetHostname">
  875. <xs:complexType>
  876. <xs:sequence>
  877. <xs:element name="Name" type="xs:token">
  878. <xs:annotation>
  879. <xs:documentation>The hostname to set.</xs:documentation>
  880. </xs:annotation>
  881. </xs:element>
  882. </xs:sequence>
  883. </xs:complexType>
  884. </xs:element>
  885. <xs:element name="SetHostnameResponse">
  886. <xs:complexType>
  887. <xs:sequence>
  888. </xs:sequence>
  889. </xs:complexType>
  890. </xs:element>
  891. <!--===============================-->
  892. <xs:element name="SetHostnameFromDHCP">
  893. <xs:complexType>
  894. <xs:sequence>
  895. <xs:element name="FromDHCP" type="xs:boolean">
  896. <xs:annotation>
  897. <xs:documentation>True if the hostname shall be obtained via DHCP.</xs:documentation>
  898. </xs:annotation>
  899. </xs:element>
  900. </xs:sequence>
  901. </xs:complexType>
  902. </xs:element>
  903. <xs:element name="SetHostnameFromDHCPResponse">
  904. <xs:complexType>
  905. <xs:sequence>
  906. <xs:element name="RebootNeeded" type="xs:boolean">
  907. <xs:annotation>
  908. <xs:documentation>
  909. Indicates whether or not a reboot is required after configuration updates.
  910. </xs:documentation>
  911. </xs:annotation>
  912. </xs:element>
  913. </xs:sequence>
  914. </xs:complexType>
  915. </xs:element>
  916. <!--===============================-->
  917. <xs:element name="GetDNS">
  918. <xs:complexType>
  919. <xs:sequence>
  920. </xs:sequence>
  921. </xs:complexType>
  922. </xs:element>
  923. <xs:element name="GetDNSResponse">
  924. <xs:complexType>
  925. <xs:sequence>
  926. <xs:element name="DNSInformation" type="tt:DNSInformation">
  927. <xs:annotation>
  928. <xs:documentation>
  929. DNS information.
  930. </xs:documentation>
  931. </xs:annotation>
  932. </xs:element>
  933. </xs:sequence>
  934. </xs:complexType>
  935. </xs:element>
  936. <!--===============================-->
  937. <xs:element name="SetDNS">
  938. <xs:complexType>
  939. <xs:sequence>
  940. <xs:element name="FromDHCP" type="xs:boolean">
  941. <xs:annotation>
  942. <xs:documentation>
  943. Indicate if the DNS address is to be retrieved using DHCP.
  944. </xs:documentation>
  945. </xs:annotation>
  946. </xs:element>
  947. <xs:element name="SearchDomain" type="xs:token" minOccurs="0" maxOccurs="unbounded">
  948. <xs:annotation>
  949. <xs:documentation>
  950. DNS search domain.
  951. </xs:documentation>
  952. </xs:annotation>
  953. </xs:element>
  954. <xs:element name="DNSManual" type="tt:IPAddress" minOccurs="0" maxOccurs="unbounded">
  955. <xs:annotation>
  956. <xs:documentation>
  957. DNS address(es) set manually.
  958. </xs:documentation>
  959. </xs:annotation>
  960. </xs:element>
  961. </xs:sequence>
  962. </xs:complexType>
  963. </xs:element>
  964. <xs:element name="SetDNSResponse">
  965. <xs:complexType>
  966. <xs:sequence>
  967. </xs:sequence>
  968. </xs:complexType>
  969. </xs:element>
  970. <!--===============================-->
  971. <xs:element name="GetNTP">
  972. <xs:complexType>
  973. <xs:sequence>
  974. </xs:sequence>
  975. </xs:complexType>
  976. </xs:element>
  977. <xs:element name="GetNTPResponse">
  978. <xs:complexType>
  979. <xs:sequence>
  980. <xs:element name="NTPInformation" type="tt:NTPInformation">
  981. <xs:annotation>
  982. <xs:documentation>
  983. NTP information.
  984. </xs:documentation>
  985. </xs:annotation>
  986. </xs:element>
  987. </xs:sequence>
  988. </xs:complexType>
  989. </xs:element>
  990. <!--===============================-->
  991. <xs:element name="SetNTP">
  992. <xs:complexType>
  993. <xs:sequence>
  994. <xs:element name="FromDHCP" type="xs:boolean">
  995. <xs:annotation>
  996. <xs:documentation>
  997. Indicate if NTP address information is to be retrieved using DHCP.
  998. </xs:documentation>
  999. </xs:annotation>
  1000. </xs:element>
  1001. <xs:element name="NTPManual" type="tt:NetworkHost" minOccurs="0" maxOccurs="unbounded">
  1002. <xs:annotation>
  1003. <xs:documentation>
  1004. Manual NTP settings.
  1005. </xs:documentation>
  1006. </xs:annotation>
  1007. </xs:element>
  1008. </xs:sequence>
  1009. </xs:complexType>
  1010. </xs:element>
  1011. <xs:element name="SetNTPResponse">
  1012. <xs:complexType>
  1013. <xs:sequence>
  1014. </xs:sequence>
  1015. </xs:complexType>
  1016. </xs:element>
  1017. <!--===============================-->
  1018. <xs:element name="GetDynamicDNS">
  1019. <xs:complexType>
  1020. <xs:sequence>
  1021. </xs:sequence>
  1022. </xs:complexType>
  1023. </xs:element>
  1024. <xs:element name="GetDynamicDNSResponse">
  1025. <xs:complexType>
  1026. <xs:sequence>
  1027. <xs:element name="DynamicDNSInformation" type="tt:DynamicDNSInformation">
  1028. <xs:annotation>
  1029. <xs:documentation>
  1030. Dynamic DNS information.
  1031. </xs:documentation>
  1032. </xs:annotation>
  1033. </xs:element>
  1034. </xs:sequence>
  1035. </xs:complexType>
  1036. </xs:element>
  1037. <!--===============================-->
  1038. <xs:element name="SetDynamicDNS">
  1039. <xs:complexType>
  1040. <xs:sequence>
  1041. <xs:element name="Type" type="tt:DynamicDNSType">
  1042. <xs:annotation>
  1043. <xs:documentation>
  1044. Dynamic DNS type.
  1045. </xs:documentation>
  1046. </xs:annotation>
  1047. </xs:element>
  1048. <xs:element name="Name" type="tt:DNSName" minOccurs="0">
  1049. <xs:annotation>
  1050. <xs:documentation>
  1051. DNS name.
  1052. </xs:documentation>
  1053. </xs:annotation>
  1054. </xs:element>
  1055. <xs:element name="TTL" type="xs:duration" minOccurs="0">
  1056. <xs:annotation>
  1057. <xs:documentation>
  1058. DNS record time to live.
  1059. </xs:documentation>
  1060. </xs:annotation>
  1061. </xs:element>
  1062. </xs:sequence>
  1063. </xs:complexType>
  1064. </xs:element>
  1065. <xs:element name="SetDynamicDNSResponse">
  1066. <xs:complexType>
  1067. <xs:sequence>
  1068. </xs:sequence>
  1069. </xs:complexType>
  1070. </xs:element>
  1071. <!--===============================-->
  1072. <xs:element name="GetNetworkInterfaces">
  1073. <xs:complexType>
  1074. <xs:sequence>
  1075. </xs:sequence>
  1076. </xs:complexType>
  1077. </xs:element>
  1078. <xs:element name="GetNetworkInterfacesResponse">
  1079. <xs:complexType>
  1080. <xs:sequence>
  1081. <xs:element name="NetworkInterfaces" type="tt:NetworkInterface" minOccurs="1" maxOccurs="unbounded">
  1082. <xs:annotation>
  1083. <xs:documentation>
  1084. List of network interfaces.
  1085. </xs:documentation>
  1086. </xs:annotation>
  1087. </xs:element>
  1088. </xs:sequence>
  1089. </xs:complexType>
  1090. </xs:element>
  1091. <!--===============================-->
  1092. <xs:element name="SetNetworkInterfaces">
  1093. <xs:complexType>
  1094. <xs:sequence>
  1095. <xs:element name="InterfaceToken" type="tt:ReferenceToken">
  1096. <xs:annotation>
  1097. <xs:documentation>
  1098. Symbolic network interface name.
  1099. </xs:documentation>
  1100. </xs:annotation>
  1101. </xs:element>
  1102. <xs:element name="NetworkInterface" type="tt:NetworkInterfaceSetConfiguration">
  1103. <xs:annotation>
  1104. <xs:documentation>
  1105. Network interface name.
  1106. </xs:documentation>
  1107. </xs:annotation>
  1108. </xs:element>
  1109. </xs:sequence>
  1110. </xs:complexType>
  1111. </xs:element>
  1112. <xs:element name="SetNetworkInterfacesResponse">
  1113. <xs:complexType>
  1114. <xs:sequence>
  1115. <xs:element name="RebootNeeded" type="xs:boolean" minOccurs="1" maxOccurs="1">
  1116. <xs:annotation>
  1117. <xs:documentation>
  1118. Indicates whether or not a reboot is required after configuration updates.
  1119. If a device responds with RebootNeeded set to false, the device can be reached
  1120. via the new IP address without further action. A client should be aware that a device
  1121. may not be responsive for a short period of time until it signals availability at
  1122. the new address via the discovery Hello messages.
  1123. If a device responds with RebootNeeded set to true, it will be further available under
  1124. its previous IP address. The settings will only be activated when the device is
  1125. rebooted via the SystemReboot command.
  1126. </xs:documentation>
  1127. </xs:annotation>
  1128. </xs:element>
  1129. </xs:sequence>
  1130. </xs:complexType>
  1131. </xs:element>
  1132. <!--===============================-->
  1133. <xs:element name="GetNetworkProtocols">
  1134. <xs:complexType>
  1135. <xs:sequence>
  1136. </xs:sequence>
  1137. </xs:complexType>
  1138. </xs:element>
  1139. <xs:element name="GetNetworkProtocolsResponse">
  1140. <xs:complexType>
  1141. <xs:sequence>
  1142. <xs:element name="NetworkProtocols" type="tt:NetworkProtocol" minOccurs="0" maxOccurs="unbounded">
  1143. <xs:annotation>
  1144. <xs:documentation>Contains an array of defined protocols supported by the device. There are three protocols defined; HTTP, HTTPS and RTSP. The following parameters can be retrieved for each protocol: port and enable/disable.</xs:documentation>
  1145. </xs:annotation>
  1146. </xs:element>
  1147. </xs:sequence>
  1148. </xs:complexType>
  1149. </xs:element>
  1150. <!--===============================-->
  1151. <xs:element name="SetNetworkProtocols">
  1152. <xs:complexType>
  1153. <xs:sequence>
  1154. <xs:element name="NetworkProtocols" type="tt:NetworkProtocol" minOccurs="1" maxOccurs="unbounded">
  1155. <xs:annotation>
  1156. <xs:documentation>Configures one or more defined network protocols supported by the device. There are currently three protocols defined; HTTP, HTTPS and RTSP. The following parameters can be set for each protocol: port and enable/disable.</xs:documentation>
  1157. </xs:annotation>
  1158. </xs:element>
  1159. </xs:sequence>
  1160. </xs:complexType>
  1161. </xs:element>
  1162. <xs:element name="SetNetworkProtocolsResponse">
  1163. <xs:complexType>
  1164. <xs:sequence>
  1165. </xs:sequence>
  1166. </xs:complexType>
  1167. </xs:element>
  1168. <!--===============================-->
  1169. <xs:element name="GetNetworkDefaultGateway">
  1170. <xs:complexType>
  1171. <xs:sequence>
  1172. </xs:sequence>
  1173. </xs:complexType>
  1174. </xs:element>
  1175. <xs:element name="GetNetworkDefaultGatewayResponse">
  1176. <xs:complexType>
  1177. <xs:sequence>
  1178. <xs:element name="NetworkGateway" type="tt:NetworkGateway">
  1179. <xs:annotation>
  1180. <xs:documentation>Gets the default IPv4 and IPv6 gateway settings from the device.</xs:documentation>
  1181. </xs:annotation>
  1182. </xs:element>
  1183. </xs:sequence>
  1184. </xs:complexType>
  1185. </xs:element>
  1186. <!--===============================-->
  1187. <xs:element name="SetNetworkDefaultGateway">
  1188. <xs:complexType>
  1189. <xs:sequence>
  1190. <xs:element name="IPv4Address" type="tt:IPv4Address" minOccurs="0" maxOccurs="unbounded">
  1191. <xs:annotation>
  1192. <xs:documentation>Sets IPv4 gateway address used as default setting.</xs:documentation>
  1193. </xs:annotation>
  1194. </xs:element>
  1195. <xs:element name="IPv6Address" type="tt:IPv6Address" minOccurs="0" maxOccurs="unbounded">
  1196. <xs:annotation>
  1197. <xs:documentation>Sets IPv6 gateway address used as default setting.</xs:documentation>
  1198. </xs:annotation>
  1199. </xs:element>
  1200. </xs:sequence>
  1201. </xs:complexType>
  1202. </xs:element>
  1203. <xs:element name="SetNetworkDefaultGatewayResponse">
  1204. <xs:complexType>
  1205. <xs:sequence>
  1206. </xs:sequence>
  1207. </xs:complexType>
  1208. </xs:element>
  1209. <!--===============================-->
  1210. <xs:element name="GetZeroConfiguration">
  1211. <xs:complexType>
  1212. <xs:sequence>
  1213. </xs:sequence>
  1214. </xs:complexType>
  1215. </xs:element>
  1216. <xs:element name="GetZeroConfigurationResponse">
  1217. <xs:complexType>
  1218. <xs:sequence>
  1219. <xs:element name="ZeroConfiguration" type="tt:NetworkZeroConfiguration">
  1220. <xs:annotation>
  1221. <xs:documentation>Contains the zero-configuration.</xs:documentation>
  1222. </xs:annotation>
  1223. </xs:element>
  1224. </xs:sequence>
  1225. </xs:complexType>
  1226. </xs:element>
  1227. <!--===============================-->
  1228. <xs:element name="SetZeroConfiguration">
  1229. <xs:complexType>
  1230. <xs:sequence>
  1231. <xs:element name="InterfaceToken" type="tt:ReferenceToken">
  1232. <xs:annotation>
  1233. <xs:documentation>Unique identifier referencing the physical interface.</xs:documentation>
  1234. </xs:annotation>
  1235. </xs:element>
  1236. <xs:element name="Enabled" type="xs:boolean">
  1237. <xs:annotation>
  1238. <xs:documentation>Specifies if the zero-configuration should be enabled or not.</xs:documentation>
  1239. </xs:annotation>
  1240. </xs:element>
  1241. </xs:sequence>
  1242. </xs:complexType>
  1243. </xs:element>
  1244. <xs:element name="SetZeroConfigurationResponse">
  1245. <xs:complexType>
  1246. <xs:sequence>
  1247. </xs:sequence>
  1248. </xs:complexType>
  1249. </xs:element>
  1250. <!--===============================-->
  1251. <xs:element name="GetIPAddressFilter">
  1252. <xs:complexType>
  1253. <xs:sequence>
  1254. </xs:sequence>
  1255. </xs:complexType>
  1256. </xs:element>
  1257. <xs:element name="GetIPAddressFilterResponse">
  1258. <xs:complexType>
  1259. <xs:sequence>
  1260. <xs:element name="IPAddressFilter" type="tt:IPAddressFilter"/>
  1261. </xs:sequence>
  1262. </xs:complexType>
  1263. </xs:element>
  1264. <!--===============================-->
  1265. <xs:element name="SetIPAddressFilter">
  1266. <xs:complexType>
  1267. <xs:sequence>
  1268. <xs:element name="IPAddressFilter" type="tt:IPAddressFilter"/>
  1269. </xs:sequence>
  1270. </xs:complexType>
  1271. </xs:element>
  1272. <xs:element name="SetIPAddressFilterResponse">
  1273. <xs:complexType>
  1274. <xs:sequence>
  1275. </xs:sequence>
  1276. </xs:complexType>
  1277. </xs:element>
  1278. <!--===============================-->
  1279. <xs:element name="AddIPAddressFilter">
  1280. <xs:complexType>
  1281. <xs:sequence>
  1282. <xs:element name="IPAddressFilter" type="tt:IPAddressFilter"/>
  1283. </xs:sequence>
  1284. </xs:complexType>
  1285. </xs:element>
  1286. <xs:element name="AddIPAddressFilterResponse">
  1287. <xs:complexType>
  1288. <xs:sequence>
  1289. </xs:sequence>
  1290. </xs:complexType>
  1291. </xs:element>
  1292. <!--===============================-->
  1293. <xs:element name="RemoveIPAddressFilter">
  1294. <xs:complexType>
  1295. <xs:sequence>
  1296. <xs:element name="IPAddressFilter" type="tt:IPAddressFilter"/>
  1297. </xs:sequence>
  1298. </xs:complexType>
  1299. </xs:element>
  1300. <xs:element name="RemoveIPAddressFilterResponse">
  1301. <xs:complexType>
  1302. <xs:sequence>
  1303. </xs:sequence>
  1304. </xs:complexType>
  1305. </xs:element>
  1306. <!--===============================-->
  1307. <xs:element name="GetAccessPolicy">
  1308. <xs:complexType>
  1309. <xs:sequence>
  1310. </xs:sequence>
  1311. </xs:complexType>
  1312. </xs:element>
  1313. <xs:element name="GetAccessPolicyResponse">
  1314. <xs:complexType>
  1315. <xs:sequence>
  1316. <xs:element name="PolicyFile" type="tt:BinaryData"/>
  1317. </xs:sequence>
  1318. </xs:complexType>
  1319. </xs:element>
  1320. <!--===============================-->
  1321. <xs:element name="SetAccessPolicy">
  1322. <xs:complexType>
  1323. <xs:sequence>
  1324. <xs:element name="PolicyFile" type="tt:BinaryData"/>
  1325. </xs:sequence>
  1326. </xs:complexType>
  1327. </xs:element>
  1328. <xs:element name="SetAccessPolicyResponse">
  1329. <xs:complexType>
  1330. <xs:sequence>
  1331. </xs:sequence>
  1332. </xs:complexType>
  1333. </xs:element>
  1334. <!--===============================-->
  1335. <xs:element name="CreateCertificate">
  1336. <xs:complexType>
  1337. <xs:sequence>
  1338. <xs:element name="CertificateID" type="xs:token" minOccurs="0">
  1339. <xs:annotation>
  1340. <xs:documentation>Certificate id.</xs:documentation>
  1341. </xs:annotation>
  1342. </xs:element>
  1343. <xs:element name="Subject" type="xs:string" minOccurs="0">
  1344. <xs:annotation>
  1345. <xs:documentation>Identification of the entity associated with the public-key.</xs:documentation>
  1346. </xs:annotation>
  1347. </xs:element>
  1348. <xs:element name="ValidNotBefore" type="xs:dateTime" minOccurs="0">
  1349. <xs:annotation>
  1350. <xs:documentation>Certificate validity start date.</xs:documentation>
  1351. </xs:annotation>
  1352. </xs:element>
  1353. <xs:element name="ValidNotAfter" type="xs:dateTime" minOccurs="0">
  1354. <xs:annotation>
  1355. <xs:documentation>Certificate expiry start date.</xs:documentation>
  1356. </xs:annotation>
  1357. </xs:element>
  1358. </xs:sequence>
  1359. </xs:complexType>
  1360. </xs:element>
  1361. <xs:element name="CreateCertificateResponse">
  1362. <xs:complexType>
  1363. <xs:sequence>
  1364. <xs:element name="NvtCertificate" type="tt:Certificate">
  1365. <xs:annotation>
  1366. <xs:documentation>
  1367. base64 encoded DER representation of certificate.
  1368. </xs:documentation>
  1369. </xs:annotation>
  1370. </xs:element>
  1371. </xs:sequence>
  1372. </xs:complexType>
  1373. </xs:element>
  1374. <!--===============================-->
  1375. <xs:element name="GetCertificates">
  1376. <xs:complexType>
  1377. <xs:sequence>
  1378. </xs:sequence>
  1379. </xs:complexType>
  1380. </xs:element>
  1381. <xs:element name="GetCertificatesResponse">
  1382. <xs:complexType>
  1383. <xs:sequence>
  1384. <xs:element name="NvtCertificate" type="tt:Certificate" minOccurs="0" maxOccurs="unbounded">
  1385. <xs:annotation>
  1386. <xs:documentation>
  1387. Id and base64 encoded DER representation of all available certificates.
  1388. </xs:documentation>
  1389. </xs:annotation>
  1390. </xs:element>
  1391. </xs:sequence>
  1392. </xs:complexType>
  1393. </xs:element>
  1394. <!--===============================-->
  1395. <xs:element name="GetCertificatesStatus">
  1396. <xs:complexType>
  1397. <xs:sequence>
  1398. </xs:sequence>
  1399. </xs:complexType>
  1400. </xs:element>
  1401. <xs:element name="GetCertificatesStatusResponse">
  1402. <xs:complexType>
  1403. <xs:sequence>
  1404. <xs:element name="CertificateStatus" type="tt:CertificateStatus" minOccurs="0" maxOccurs="unbounded">
  1405. <xs:annotation>
  1406. <xs:documentation>
  1407. Indicates if a certificate is used in an optional HTTPS configuration of the device.
  1408. </xs:documentation>
  1409. </xs:annotation>
  1410. </xs:element>
  1411. </xs:sequence>
  1412. </xs:complexType>
  1413. </xs:element>
  1414. <!--===============================-->
  1415. <xs:element name="SetCertificatesStatus">
  1416. <xs:complexType>
  1417. <xs:sequence>
  1418. <xs:element name="CertificateStatus" type="tt:CertificateStatus" minOccurs="0" maxOccurs="unbounded">
  1419. <xs:annotation>
  1420. <xs:documentation>
  1421. Indicates if a certificate is to be used in an optional HTTPS configuration of the device.
  1422. </xs:documentation>
  1423. </xs:annotation>
  1424. </xs:element>
  1425. </xs:sequence>
  1426. </xs:complexType>
  1427. </xs:element>
  1428. <xs:element name="SetCertificatesStatusResponse">
  1429. <xs:complexType>
  1430. <xs:sequence>
  1431. </xs:sequence>
  1432. </xs:complexType>
  1433. </xs:element>
  1434. <!--===============================-->
  1435. <xs:element name="DeleteCertificates">
  1436. <xs:complexType>
  1437. <xs:sequence>
  1438. <xs:element name="CertificateID" type="xs:token" minOccurs="1" maxOccurs="unbounded">
  1439. <xs:annotation>
  1440. <xs:documentation>
  1441. List of ids of certificates to delete.
  1442. </xs:documentation>
  1443. </xs:annotation>
  1444. </xs:element>
  1445. </xs:sequence>
  1446. </xs:complexType>
  1447. </xs:element>
  1448. <xs:element name="DeleteCertificatesResponse">
  1449. <xs:complexType>
  1450. <xs:sequence>
  1451. </xs:sequence>
  1452. </xs:complexType>
  1453. </xs:element>
  1454. <!--===============================-->
  1455. <xs:element name="GetPkcs10Request">
  1456. <xs:complexType>
  1457. <xs:sequence>
  1458. <xs:element name="CertificateID" type="xs:token">
  1459. <xs:annotation>
  1460. <xs:documentation>
  1461. List of ids of certificates to delete.
  1462. </xs:documentation>
  1463. </xs:annotation>
  1464. </xs:element>
  1465. <xs:element name="Subject" type="xs:string" minOccurs="0">
  1466. <xs:annotation>
  1467. <xs:documentation>
  1468. Relative Dinstinguished Name(RDN) CommonName(CN).
  1469. </xs:documentation>
  1470. </xs:annotation>
  1471. </xs:element>
  1472. <xs:element name="Attributes" type="tt:BinaryData" minOccurs="0">
  1473. <xs:annotation>
  1474. <xs:documentation>
  1475. Optional base64 encoded DER attributes.
  1476. </xs:documentation>
  1477. </xs:annotation>
  1478. </xs:element>
  1479. </xs:sequence>
  1480. </xs:complexType>
  1481. </xs:element>
  1482. <xs:element name="GetPkcs10RequestResponse">
  1483. <xs:complexType>
  1484. <xs:sequence>
  1485. <xs:element name="Pkcs10Request" type="tt:BinaryData">
  1486. <xs:annotation>
  1487. <xs:documentation>
  1488. base64 encoded DER representation of certificate.
  1489. </xs:documentation>
  1490. </xs:annotation>
  1491. </xs:element>
  1492. </xs:sequence>
  1493. </xs:complexType>
  1494. </xs:element>
  1495. <!--===============================-->
  1496. <xs:element name="LoadCertificates">
  1497. <xs:complexType>
  1498. <xs:sequence>
  1499. <xs:element name="NVTCertificate" type="tt:Certificate" minOccurs="1" maxOccurs="unbounded">
  1500. <xs:annotation>
  1501. <xs:documentation>
  1502. Optional id and base64 encoded DER representation of certificate.
  1503. </xs:documentation>
  1504. </xs:annotation>
  1505. </xs:element>
  1506. </xs:sequence>
  1507. </xs:complexType>
  1508. </xs:element>
  1509. <xs:element name="LoadCertificatesResponse">
  1510. <xs:complexType>
  1511. <xs:sequence>
  1512. </xs:sequence>
  1513. </xs:complexType>
  1514. </xs:element>
  1515. <!--===============================-->
  1516. <xs:element name="GetClientCertificateMode">
  1517. <xs:complexType>
  1518. <xs:sequence>
  1519. </xs:sequence>
  1520. </xs:complexType>
  1521. </xs:element>
  1522. <xs:element name="GetClientCertificateModeResponse">
  1523. <xs:complexType>
  1524. <xs:sequence>
  1525. <xs:element name="Enabled" type="xs:boolean">
  1526. <xs:annotation>
  1527. <xs:documentation>
  1528. Indicates whether or not client certificates are required by device.
  1529. </xs:documentation>
  1530. </xs:annotation>
  1531. </xs:element>
  1532. </xs:sequence>
  1533. </xs:complexType>
  1534. </xs:element>
  1535. <!--===============================-->
  1536. <xs:element name="SetClientCertificateMode">
  1537. <xs:complexType>
  1538. <xs:sequence>
  1539. <xs:element name="Enabled" type="xs:boolean">
  1540. <xs:annotation>
  1541. <xs:documentation>
  1542. Indicates whether or not client certificates are required by device.
  1543. </xs:documentation>
  1544. </xs:annotation>
  1545. </xs:element>
  1546. </xs:sequence>
  1547. </xs:complexType>
  1548. </xs:element>
  1549. <xs:element name="SetClientCertificateModeResponse">
  1550. <xs:complexType>
  1551. <xs:sequence>
  1552. </xs:sequence>
  1553. </xs:complexType>
  1554. </xs:element>
  1555. <!--===============================-->
  1556. <xs:element name="GetCACertificates">
  1557. <xs:complexType>
  1558. <xs:sequence>
  1559. </xs:sequence>
  1560. </xs:complexType>
  1561. </xs:element>
  1562. <xs:element name="GetCACertificatesResponse">
  1563. <xs:complexType>
  1564. <xs:sequence>
  1565. <xs:element name="CACertificate" type="tt:Certificate" minOccurs="0" maxOccurs="unbounded"/>
  1566. </xs:sequence>
  1567. </xs:complexType>
  1568. </xs:element>
  1569. <!--===============================-->
  1570. <xs:element name="LoadCertificateWithPrivateKey">
  1571. <xs:complexType>
  1572. <xs:sequence>
  1573. <xs:element name="CertificateWithPrivateKey" type="tt:CertificateWithPrivateKey" minOccurs="1" maxOccurs="unbounded"/>
  1574. </xs:sequence>
  1575. </xs:complexType>
  1576. </xs:element>
  1577. <xs:element name="LoadCertificateWithPrivateKeyResponse">
  1578. <xs:complexType>
  1579. <xs:sequence>
  1580. </xs:sequence>
  1581. </xs:complexType>
  1582. </xs:element>
  1583. <!--===============================-->
  1584. <xs:element name="GetCertificateInformation">
  1585. <xs:complexType>
  1586. <xs:sequence>
  1587. <xs:element name="CertificateID" type="xs:token" minOccurs="1" maxOccurs="1"/>
  1588. </xs:sequence>
  1589. </xs:complexType>
  1590. </xs:element>
  1591. <xs:element name="GetCertificateInformationResponse">
  1592. <xs:complexType>
  1593. <xs:sequence>
  1594. <xs:element name="CertificateInformation" type="tt:CertificateInformation" minOccurs="1" maxOccurs="1"/>
  1595. </xs:sequence>
  1596. </xs:complexType>
  1597. </xs:element>
  1598. <!--===============================-->
  1599. <xs:element name="LoadCACertificates">
  1600. <xs:complexType>
  1601. <xs:sequence>
  1602. <xs:element name="CACertificate" type="tt:Certificate" minOccurs="1" maxOccurs="unbounded"/>
  1603. </xs:sequence>
  1604. </xs:complexType>
  1605. </xs:element>
  1606. <xs:element name="LoadCACertificatesResponse">
  1607. <xs:complexType>
  1608. <xs:sequence>
  1609. </xs:sequence>
  1610. </xs:complexType>
  1611. </xs:element>
  1612. <!--===============================-->
  1613. <xs:element name="CreateDot1XConfiguration">
  1614. <xs:complexType>
  1615. <xs:sequence>
  1616. <xs:element name="Dot1XConfiguration" type="tt:Dot1XConfiguration" minOccurs="1" maxOccurs="1"/>
  1617. </xs:sequence>
  1618. </xs:complexType>
  1619. </xs:element>
  1620. <xs:element name="CreateDot1XConfigurationResponse">
  1621. <xs:complexType>
  1622. <xs:sequence>
  1623. </xs:sequence>
  1624. </xs:complexType>
  1625. </xs:element>
  1626. <!--===============================-->
  1627. <xs:element name="SetDot1XConfiguration">
  1628. <xs:complexType>
  1629. <xs:sequence>
  1630. <xs:element name="Dot1XConfiguration" type="tt:Dot1XConfiguration" minOccurs="1" maxOccurs="1"/>
  1631. </xs:sequence>
  1632. </xs:complexType>
  1633. </xs:element>
  1634. <xs:element name="SetDot1XConfigurationResponse">
  1635. <xs:complexType>
  1636. <xs:sequence>
  1637. </xs:sequence>
  1638. </xs:complexType>
  1639. </xs:element>
  1640. <!--===============================-->
  1641. <xs:element name="GetDot1XConfiguration">
  1642. <xs:complexType>
  1643. <xs:sequence>
  1644. <xs:element name="Dot1XConfigurationToken" type="tt:ReferenceToken" minOccurs="1" maxOccurs="1"/>
  1645. </xs:sequence>
  1646. </xs:complexType>
  1647. </xs:element>
  1648. <xs:element name="GetDot1XConfigurationResponse">
  1649. <xs:complexType>
  1650. <xs:sequence>
  1651. <xs:element name="Dot1XConfiguration" type="tt:Dot1XConfiguration" minOccurs="1" maxOccurs="1"/>
  1652. </xs:sequence>
  1653. </xs:complexType>
  1654. </xs:element>
  1655. <!--===============================-->
  1656. <xs:element name="GetDot1XConfigurations">
  1657. <xs:complexType>
  1658. <xs:sequence>
  1659. </xs:sequence>
  1660. </xs:complexType>
  1661. </xs:element>
  1662. <xs:element name="GetDot1XConfigurationsResponse">
  1663. <xs:complexType>
  1664. <xs:sequence>
  1665. <xs:element name="Dot1XConfiguration" type="tt:Dot1XConfiguration" minOccurs="0" maxOccurs="unbounded"/>
  1666. </xs:sequence>
  1667. </xs:complexType>
  1668. </xs:element>
  1669. <!--===============================-->
  1670. <xs:element name="DeleteDot1XConfiguration">
  1671. <xs:complexType>
  1672. <xs:sequence>
  1673. <xs:element name="Dot1XConfigurationToken" type="tt:ReferenceToken" minOccurs="0" maxOccurs="unbounded"/>
  1674. </xs:sequence>
  1675. </xs:complexType>
  1676. </xs:element>
  1677. <xs:element name="DeleteDot1XConfigurationResponse">
  1678. <xs:complexType>
  1679. <xs:sequence>
  1680. </xs:sequence>
  1681. </xs:complexType>
  1682. </xs:element>
  1683. <!--===============================-->
  1684. <xs:element name="GetRelayOutputs">
  1685. <xs:complexType>
  1686. <xs:sequence>
  1687. </xs:sequence>
  1688. </xs:complexType>
  1689. </xs:element>
  1690. <xs:element name="GetRelayOutputsResponse">
  1691. <xs:complexType>
  1692. <xs:sequence>
  1693. <xs:element name="RelayOutputs" type="tt:RelayOutput" minOccurs="0" maxOccurs="unbounded"/>
  1694. </xs:sequence>
  1695. </xs:complexType>
  1696. </xs:element>
  1697. <!--===============================-->
  1698. <xs:element name="SetRelayOutputSettings">
  1699. <xs:complexType>
  1700. <xs:sequence>
  1701. <xs:element name="RelayOutputToken" type="tt:ReferenceToken"/>
  1702. <xs:element name="Properties" type="tt:RelayOutputSettings"/>
  1703. </xs:sequence>
  1704. </xs:complexType>
  1705. </xs:element>
  1706. <xs:element name="SetRelayOutputSettingsResponse">
  1707. <xs:complexType>
  1708. <xs:sequence>
  1709. </xs:sequence>
  1710. </xs:complexType>
  1711. </xs:element>
  1712. <!--===============================-->
  1713. <xs:element name="SetRelayOutputState">
  1714. <xs:complexType>
  1715. <xs:sequence>
  1716. <xs:element name="RelayOutputToken" type="tt:ReferenceToken" minOccurs="1" maxOccurs="1"/>
  1717. <xs:element name="LogicalState" type="tt:RelayLogicalState" minOccurs="1" maxOccurs="1"/>
  1718. </xs:sequence>
  1719. </xs:complexType>
  1720. </xs:element>
  1721. <xs:element name="SetRelayOutputStateResponse">
  1722. <xs:complexType>
  1723. <xs:sequence>
  1724. </xs:sequence>
  1725. </xs:complexType>
  1726. </xs:element>
  1727. <!--===============================-->
  1728. <xs:element name="SendAuxiliaryCommand">
  1729. <xs:complexType>
  1730. <xs:sequence>
  1731. <xs:element name="AuxiliaryCommand" type="tt:AuxiliaryData" minOccurs="1" maxOccurs="1"/>
  1732. </xs:sequence>
  1733. </xs:complexType>
  1734. </xs:element>
  1735. <xs:element name="SendAuxiliaryCommandResponse">
  1736. <xs:complexType>
  1737. <xs:sequence>
  1738. <xs:element name="AuxiliaryCommandResponse" type="tt:AuxiliaryData" minOccurs="0" maxOccurs="1"/>
  1739. </xs:sequence>
  1740. </xs:complexType>
  1741. </xs:element>
  1742. <!--===============================-->
  1743. <xs:element name="GetDot11Capabilities">
  1744. <xs:complexType>
  1745. <xs:sequence>
  1746. <xs:any namespace="##any" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
  1747. </xs:sequence>
  1748. </xs:complexType>
  1749. </xs:element>
  1750. <xs:element name="GetDot11CapabilitiesResponse">
  1751. <xs:complexType>
  1752. <xs:sequence>
  1753. <xs:element name="Capabilities" type="tt:Dot11Capabilities"/>
  1754. </xs:sequence>
  1755. </xs:complexType>
  1756. </xs:element>
  1757. <!--===============================-->
  1758. <xs:element name="GetDot11Status">
  1759. <xs:complexType>
  1760. <xs:sequence>
  1761. <xs:element name="InterfaceToken" type="tt:ReferenceToken"/>
  1762. </xs:sequence>
  1763. </xs:complexType>
  1764. </xs:element>
  1765. <xs:element name="GetDot11StatusResponse">
  1766. <xs:complexType>
  1767. <xs:sequence>
  1768. <xs:element name="Status" type="tt:Dot11Status"/>
  1769. </xs:sequence>
  1770. </xs:complexType>
  1771. </xs:element>
  1772. <!--===============================-->
  1773. <xs:element name="ScanAvailableDot11Networks">
  1774. <xs:complexType>
  1775. <xs:sequence>
  1776. <xs:element name="InterfaceToken" type="tt:ReferenceToken"/>
  1777. </xs:sequence>
  1778. </xs:complexType>
  1779. </xs:element>
  1780. <xs:element name="ScanAvailableDot11NetworksResponse">
  1781. <xs:complexType>
  1782. <xs:sequence>
  1783. <xs:element name="Networks" type="tt:Dot11AvailableNetworks" minOccurs="0" maxOccurs="unbounded"/>
  1784. </xs:sequence>
  1785. </xs:complexType>
  1786. </xs:element>
  1787. <!--===============================-->
  1788. <xs:element name="GetSystemUris">
  1789. <xs:complexType>
  1790. <xs:sequence/>
  1791. </xs:complexType>
  1792. </xs:element>
  1793. <xs:element name="GetSystemUrisResponse">
  1794. <xs:complexType>
  1795. <xs:sequence>
  1796. <xs:element name="SystemLogUris" type="tt:SystemLogUriList" minOccurs="0" maxOccurs="1"/>
  1797. <xs:element name="SupportInfoUri" type="xs:anyURI" minOccurs="0" maxOccurs="1"/>
  1798. <xs:element name="SystemBackupUri" type="xs:anyURI" minOccurs="0" maxOccurs="1"/>
  1799. <xs:element name="Extension" minOccurs="0">
  1800. <xs:complexType>
  1801. <xs:sequence>
  1802. <xs:any namespace="##any" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
  1803. </xs:sequence>
  1804. </xs:complexType>
  1805. </xs:element>
  1806. </xs:sequence>
  1807. </xs:complexType>
  1808. </xs:element>
  1809. <!--===============================-->
  1810. <xs:element name="StartFirmwareUpgrade">
  1811. <xs:complexType>
  1812. <xs:sequence/>
  1813. </xs:complexType>
  1814. </xs:element>
  1815. <xs:element name="StartFirmwareUpgradeResponse">
  1816. <xs:complexType>
  1817. <xs:sequence>
  1818. <xs:element name="UploadUri" type="xs:anyURI"/>
  1819. <xs:element name="UploadDelay" type="xs:duration"/>
  1820. <xs:element name="ExpectedDownTime" type="xs:duration"/>
  1821. </xs:sequence>
  1822. </xs:complexType>
  1823. </xs:element>
  1824. <!--===============================-->
  1825. <xs:element name="StartSystemRestore">
  1826. <xs:complexType>
  1827. <xs:sequence/>
  1828. </xs:complexType>
  1829. </xs:element>
  1830. <xs:element name="StartSystemRestoreResponse">
  1831. <xs:complexType>
  1832. <xs:sequence>
  1833. <xs:element name="UploadUri" type="xs:anyURI"/>
  1834. <xs:element name="ExpectedDownTime" type="xs:duration"/>
  1835. </xs:sequence>
  1836. </xs:complexType>
  1837. </xs:element>
  1838. </xs:schema>
  1839. </wsdl:types>
  1840. <wsdl:message name="GetServicesRequest">
  1841. <wsdl:part name="parameters" element="tds:GetServices"/>
  1842. </wsdl:message>
  1843. <wsdl:message name="GetServicesResponse">
  1844. <wsdl:part name="parameters" element="tds:GetServicesResponse"/>
  1845. </wsdl:message>
  1846. <wsdl:message name="GetServiceCapabilitiesRequest">
  1847. <wsdl:part name="parameters" element="tds:GetServiceCapabilities"/>
  1848. </wsdl:message>
  1849. <wsdl:message name="GetServiceCapabilitiesResponse">
  1850. <wsdl:part name="parameters" element="tds:GetServiceCapabilitiesResponse"/>
  1851. </wsdl:message>
  1852. <wsdl:message name="GetDeviceInformationRequest">
  1853. <wsdl:part name="parameters" element="tds:GetDeviceInformation"/>
  1854. </wsdl:message>
  1855. <wsdl:message name="GetDeviceInformationResponse">
  1856. <wsdl:part name="parameters" element="tds:GetDeviceInformationResponse"/>
  1857. </wsdl:message>
  1858. <wsdl:message name="SetSystemDateAndTimeRequest">
  1859. <wsdl:part name="parameters" element="tds:SetSystemDateAndTime"/>
  1860. </wsdl:message>
  1861. <wsdl:message name="SetSystemDateAndTimeResponse">
  1862. <wsdl:part name="parameters" element="tds:SetSystemDateAndTimeResponse"/>
  1863. </wsdl:message>
  1864. <wsdl:message name="GetSystemDateAndTimeRequest">
  1865. <wsdl:part name="parameters" element="tds:GetSystemDateAndTime"/>
  1866. </wsdl:message>
  1867. <wsdl:message name="GetSystemDateAndTimeResponse">
  1868. <wsdl:part name="parameters" element="tds:GetSystemDateAndTimeResponse"/>
  1869. </wsdl:message>
  1870. <wsdl:message name="SetSystemFactoryDefaultRequest">
  1871. <wsdl:part name="parameters" element="tds:SetSystemFactoryDefault"/>
  1872. </wsdl:message>
  1873. <wsdl:message name="SetSystemFactoryDefaultResponse">
  1874. <wsdl:part name="parameters" element="tds:SetSystemFactoryDefaultResponse"/>
  1875. </wsdl:message>
  1876. <wsdl:message name="UpgradeSystemFirmwareRequest">
  1877. <wsdl:part name="parameters" element="tds:UpgradeSystemFirmware"/>
  1878. </wsdl:message>
  1879. <wsdl:message name="UpgradeSystemFirmwareResponse">
  1880. <wsdl:part name="parameters" element="tds:UpgradeSystemFirmwareResponse"/>
  1881. </wsdl:message>
  1882. <wsdl:message name="SystemRebootRequest">
  1883. <wsdl:part name="parameters" element="tds:SystemReboot"/>
  1884. </wsdl:message>
  1885. <wsdl:message name="SystemRebootResponse">
  1886. <wsdl:part name="parameters" element="tds:SystemRebootResponse"/>
  1887. </wsdl:message>
  1888. <wsdl:message name="GetSystemBackupRequest">
  1889. <wsdl:part name="parameters" element="tds:GetSystemBackup"/>
  1890. </wsdl:message>
  1891. <wsdl:message name="GetSystemBackupResponse">
  1892. <wsdl:part name="parameters" element="tds:GetSystemBackupResponse"/>
  1893. </wsdl:message>
  1894. <wsdl:message name="RestoreSystemRequest">
  1895. <wsdl:part name="parameters" element="tds:RestoreSystem"/>
  1896. </wsdl:message>
  1897. <wsdl:message name="RestoreSystemResponse">
  1898. <wsdl:part name="parameters" element="tds:RestoreSystemResponse"/>
  1899. </wsdl:message>
  1900. <wsdl:message name="GetSystemSupportInformationRequest">
  1901. <wsdl:part name="parameters" element="tds:GetSystemSupportInformation"/>
  1902. </wsdl:message>
  1903. <wsdl:message name="GetSystemSupportInformationResponse">
  1904. <wsdl:part name="parameters" element="tds:GetSystemSupportInformationResponse"/>
  1905. </wsdl:message>
  1906. <wsdl:message name="GetSystemLogRequest">
  1907. <wsdl:part name="parameters" element="tds:GetSystemLog"/>
  1908. </wsdl:message>
  1909. <wsdl:message name="GetSystemLogResponse">
  1910. <wsdl:part name="parameters" element="tds:GetSystemLogResponse"/>
  1911. </wsdl:message>
  1912. <wsdl:message name="GetScopesRequest">
  1913. <wsdl:part name="parameters" element="tds:GetScopes"/>
  1914. </wsdl:message>
  1915. <wsdl:message name="GetScopesResponse">
  1916. <wsdl:part name="parameters" element="tds:GetScopesResponse"/>
  1917. </wsdl:message>
  1918. <wsdl:message name="SetScopesRequest">
  1919. <wsdl:part name="parameters" element="tds:SetScopes"/>
  1920. </wsdl:message>
  1921. <wsdl:message name="SetScopesResponse">
  1922. <wsdl:part name="parameters" element="tds:SetScopesResponse"/>
  1923. </wsdl:message>
  1924. <wsdl:message name="AddScopesRequest">
  1925. <wsdl:part name="parameters" element="tds:AddScopes"/>
  1926. </wsdl:message>
  1927. <wsdl:message name="AddScopesResponse">
  1928. <wsdl:part name="parameters" element="tds:AddScopesResponse"/>
  1929. </wsdl:message>
  1930. <wsdl:message name="RemoveScopesRequest">
  1931. <wsdl:part name="parameters" element="tds:RemoveScopes"/>
  1932. </wsdl:message>
  1933. <wsdl:message name="RemoveScopesResponse">
  1934. <wsdl:part name="parameters" element="tds:RemoveScopesResponse"/>
  1935. </wsdl:message>
  1936. <wsdl:message name="GetDiscoveryModeRequest">
  1937. <wsdl:part name="parameters" element="tds:GetDiscoveryMode"/>
  1938. </wsdl:message>
  1939. <wsdl:message name="GetDiscoveryModeResponse">
  1940. <wsdl:part name="parameters" element="tds:GetDiscoveryModeResponse"/>
  1941. </wsdl:message>
  1942. <wsdl:message name="SetDiscoveryModeRequest">
  1943. <wsdl:part name="parameters" element="tds:SetDiscoveryMode"/>
  1944. </wsdl:message>
  1945. <wsdl:message name="SetDiscoveryModeResponse">
  1946. <wsdl:part name="parameters" element="tds:SetDiscoveryModeResponse"/>
  1947. </wsdl:message>
  1948. <wsdl:message name="GetRemoteDiscoveryModeRequest">
  1949. <wsdl:part name="parameters" element="tds:GetRemoteDiscoveryMode"/>
  1950. </wsdl:message>
  1951. <wsdl:message name="GetRemoteDiscoveryModeResponse">
  1952. <wsdl:part name="parameters" element="tds:GetRemoteDiscoveryModeResponse"/>
  1953. </wsdl:message>
  1954. <wsdl:message name="SetRemoteDiscoveryModeRequest">
  1955. <wsdl:part name="parameters" element="tds:SetRemoteDiscoveryMode"/>
  1956. </wsdl:message>
  1957. <wsdl:message name="SetRemoteDiscoveryModeResponse">
  1958. <wsdl:part name="parameters" element="tds:SetRemoteDiscoveryModeResponse"/>
  1959. </wsdl:message>
  1960. <wsdl:message name="GetDPAddressesRequest">
  1961. <wsdl:part name="parameters" element="tds:GetDPAddresses"/>
  1962. </wsdl:message>
  1963. <wsdl:message name="GetDPAddressesResponse">
  1964. <wsdl:part name="parameters" element="tds:GetDPAddressesResponse"/>
  1965. </wsdl:message>
  1966. <wsdl:message name="SetDPAddressesRequest">
  1967. <wsdl:part name="parameters" element="tds:SetDPAddresses"/>
  1968. </wsdl:message>
  1969. <wsdl:message name="SetDPAddressesResponse">
  1970. <wsdl:part name="parameters" element="tds:SetDPAddressesResponse"/>
  1971. </wsdl:message>
  1972. <wsdl:message name="GetEndpointReferenceRequest">
  1973. <wsdl:part name="parameters" element="tds:GetEndpointReference"/>
  1974. </wsdl:message>
  1975. <wsdl:message name="GetEndpointReferenceResponse">
  1976. <wsdl:part name="parameters" element="tds:GetEndpointReferenceResponse"/>
  1977. </wsdl:message>
  1978. <wsdl:message name="GetRemoteUserRequest">
  1979. <wsdl:part name="parameters" element="tds:GetRemoteUser"/>
  1980. </wsdl:message>
  1981. <wsdl:message name="GetRemoteUserResponse">
  1982. <wsdl:part name="parameters" element="tds:GetRemoteUserResponse"/>
  1983. </wsdl:message>
  1984. <wsdl:message name="SetRemoteUserRequest">
  1985. <wsdl:part name="parameters" element="tds:SetRemoteUser"/>
  1986. </wsdl:message>
  1987. <wsdl:message name="SetRemoteUserResponse">
  1988. <wsdl:part name="parameters" element="tds:SetRemoteUserResponse"/>
  1989. </wsdl:message>
  1990. <wsdl:message name="GetUsersRequest">
  1991. <wsdl:part name="parameters" element="tds:GetUsers"/>
  1992. </wsdl:message>
  1993. <wsdl:message name="GetUsersResponse">
  1994. <wsdl:part name="parameters" element="tds:GetUsersResponse"/>
  1995. </wsdl:message>
  1996. <wsdl:message name="CreateUsersRequest">
  1997. <wsdl:part name="parameters" element="tds:CreateUsers"/>
  1998. </wsdl:message>
  1999. <wsdl:message name="CreateUsersResponse">
  2000. <wsdl:part name="parameters" element="tds:CreateUsersResponse"/>
  2001. </wsdl:message>
  2002. <wsdl:message name="DeleteUsersRequest">
  2003. <wsdl:part name="parameters" element="tds:DeleteUsers"/>
  2004. </wsdl:message>
  2005. <wsdl:message name="DeleteUsersResponse">
  2006. <wsdl:part name="parameters" element="tds:DeleteUsersResponse"/>
  2007. </wsdl:message>
  2008. <wsdl:message name="SetUserRequest">
  2009. <wsdl:part name="parameters" element="tds:SetUser"/>
  2010. </wsdl:message>
  2011. <wsdl:message name="SetUserResponse">
  2012. <wsdl:part name="parameters" element="tds:SetUserResponse"/>
  2013. </wsdl:message>
  2014. <wsdl:message name="GetWsdlUrlRequest">
  2015. <wsdl:part name="parameters" element="tds:GetWsdlUrl"/>
  2016. </wsdl:message>
  2017. <wsdl:message name="GetWsdlUrlResponse">
  2018. <wsdl:part name="parameters" element="tds:GetWsdlUrlResponse"/>
  2019. </wsdl:message>
  2020. <wsdl:message name="GetCapabilitiesRequest">
  2021. <wsdl:part name="parameters" element="tds:GetCapabilities"/>
  2022. </wsdl:message>
  2023. <wsdl:message name="GetCapabilitiesResponse">
  2024. <wsdl:part name="parameters" element="tds:GetCapabilitiesResponse"/>
  2025. </wsdl:message>
  2026. <wsdl:message name="GetHostnameRequest">
  2027. <wsdl:part name="parameters" element="tds:GetHostname"/>
  2028. </wsdl:message>
  2029. <wsdl:message name="GetHostnameResponse">
  2030. <wsdl:part name="parameters" element="tds:GetHostnameResponse"/>
  2031. </wsdl:message>
  2032. <wsdl:message name="SetHostnameRequest">
  2033. <wsdl:part name="parameters" element="tds:SetHostname"/>
  2034. </wsdl:message>
  2035. <wsdl:message name="SetHostnameResponse">
  2036. <wsdl:part name="parameters" element="tds:SetHostnameResponse"/>
  2037. </wsdl:message>
  2038. <wsdl:message name="SetHostnameFromDHCPRequest">
  2039. <wsdl:part name="parameters" element="tds:SetHostnameFromDHCP"/>
  2040. </wsdl:message>
  2041. <wsdl:message name="SetHostnameFromDHCPResponse">
  2042. <wsdl:part name="parameters" element="tds:SetHostnameFromDHCPResponse"/>
  2043. </wsdl:message>
  2044. <wsdl:message name="GetDNSRequest">
  2045. <wsdl:part name="parameters" element="tds:GetDNS"/>
  2046. </wsdl:message>
  2047. <wsdl:message name="GetDNSResponse">
  2048. <wsdl:part name="parameters" element="tds:GetDNSResponse"/>
  2049. </wsdl:message>
  2050. <wsdl:message name="SetDNSRequest">
  2051. <wsdl:part name="parameters" element="tds:SetDNS"/>
  2052. </wsdl:message>
  2053. <wsdl:message name="SetDNSResponse">
  2054. <wsdl:part name="parameters" element="tds:SetDNSResponse"/>
  2055. </wsdl:message>
  2056. <wsdl:message name="GetNTPRequest">
  2057. <wsdl:part name="parameters" element="tds:GetNTP"/>
  2058. </wsdl:message>
  2059. <wsdl:message name="GetNTPResponse">
  2060. <wsdl:part name="parameters" element="tds:GetNTPResponse"/>
  2061. </wsdl:message>
  2062. <wsdl:message name="SetNTPRequest">
  2063. <wsdl:part name="parameters" element="tds:SetNTP"/>
  2064. </wsdl:message>
  2065. <wsdl:message name="SetNTPResponse">
  2066. <wsdl:part name="parameters" element="tds:SetNTPResponse"/>
  2067. </wsdl:message>
  2068. <wsdl:message name="GetDynamicDNSRequest">
  2069. <wsdl:part name="parameters" element="tds:GetDynamicDNS"/>
  2070. </wsdl:message>
  2071. <wsdl:message name="GetDynamicDNSResponse">
  2072. <wsdl:part name="parameters" element="tds:GetDynamicDNSResponse"/>
  2073. </wsdl:message>
  2074. <wsdl:message name="SetDynamicDNSRequest">
  2075. <wsdl:part name="parameters" element="tds:SetDynamicDNS"/>
  2076. </wsdl:message>
  2077. <wsdl:message name="SetDynamicDNSResponse">
  2078. <wsdl:part name="parameters" element="tds:SetDynamicDNSResponse"/>
  2079. </wsdl:message>
  2080. <wsdl:message name="GetNetworkInterfacesRequest">
  2081. <wsdl:part name="parameters" element="tds:GetNetworkInterfaces"/>
  2082. </wsdl:message>
  2083. <wsdl:message name="GetNetworkInterfacesResponse">
  2084. <wsdl:part name="parameters" element="tds:GetNetworkInterfacesResponse"/>
  2085. </wsdl:message>
  2086. <wsdl:message name="SetNetworkInterfacesRequest">
  2087. <wsdl:part name="parameters" element="tds:SetNetworkInterfaces"/>
  2088. </wsdl:message>
  2089. <wsdl:message name="SetNetworkInterfacesResponse">
  2090. <wsdl:part name="parameters" element="tds:SetNetworkInterfacesResponse"/>
  2091. </wsdl:message>
  2092. <wsdl:message name="GetNetworkProtocolsRequest">
  2093. <wsdl:part name="parameters" element="tds:GetNetworkProtocols"/>
  2094. </wsdl:message>
  2095. <wsdl:message name="GetNetworkProtocolsResponse">
  2096. <wsdl:part name="parameters" element="tds:GetNetworkProtocolsResponse"/>
  2097. </wsdl:message>
  2098. <wsdl:message name="SetNetworkProtocolsRequest">
  2099. <wsdl:part name="parameters" element="tds:SetNetworkProtocols"/>
  2100. </wsdl:message>
  2101. <wsdl:message name="SetNetworkProtocolsResponse">
  2102. <wsdl:part name="parameters" element="tds:SetNetworkProtocolsResponse"/>
  2103. </wsdl:message>
  2104. <wsdl:message name="GetNetworkDefaultGatewayRequest">
  2105. <wsdl:part name="parameters" element="tds:GetNetworkDefaultGateway"/>
  2106. </wsdl:message>
  2107. <wsdl:message name="GetNetworkDefaultGatewayResponse">
  2108. <wsdl:part name="parameters" element="tds:GetNetworkDefaultGatewayResponse"/>
  2109. </wsdl:message>
  2110. <wsdl:message name="SetNetworkDefaultGatewayRequest">
  2111. <wsdl:part name="parameters" element="tds:SetNetworkDefaultGateway"/>
  2112. </wsdl:message>
  2113. <wsdl:message name="SetNetworkDefaultGatewayResponse">
  2114. <wsdl:part name="parameters" element="tds:SetNetworkDefaultGatewayResponse"/>
  2115. </wsdl:message>
  2116. <wsdl:message name="GetZeroConfigurationRequest">
  2117. <wsdl:part name="parameters" element="tds:GetZeroConfiguration"/>
  2118. </wsdl:message>
  2119. <wsdl:message name="GetZeroConfigurationResponse">
  2120. <wsdl:part name="parameters" element="tds:GetZeroConfigurationResponse"/>
  2121. </wsdl:message>
  2122. <wsdl:message name="SetZeroConfigurationRequest">
  2123. <wsdl:part name="parameters" element="tds:SetZeroConfiguration"/>
  2124. </wsdl:message>
  2125. <wsdl:message name="SetZeroConfigurationResponse">
  2126. <wsdl:part name="parameters" element="tds:SetZeroConfigurationResponse"/>
  2127. </wsdl:message>
  2128. <wsdl:message name="GetIPAddressFilterRequest">
  2129. <wsdl:part name="parameters" element="tds:GetIPAddressFilter"/>
  2130. </wsdl:message>
  2131. <wsdl:message name="GetIPAddressFilterResponse">
  2132. <wsdl:part name="parameters" element="tds:GetIPAddressFilterResponse"/>
  2133. </wsdl:message>
  2134. <wsdl:message name="SetIPAddressFilterRequest">
  2135. <wsdl:part name="parameters" element="tds:SetIPAddressFilter"/>
  2136. </wsdl:message>
  2137. <wsdl:message name="SetIPAddressFilterResponse">
  2138. <wsdl:part name="parameters" element="tds:SetIPAddressFilterResponse"/>
  2139. </wsdl:message>
  2140. <wsdl:message name="AddIPAddressFilterRequest">
  2141. <wsdl:part name="parameters" element="tds:AddIPAddressFilter"/>
  2142. </wsdl:message>
  2143. <wsdl:message name="AddIPAddressFilterResponse">
  2144. <wsdl:part name="parameters" element="tds:AddIPAddressFilterResponse"/>
  2145. </wsdl:message>
  2146. <wsdl:message name="RemoveIPAddressFilterRequest">
  2147. <wsdl:part name="parameters" element="tds:RemoveIPAddressFilter"/>
  2148. </wsdl:message>
  2149. <wsdl:message name="RemoveIPAddressFilterResponse">
  2150. <wsdl:part name="parameters" element="tds:RemoveIPAddressFilterResponse"/>
  2151. </wsdl:message>
  2152. <wsdl:message name="GetAccessPolicyRequest">
  2153. <wsdl:part name="parameters" element="tds:GetAccessPolicy"/>
  2154. </wsdl:message>
  2155. <wsdl:message name="GetAccessPolicyResponse">
  2156. <wsdl:part name="parameters" element="tds:GetAccessPolicyResponse"/>
  2157. </wsdl:message>
  2158. <wsdl:message name="SetAccessPolicyRequest">
  2159. <wsdl:part name="parameters" element="tds:SetAccessPolicy"/>
  2160. </wsdl:message>
  2161. <wsdl:message name="SetAccessPolicyResponse">
  2162. <wsdl:part name="parameters" element="tds:SetAccessPolicyResponse"/>
  2163. </wsdl:message>
  2164. <wsdl:message name="CreateCertificateRequest">
  2165. <wsdl:part name="parameters" element="tds:CreateCertificate"/>
  2166. </wsdl:message>
  2167. <wsdl:message name="CreateCertificateResponse">
  2168. <wsdl:part name="parameters" element="tds:CreateCertificateResponse"/>
  2169. </wsdl:message>
  2170. <wsdl:message name="GetCertificatesRequest">
  2171. <wsdl:part name="parameters" element="tds:GetCertificates"/>
  2172. </wsdl:message>
  2173. <wsdl:message name="GetCertificatesResponse">
  2174. <wsdl:part name="parameters" element="tds:GetCertificatesResponse"/>
  2175. </wsdl:message>
  2176. <wsdl:message name="GetCertificatesStatusRequest">
  2177. <wsdl:part name="parameters" element="tds:GetCertificatesStatus"/>
  2178. </wsdl:message>
  2179. <wsdl:message name="GetCertificatesStatusResponse">
  2180. <wsdl:part name="parameters" element="tds:GetCertificatesStatusResponse"/>
  2181. </wsdl:message>
  2182. <wsdl:message name="SetCertificatesStatusRequest">
  2183. <wsdl:part name="parameters" element="tds:SetCertificatesStatus"/>
  2184. </wsdl:message>
  2185. <wsdl:message name="SetCertificatesStatusResponse">
  2186. <wsdl:part name="parameters" element="tds:SetCertificatesStatusResponse"/>
  2187. </wsdl:message>
  2188. <wsdl:message name="DeleteCertificatesRequest">
  2189. <wsdl:part name="parameters" element="tds:DeleteCertificates"/>
  2190. </wsdl:message>
  2191. <wsdl:message name="DeleteCertificatesResponse">
  2192. <wsdl:part name="parameters" element="tds:DeleteCertificatesResponse"/>
  2193. </wsdl:message>
  2194. <wsdl:message name="GetPkcs10RequestRequest">
  2195. <wsdl:part name="parameters" element="tds:GetPkcs10Request"/>
  2196. </wsdl:message>
  2197. <wsdl:message name="GetPkcs10RequestResponse">
  2198. <wsdl:part name="parameters" element="tds:GetPkcs10RequestResponse"/>
  2199. </wsdl:message>
  2200. <wsdl:message name="LoadCertificatesRequest">
  2201. <wsdl:part name="parameters" element="tds:LoadCertificates"/>
  2202. </wsdl:message>
  2203. <wsdl:message name="LoadCertificatesResponse">
  2204. <wsdl:part name="parameters" element="tds:LoadCertificatesResponse"/>
  2205. </wsdl:message>
  2206. <wsdl:message name="GetClientCertificateModeRequest">
  2207. <wsdl:part name="parameters" element="tds:GetClientCertificateMode"/>
  2208. </wsdl:message>
  2209. <wsdl:message name="GetClientCertificateModeResponse">
  2210. <wsdl:part name="parameters" element="tds:GetClientCertificateModeResponse"/>
  2211. </wsdl:message>
  2212. <wsdl:message name="SetClientCertificateModeRequest">
  2213. <wsdl:part name="parameters" element="tds:SetClientCertificateMode"/>
  2214. </wsdl:message>
  2215. <wsdl:message name="SetClientCertificateModeResponse">
  2216. <wsdl:part name="parameters" element="tds:SetClientCertificateModeResponse"/>
  2217. </wsdl:message>
  2218. <wsdl:message name="GetRelayOutputsRequest">
  2219. <wsdl:part name="parameters" element="tds:GetRelayOutputs"/>
  2220. </wsdl:message>
  2221. <wsdl:message name="GetRelayOutputsResponse">
  2222. <wsdl:part name="parameters" element="tds:GetRelayOutputsResponse"/>
  2223. </wsdl:message>
  2224. <wsdl:message name="SetRelayOutputSettingsRequest">
  2225. <wsdl:part name="parameters" element="tds:SetRelayOutputSettings"/>
  2226. </wsdl:message>
  2227. <wsdl:message name="SetRelayOutputSettingsResponse">
  2228. <wsdl:part name="parameters" element="tds:SetRelayOutputSettingsResponse"/>
  2229. </wsdl:message>
  2230. <wsdl:message name="SetRelayOutputStateRequest">
  2231. <wsdl:part name="parameters" element="tds:SetRelayOutputState"/>
  2232. </wsdl:message>
  2233. <wsdl:message name="SetRelayOutputStateResponse">
  2234. <wsdl:part name="parameters" element="tds:SetRelayOutputStateResponse"/>
  2235. </wsdl:message>
  2236. <wsdl:message name="SendAuxiliaryCommandRequest">
  2237. <wsdl:part name="parameters" element="tds:SendAuxiliaryCommand"/>
  2238. </wsdl:message>
  2239. <wsdl:message name="SendAuxiliaryCommandResponse">
  2240. <wsdl:part name="parameters" element="tds:SendAuxiliaryCommandResponse"/>
  2241. </wsdl:message>
  2242. <wsdl:message name="GetCACertificatesRequest">
  2243. <wsdl:part name="parameters" element="tds:GetCACertificates"/>
  2244. </wsdl:message>
  2245. <wsdl:message name="GetCACertificatesResponse">
  2246. <wsdl:part name="parameters" element="tds:GetCACertificatesResponse"/>
  2247. </wsdl:message>
  2248. <wsdl:message name="LoadCertificateWithPrivateKeyRequest">
  2249. <wsdl:part name="parameters" element="tds:LoadCertificateWithPrivateKey"/>
  2250. </wsdl:message>
  2251. <wsdl:message name="LoadCertificateWithPrivateKeyResponse">
  2252. <wsdl:part name="parameters" element="tds:LoadCertificateWithPrivateKeyResponse"/>
  2253. </wsdl:message>
  2254. <wsdl:message name="GetCertificateInformationRequest">
  2255. <wsdl:part name="parameters" element="tds:GetCertificateInformation"/>
  2256. </wsdl:message>
  2257. <wsdl:message name="GetCertificateInformationResponse">
  2258. <wsdl:part name="parameters" element="tds:GetCertificateInformationResponse"/>
  2259. </wsdl:message>
  2260. <wsdl:message name="LoadCACertificatesRequest">
  2261. <wsdl:part name="parameters" element="tds:LoadCACertificates"/>
  2262. </wsdl:message>
  2263. <wsdl:message name="LoadCACertificatesResponse">
  2264. <wsdl:part name="parameters" element="tds:LoadCACertificatesResponse"/>
  2265. </wsdl:message>
  2266. <wsdl:message name="CreateDot1XConfigurationRequest">
  2267. <wsdl:part name="parameters" element="tds:CreateDot1XConfiguration"/>
  2268. </wsdl:message>
  2269. <wsdl:message name="CreateDot1XConfigurationResponse">
  2270. <wsdl:part name="parameters" element="tds:CreateDot1XConfigurationResponse"/>
  2271. </wsdl:message>
  2272. <wsdl:message name="SetDot1XConfigurationRequest">
  2273. <wsdl:part name="parameters" element="tds:SetDot1XConfiguration"/>
  2274. </wsdl:message>
  2275. <wsdl:message name="SetDot1XConfigurationResponse">
  2276. <wsdl:part name="parameters" element="tds:SetDot1XConfigurationResponse"/>
  2277. </wsdl:message>
  2278. <wsdl:message name="GetDot1XConfigurationRequest">
  2279. <wsdl:part name="parameters" element="tds:GetDot1XConfiguration"/>
  2280. </wsdl:message>
  2281. <wsdl:message name="GetDot1XConfigurationResponse">
  2282. <wsdl:part name="parameters" element="tds:GetDot1XConfigurationResponse"/>
  2283. </wsdl:message>
  2284. <wsdl:message name="GetDot1XConfigurationsRequest">
  2285. <wsdl:part name="parameters" element="tds:GetDot1XConfigurations"/>
  2286. </wsdl:message>
  2287. <wsdl:message name="GetDot1XConfigurationsResponse">
  2288. <wsdl:part name="parameters" element="tds:GetDot1XConfigurationsResponse"/>
  2289. </wsdl:message>
  2290. <wsdl:message name="DeleteDot1XConfigurationRequest">
  2291. <wsdl:part name="parameters" element="tds:DeleteDot1XConfiguration"/>
  2292. </wsdl:message>
  2293. <wsdl:message name="DeleteDot1XConfigurationResponse">
  2294. <wsdl:part name="parameters" element="tds:DeleteDot1XConfigurationResponse"/>
  2295. </wsdl:message>
  2296. <wsdl:message name="GetDot11CapabilitiesRequest">
  2297. <wsdl:part name="parameters" element="tds:GetDot11Capabilities"/>
  2298. </wsdl:message>
  2299. <wsdl:message name="GetDot11CapabilitiesResponse">
  2300. <wsdl:part name="parameters" element="tds:GetDot11CapabilitiesResponse"/>
  2301. </wsdl:message>
  2302. <wsdl:message name="GetDot11StatusRequest">
  2303. <wsdl:part name="parameters" element="tds:GetDot11Status"/>
  2304. </wsdl:message>
  2305. <wsdl:message name="GetDot11StatusResponse">
  2306. <wsdl:part name="parameters" element="tds:GetDot11StatusResponse"/>
  2307. </wsdl:message>
  2308. <wsdl:message name="ScanAvailableDot11NetworksRequest">
  2309. <wsdl:part name="parameters" element="tds:ScanAvailableDot11Networks"/>
  2310. </wsdl:message>
  2311. <wsdl:message name="ScanAvailableDot11NetworksResponse">
  2312. <wsdl:part name="parameters" element="tds:ScanAvailableDot11NetworksResponse"/>
  2313. </wsdl:message>
  2314. <wsdl:message name="GetSystemUrisRequest">
  2315. <wsdl:part name="parameters" element="tds:GetSystemUris"/>
  2316. </wsdl:message>
  2317. <wsdl:message name="GetSystemUrisResponse">
  2318. <wsdl:part name="parameters" element="tds:GetSystemUrisResponse"/>
  2319. </wsdl:message>
  2320. <wsdl:message name="StartFirmwareUpgradeRequest">
  2321. <wsdl:part name="parameters" element="tds:StartFirmwareUpgrade"/>
  2322. </wsdl:message>
  2323. <wsdl:message name="StartFirmwareUpgradeResponse">
  2324. <wsdl:part name="parameters" element="tds:StartFirmwareUpgradeResponse"/>
  2325. </wsdl:message>
  2326. <wsdl:message name="StartSystemRestoreRequest">
  2327. <wsdl:part name="parameters" element="tds:StartSystemRestore"/>
  2328. </wsdl:message>
  2329. <wsdl:message name="StartSystemRestoreResponse">
  2330. <wsdl:part name="parameters" element="tds:StartSystemRestoreResponse"/>
  2331. </wsdl:message>
  2332. <wsdl:portType name="Device">
  2333. <wsdl:operation name="GetServices">
  2334. <wsdl:documentation>Returns information about services on the device.</wsdl:documentation>
  2335. <wsdl:input message="tds:GetServicesRequest"/>
  2336. <wsdl:output message="tds:GetServicesResponse"/>
  2337. </wsdl:operation>
  2338. <wsdl:operation name="GetServiceCapabilities">
  2339. <wsdl:documentation>Returns the capabilities of the device service. The result is returned in a typed answer.</wsdl:documentation>
  2340. <wsdl:input message="tds:GetServiceCapabilitiesRequest"/>
  2341. <wsdl:output message="tds:GetServiceCapabilitiesResponse"/>
  2342. </wsdl:operation>
  2343. <wsdl:operation name="GetDeviceInformation">
  2344. <wsdl:documentation>This operation gets basic device information from the device.</wsdl:documentation>
  2345. <wsdl:input message="tds:GetDeviceInformationRequest"/>
  2346. <wsdl:output message="tds:GetDeviceInformationResponse"/>
  2347. </wsdl:operation>
  2348. <wsdl:operation name="SetSystemDateAndTime">
  2349. <wsdl:documentation>This operation sets the device system date and time. The device shall support the
  2350. configuration of the daylight saving setting and of the manual system date and time (if
  2351. applicable) or indication of NTP time (if applicable) through the SetSystemDateAndTime
  2352. command. <br/>
  2353. If system time and date are set manually, the client shall include UTCDateTime in the request.<br/>
  2354. A TimeZone token which is not formed according to the rules of IEEE 1003.1 section 8.3 is considered as invalid timezone.<br/>
  2355. The DayLightSavings flag should be set to true to activate any DST settings of the TimeZone string.
  2356. Clear the DayLightSavings flag if the DST portion of the TimeZone settings should be ignored.
  2357. </wsdl:documentation>
  2358. <wsdl:input message="tds:SetSystemDateAndTimeRequest"/>
  2359. <wsdl:output message="tds:SetSystemDateAndTimeResponse"/>
  2360. </wsdl:operation>
  2361. <wsdl:operation name="GetSystemDateAndTime">
  2362. <wsdl:documentation>This operation gets the device system date and time. The device shall support the return of
  2363. the daylight saving setting and of the manual system date and time (if applicable) or indication
  2364. of NTP time (if applicable) through the GetSystemDateAndTime command.<br/>
  2365. A device shall provide the UTCDateTime information.</wsdl:documentation>
  2366. <wsdl:input message="tds:GetSystemDateAndTimeRequest"/>
  2367. <wsdl:output message="tds:GetSystemDateAndTimeResponse"/>
  2368. </wsdl:operation>
  2369. <wsdl:operation name="SetSystemFactoryDefault">
  2370. <wsdl:documentation>This operation reloads the parameters on the device to their factory default values.</wsdl:documentation>
  2371. <wsdl:input message="tds:SetSystemFactoryDefaultRequest"/>
  2372. <wsdl:output message="tds:SetSystemFactoryDefaultResponse"/>
  2373. </wsdl:operation>
  2374. <wsdl:operation name="UpgradeSystemFirmware">
  2375. <wsdl:documentation>This operation upgrades a device firmware version. After a successful upgrade the response
  2376. message is sent before the device reboots. The device should support firmware upgrade
  2377. through the UpgradeSystemFirmware command. The exact format of the firmware data is
  2378. outside the scope of this standard.</wsdl:documentation>
  2379. <wsdl:input message="tds:UpgradeSystemFirmwareRequest"/>
  2380. <wsdl:output message="tds:UpgradeSystemFirmwareResponse"/>
  2381. </wsdl:operation>
  2382. <wsdl:operation name="SystemReboot">
  2383. <wsdl:documentation>This operation reboots the device.</wsdl:documentation>
  2384. <wsdl:input message="tds:SystemRebootRequest"/>
  2385. <wsdl:output message="tds:SystemRebootResponse"/>
  2386. </wsdl:operation>
  2387. <wsdl:operation name="RestoreSystem">
  2388. <wsdl:documentation>This operation restores the system backup configuration files(s) previously retrieved from a
  2389. device. The device should support restore of backup configuration file(s) through the
  2390. RestoreSystem command. The exact format of the backup configuration file(s) is outside the
  2391. scope of this standard. If the command is supported, it shall accept backup files returned by
  2392. the GetSystemBackup command.</wsdl:documentation>
  2393. <wsdl:input message="tds:RestoreSystemRequest"/>
  2394. <wsdl:output message="tds:RestoreSystemResponse"/>
  2395. </wsdl:operation>
  2396. <wsdl:operation name="GetSystemBackup">
  2397. <wsdl:documentation>This operation is retrieves system backup configuration file(s) from a device. The device
  2398. should support return of back up configuration file(s) through the GetSystemBackup command.
  2399. The backup is returned with reference to a name and mime-type together with binary data.
  2400. The exact format of the backup configuration files is outside the scope of this standard.</wsdl:documentation>
  2401. <wsdl:input message="tds:GetSystemBackupRequest"/>
  2402. <wsdl:output message="tds:GetSystemBackupResponse"/>
  2403. </wsdl:operation>
  2404. <wsdl:operation name="GetSystemLog">
  2405. <wsdl:documentation>This operation gets a system log from the device. The exact format of the system logs is outside the scope of this standard.</wsdl:documentation>
  2406. <wsdl:input message="tds:GetSystemLogRequest"/>
  2407. <wsdl:output message="tds:GetSystemLogResponse"/>
  2408. </wsdl:operation>
  2409. <wsdl:operation name="GetSystemSupportInformation">
  2410. <wsdl:documentation>This operation gets arbitary device diagnostics information from the device.</wsdl:documentation>
  2411. <wsdl:input message="tds:GetSystemSupportInformationRequest"/>
  2412. <wsdl:output message="tds:GetSystemSupportInformationResponse"/>
  2413. </wsdl:operation>
  2414. <wsdl:operation name="GetScopes">
  2415. <wsdl:documentation>This operation requests the scope parameters of a device. The scope parameters are used in
  2416. the device discovery to match a probe message, see Section 7. The Scope parameters are of
  2417. two different types: <ul>
  2418. <li>Fixed</li>
  2419. <li>Configurable</li>
  2420. </ul>
  2421. Fixed scope parameters are permanent device characteristics and cannot be removed through the device management interface.
  2422. The scope type is indicated in the scope list returned in the get scope parameters response. A device shall support
  2423. retrieval of discovery scope parameters through the GetScopes command. As some scope parameters are mandatory,
  2424. the device shall return a non-empty scope list in the response.</wsdl:documentation>
  2425. <wsdl:input message="tds:GetScopesRequest"/>
  2426. <wsdl:output message="tds:GetScopesResponse"/>
  2427. </wsdl:operation>
  2428. <wsdl:operation name="SetScopes">
  2429. <wsdl:documentation>This operation sets the scope parameters of a device. The scope parameters are used in the
  2430. device discovery to match a probe message.
  2431. This operation replaces all existing configurable scope parameters (not fixed parameters). If
  2432. this shall be avoided, one should use the scope add command instead. The device shall
  2433. support configuration of discovery scope parameters through the SetScopes command.</wsdl:documentation>
  2434. <wsdl:input message="tds:SetScopesRequest"/>
  2435. <wsdl:output message="tds:SetScopesResponse"/>
  2436. </wsdl:operation>
  2437. <wsdl:operation name="AddScopes">
  2438. <wsdl:documentation>This operation adds new configurable scope parameters to a device. The scope parameters
  2439. are used in the device discovery to match a probe message. The device shall
  2440. support addition of discovery scope parameters through the AddScopes command.</wsdl:documentation>
  2441. <wsdl:input message="tds:AddScopesRequest"/>
  2442. <wsdl:output message="tds:AddScopesResponse"/>
  2443. </wsdl:operation>
  2444. <wsdl:operation name="RemoveScopes">
  2445. <wsdl:documentation>This operation deletes scope-configurable scope parameters from a device. The scope
  2446. parameters are used in the device discovery to match a probe message, see Section 7. The
  2447. device shall support deletion of discovery scope parameters through the RemoveScopes
  2448. command.
  2449. Table</wsdl:documentation>
  2450. <wsdl:input message="tds:RemoveScopesRequest"/>
  2451. <wsdl:output message="tds:RemoveScopesResponse"/>
  2452. </wsdl:operation>
  2453. <wsdl:operation name="GetDiscoveryMode">
  2454. <wsdl:documentation>This operation gets the discovery mode of a device. See Section 7.2 for the definition of the
  2455. different device discovery modes. The device shall support retrieval of the discovery mode
  2456. setting through the GetDiscoveryMode command.</wsdl:documentation>
  2457. <wsdl:input message="tds:GetDiscoveryModeRequest"/>
  2458. <wsdl:output message="tds:GetDiscoveryModeResponse"/>
  2459. </wsdl:operation>
  2460. <wsdl:operation name="SetDiscoveryMode">
  2461. <wsdl:documentation>This operation sets the discovery mode operation of a device. See Section 7.2 for the
  2462. definition of the different device discovery modes. The device shall support configuration of
  2463. the discovery mode setting through the SetDiscoveryMode command.</wsdl:documentation>
  2464. <wsdl:input message="tds:SetDiscoveryModeRequest"/>
  2465. <wsdl:output message="tds:SetDiscoveryModeResponse"/>
  2466. </wsdl:operation>
  2467. <wsdl:operation name="GetRemoteDiscoveryMode">
  2468. <wsdl:documentation>This operation gets the remote discovery mode of a device. See Section 7.4 for the definition
  2469. of remote discovery extensions. A device that supports remote discovery shall support
  2470. retrieval of the remote discovery mode setting through the GetRemoteDiscoveryMode
  2471. command.</wsdl:documentation>
  2472. <wsdl:input message="tds:GetRemoteDiscoveryModeRequest"/>
  2473. <wsdl:output message="tds:GetRemoteDiscoveryModeResponse"/>
  2474. </wsdl:operation>
  2475. <wsdl:operation name="SetRemoteDiscoveryMode">
  2476. <wsdl:documentation>This operation sets the remote discovery mode of operation of a device. See Section 7.4 for
  2477. the definition of remote discovery remote extensions. A device that supports remote discovery
  2478. shall support configuration of the discovery mode setting through the
  2479. SetRemoteDiscoveryMode command.</wsdl:documentation>
  2480. <wsdl:input message="tds:SetRemoteDiscoveryModeRequest"/>
  2481. <wsdl:output message="tds:SetRemoteDiscoveryModeResponse"/>
  2482. </wsdl:operation>
  2483. <wsdl:operation name="GetDPAddresses">
  2484. <wsdl:documentation>This operation gets the remote DP address or addresses from a device. If the device supports
  2485. remote discovery, as specified in Section 7.4, the device shall support retrieval of the remote
  2486. DP address(es) through the GetDPAddresses command.</wsdl:documentation>
  2487. <wsdl:input message="tds:GetDPAddressesRequest"/>
  2488. <wsdl:output message="tds:GetDPAddressesResponse"/>
  2489. </wsdl:operation>
  2490. <wsdl:operation name="SetDPAddresses">
  2491. <wsdl:documentation>This operation sets the remote DP address or addresses on a device. If the device supports
  2492. remote discovery, as specified in Section 7.4, the device shall support configuration of the
  2493. remote DP address(es) through the SetDPAddresses command.</wsdl:documentation>
  2494. <wsdl:input message="tds:SetDPAddressesRequest"/>
  2495. <wsdl:output message="tds:SetDPAddressesResponse"/>
  2496. </wsdl:operation>
  2497. <wsdl:operation name="GetEndpointReference">
  2498. <wsdl:documentation>A client can ask for the device service endpoint reference address property that can be used
  2499. to derive the password equivalent for remote user operation. The device shall support the
  2500. GetEndpointReference command returning the address property of the device service
  2501. endpoint reference.</wsdl:documentation>
  2502. <wsdl:input message="tds:GetEndpointReferenceRequest"/>
  2503. <wsdl:output message="tds:GetEndpointReferenceResponse"/>
  2504. </wsdl:operation>
  2505. <wsdl:operation name="GetRemoteUser">
  2506. <wsdl:documentation>This operation returns the configured remote user (if any). A device supporting remote user
  2507. handling shall support this operation. The user is only valid for the WS-UserToken profile or
  2508. as a HTTP / RTSP user.<br/>
  2509. The algorithm to use for deriving the password is described in section 5.12.2.1 of the core specification.</wsdl:documentation>
  2510. <wsdl:input message="tds:GetRemoteUserRequest"/>
  2511. <wsdl:output message="tds:GetRemoteUserResponse"/>
  2512. </wsdl:operation>
  2513. <wsdl:operation name="SetRemoteUser">
  2514. <wsdl:documentation>This operation sets the remote user. A device supporting remote user handling shall support this
  2515. operation. The user is only valid for the WS-UserToken profile or as a HTTP / RTSP user.<br/>
  2516. The password that is set shall always be the original (not derived) password.<br/>
  2517. If UseDerivedPassword is set password derivation shall be done by the device when connecting to a
  2518. remote device.The algorithm to use for deriving the password is described in section 5.12.2.1 of the core specification.<br/>
  2519. To remove the remote user SetRemoteUser should be called without the RemoteUser parameter.</wsdl:documentation>
  2520. <wsdl:input message="tds:SetRemoteUserRequest"/>
  2521. <wsdl:output message="tds:SetRemoteUserResponse"/>
  2522. </wsdl:operation>
  2523. <wsdl:operation name="GetUsers">
  2524. <wsdl:documentation>This operation lists the registered users and corresponding credentials on a device. The
  2525. device shall support retrieval of registered device users and their credentials for the user
  2526. token through the GetUsers command.</wsdl:documentation>
  2527. <wsdl:input message="tds:GetUsersRequest"/>
  2528. <wsdl:output message="tds:GetUsersResponse"/>
  2529. </wsdl:operation>
  2530. <wsdl:operation name="CreateUsers">
  2531. <wsdl:documentation>This operation creates new device users and corresponding credentials on a device for authentication purposes.
  2532. The device shall support creation of device users and their credentials through the CreateUsers
  2533. command. Either all users are created successfully or a fault message shall be returned
  2534. without creating any user.<br/>
  2535. ONVIF compliant devices are recommended to support password length of at least 28 bytes,
  2536. as clients may follow the password derivation mechanism which results in 'password
  2537. equivalent' of length 28 bytes, as described in section 3.1.2 of the ONVIF security white paper.</wsdl:documentation>
  2538. <wsdl:input message="tds:CreateUsersRequest"/>
  2539. <wsdl:output message="tds:CreateUsersResponse"/>
  2540. </wsdl:operation>
  2541. <wsdl:operation name="DeleteUsers">
  2542. <wsdl:documentation>This operation deletes users on a device. The device shall support deletion of device users and their credentials
  2543. through the DeleteUsers command. A device may have one or more fixed users
  2544. that cannot be deleted to ensure access to the unit. Either all users are deleted successfully or a
  2545. fault message shall be returned and no users be deleted.</wsdl:documentation>
  2546. <wsdl:input message="tds:DeleteUsersRequest"/>
  2547. <wsdl:output message="tds:DeleteUsersResponse"/>
  2548. </wsdl:operation>
  2549. <wsdl:operation name="SetUser">
  2550. <wsdl:documentation>This operation updates the settings for one or several users on a device for authentication purposes.
  2551. The device shall support update of device users and their credentials through the SetUser command.
  2552. Either all change requests are processed successfully or a fault message shall be returned and no change requests be processed.</wsdl:documentation>
  2553. <wsdl:input message="tds:SetUserRequest"/>
  2554. <wsdl:output message="tds:SetUserResponse"/>
  2555. </wsdl:operation>
  2556. <wsdl:operation name="GetWsdlUrl">
  2557. <wsdl:documentation>It is possible for an endpoint to request a URL that can be used to retrieve the complete
  2558. schema and WSDL definitions of a device. The command gives in return a URL entry point
  2559. where all the necessary product specific WSDL and schema definitions can be retrieved. The
  2560. device shall provide a URL for WSDL and schema download through the GetWsdlUrl command.</wsdl:documentation>
  2561. <wsdl:input message="tds:GetWsdlUrlRequest"/>
  2562. <wsdl:output message="tds:GetWsdlUrlResponse"/>
  2563. </wsdl:operation>
  2564. <wsdl:operation name="GetCapabilities">
  2565. <wsdl:documentation>Any endpoint can ask for the capabilities of a device using the capability exchange request
  2566. response operation. The device shall indicate all its ONVIF compliant capabilities through the
  2567. GetCapabilities command.
  2568. The capability list includes references to the addresses (XAddr) of the service implementing
  2569. the interface operations in the category. Apart from the addresses, the
  2570. capabilities only reflect optional functions.</wsdl:documentation>
  2571. <wsdl:input message="tds:GetCapabilitiesRequest"/>
  2572. <wsdl:output message="tds:GetCapabilitiesResponse"/>
  2573. </wsdl:operation>
  2574. <wsdl:operation name="GetHostname">
  2575. <wsdl:documentation>This operation is used by an endpoint to get the hostname from a device. The device shall
  2576. return its hostname configurations through the GetHostname command.</wsdl:documentation>
  2577. <wsdl:input message="tds:GetHostnameRequest"/>
  2578. <wsdl:output message="tds:GetHostnameResponse"/>
  2579. </wsdl:operation>
  2580. <wsdl:operation name="SetHostname">
  2581. <wsdl:documentation>This operation sets the hostname on a device. It shall be possible to set the device hostname
  2582. configurations through the SetHostname command.<br/>
  2583. A device shall accept string formated according to RFC 1123 section 2.1 or alternatively to RFC 952,
  2584. other string shall be considered as invalid strings.
  2585. </wsdl:documentation>
  2586. <wsdl:input message="tds:SetHostnameRequest"/>
  2587. <wsdl:output message="tds:SetHostnameResponse"/>
  2588. </wsdl:operation>
  2589. <wsdl:operation name="SetHostnameFromDHCP">
  2590. <wsdl:documentation>This operation controls whether the hostname is set manually or retrieved via DHCP.</wsdl:documentation>
  2591. <wsdl:input message="tds:SetHostnameFromDHCPRequest"/>
  2592. <wsdl:output message="tds:SetHostnameFromDHCPResponse"/>
  2593. </wsdl:operation>
  2594. <wsdl:operation name="GetDNS">
  2595. <wsdl:documentation>This operation gets the DNS settings from a device. The device shall return its DNS
  2596. configurations through the GetDNS command.</wsdl:documentation>
  2597. <wsdl:input message="tds:GetDNSRequest"/>
  2598. <wsdl:output message="tds:GetDNSResponse"/>
  2599. </wsdl:operation>
  2600. <wsdl:operation name="SetDNS">
  2601. <wsdl:documentation>This operation sets the DNS settings on a device. It shall be possible to set the device DNS
  2602. configurations through the SetDNS command.</wsdl:documentation>
  2603. <wsdl:input message="tds:SetDNSRequest"/>
  2604. <wsdl:output message="tds:SetDNSResponse"/>
  2605. </wsdl:operation>
  2606. <wsdl:operation name="GetNTP">
  2607. <wsdl:documentation>This operation gets the NTP settings from a device. If the device supports NTP, it shall be
  2608. possible to get the NTP server settings through the GetNTP command.</wsdl:documentation>
  2609. <wsdl:input message="tds:GetNTPRequest"/>
  2610. <wsdl:output message="tds:GetNTPResponse"/>
  2611. </wsdl:operation>
  2612. <wsdl:operation name="SetNTP">
  2613. <wsdl:documentation>This operation sets the NTP settings on a device. If the device supports NTP, it shall be
  2614. possible to set the NTP server settings through the SetNTP command.<br/>
  2615. A device shall accept string formated according to RFC 1123 section 2.1 or alternatively to RFC 952,
  2616. other string shall be considered as invalid strings. <br/>
  2617. Changes to the NTP server list will not affect the clock mode DateTimeType. Use SetSystemDateAndTime to activate NTP operation.
  2618. </wsdl:documentation>
  2619. <wsdl:input message="tds:SetNTPRequest"/>
  2620. <wsdl:output message="tds:SetNTPResponse"/>
  2621. </wsdl:operation>
  2622. <wsdl:operation name="GetDynamicDNS">
  2623. <wsdl:documentation>This operation gets the dynamic DNS settings from a device. If the device supports dynamic
  2624. DNS as specified in [RFC 2136] and [RFC 4702], it shall be possible to get the type, name
  2625. and TTL through the GetDynamicDNS command.</wsdl:documentation>
  2626. <wsdl:input message="tds:GetDynamicDNSRequest"/>
  2627. <wsdl:output message="tds:GetDynamicDNSResponse"/>
  2628. </wsdl:operation>
  2629. <wsdl:operation name="SetDynamicDNS">
  2630. <wsdl:documentation>This operation sets the dynamic DNS settings on a device. If the device supports dynamic
  2631. DNS as specified in [RFC 2136] and [RFC 4702], it shall be possible to set the type, name
  2632. and TTL through the SetDynamicDNS command.</wsdl:documentation>
  2633. <wsdl:input message="tds:SetDynamicDNSRequest"/>
  2634. <wsdl:output message="tds:SetDynamicDNSResponse"/>
  2635. </wsdl:operation>
  2636. <wsdl:operation name="GetNetworkInterfaces">
  2637. <wsdl:documentation>This operation gets the network interface configuration from a device. The device shall
  2638. support return of network interface configuration settings as defined by the NetworkInterface
  2639. type through the GetNetworkInterfaces command.</wsdl:documentation>
  2640. <wsdl:input message="tds:GetNetworkInterfacesRequest"/>
  2641. <wsdl:output message="tds:GetNetworkInterfacesResponse"/>
  2642. </wsdl:operation>
  2643. <wsdl:operation name="SetNetworkInterfaces">
  2644. <wsdl:documentation>This operation sets the network interface configuration on a device. The device shall support
  2645. network configuration of supported network interfaces through the SetNetworkInterfaces
  2646. command.<br/>
  2647. For interoperability with a client unaware of the IEEE 802.11 extension a device shall retain
  2648. its IEEE 802.11 configuration if the IEEE 802.11 configuration element isn’t present in the
  2649. request.</wsdl:documentation>
  2650. <wsdl:input message="tds:SetNetworkInterfacesRequest"/>
  2651. <wsdl:output message="tds:SetNetworkInterfacesResponse"/>
  2652. </wsdl:operation>
  2653. <wsdl:operation name="GetNetworkProtocols">
  2654. <wsdl:documentation>This operation gets defined network protocols from a device. The device shall support the
  2655. GetNetworkProtocols command returning configured network protocols.</wsdl:documentation>
  2656. <wsdl:input message="tds:GetNetworkProtocolsRequest"/>
  2657. <wsdl:output message="tds:GetNetworkProtocolsResponse"/>
  2658. </wsdl:operation>
  2659. <wsdl:operation name="SetNetworkProtocols">
  2660. <wsdl:documentation>This operation configures defined network protocols on a device. The device shall support
  2661. configuration of defined network protocols through the SetNetworkProtocols command.</wsdl:documentation>
  2662. <wsdl:input message="tds:SetNetworkProtocolsRequest"/>
  2663. <wsdl:output message="tds:SetNetworkProtocolsResponse"/>
  2664. </wsdl:operation>
  2665. <wsdl:operation name="GetNetworkDefaultGateway">
  2666. <wsdl:documentation>This operation gets the default gateway settings from a device. The device shall support the
  2667. GetNetworkDefaultGateway command returning configured default gateway address(es).</wsdl:documentation>
  2668. <wsdl:input message="tds:GetNetworkDefaultGatewayRequest"/>
  2669. <wsdl:output message="tds:GetNetworkDefaultGatewayResponse"/>
  2670. </wsdl:operation>
  2671. <wsdl:operation name="SetNetworkDefaultGateway">
  2672. <wsdl:documentation>This operation sets the default gateway settings on a device. The device shall support
  2673. configuration of default gateway through the SetNetworkDefaultGateway command.</wsdl:documentation>
  2674. <wsdl:input message="tds:SetNetworkDefaultGatewayRequest"/>
  2675. <wsdl:output message="tds:SetNetworkDefaultGatewayResponse"/>
  2676. </wsdl:operation>
  2677. <wsdl:operation name="GetZeroConfiguration">
  2678. <wsdl:documentation>This operation gets the zero-configuration from a device. If the device supports dynamic IP
  2679. configuration according to [RFC3927], it shall support the return of IPv4 zero configuration
  2680. address and status through the GetZeroConfiguration command.<br/>
  2681. Devices supporting zero configuration on more than one interface shall use the extension to list the additional interface settings.</wsdl:documentation>
  2682. <wsdl:input message="tds:GetZeroConfigurationRequest"/>
  2683. <wsdl:output message="tds:GetZeroConfigurationResponse"/>
  2684. </wsdl:operation>
  2685. <wsdl:operation name="SetZeroConfiguration">
  2686. <wsdl:documentation>This operation sets the zero-configuration. Use GetCapalities to get if zero-zero-configuration is supported or not.</wsdl:documentation>
  2687. <wsdl:input message="tds:SetZeroConfigurationRequest"/>
  2688. <wsdl:output message="tds:SetZeroConfigurationResponse"/>
  2689. </wsdl:operation>
  2690. <wsdl:operation name="GetIPAddressFilter">
  2691. <wsdl:documentation>This operation gets the IP address filter settings from a device. If the device supports device
  2692. access control based on IP filtering rules (denied or accepted ranges of IP addresses), the
  2693. device shall support the GetIPAddressFilter command.</wsdl:documentation>
  2694. <wsdl:input message="tds:GetIPAddressFilterRequest"/>
  2695. <wsdl:output message="tds:GetIPAddressFilterResponse"/>
  2696. </wsdl:operation>
  2697. <wsdl:operation name="SetIPAddressFilter">
  2698. <wsdl:documentation>This operation sets the IP address filter settings on a device. If the device supports device
  2699. access control based on IP filtering rules (denied or accepted ranges of IP addresses), the
  2700. device shall support configuration of IP filtering rules through the SetIPAddressFilter
  2701. command.</wsdl:documentation>
  2702. <wsdl:input message="tds:SetIPAddressFilterRequest"/>
  2703. <wsdl:output message="tds:SetIPAddressFilterResponse"/>
  2704. </wsdl:operation>
  2705. <wsdl:operation name="AddIPAddressFilter">
  2706. <wsdl:documentation>This operation adds an IP filter address to a device. If the device supports device access
  2707. control based on IP filtering rules (denied or accepted ranges of IP addresses), the device
  2708. shall support adding of IP filtering addresses through the AddIPAddressFilter command.</wsdl:documentation>
  2709. <wsdl:input message="tds:AddIPAddressFilterRequest"/>
  2710. <wsdl:output message="tds:AddIPAddressFilterResponse"/>
  2711. </wsdl:operation>
  2712. <wsdl:operation name="RemoveIPAddressFilter">
  2713. <wsdl:documentation>This operation deletes an IP filter address from a device. If the device supports device access
  2714. control based on IP filtering rules (denied or accepted ranges of IP addresses), the device
  2715. shall support deletion of IP filtering addresses through the RemoveIPAddressFilter command.</wsdl:documentation>
  2716. <wsdl:input message="tds:RemoveIPAddressFilterRequest"/>
  2717. <wsdl:output message="tds:RemoveIPAddressFilterResponse"/>
  2718. </wsdl:operation>
  2719. <wsdl:operation name="GetAccessPolicy">
  2720. <wsdl:documentation>Access to different services and sub-sets of services should be subject to access control. The
  2721. WS-Security framework gives the prerequisite for end-point authentication. Authorization
  2722. decisions can then be taken using an access security policy. This standard does not mandate
  2723. any particular policy description format or security policy but this is up to the device
  2724. manufacturer or system provider to choose policy and policy description format of choice.
  2725. However, an access policy (in arbitrary format) can be requested using this command. If the
  2726. device supports access policy settings based on WS-Security authentication, then the device
  2727. shall support this command.</wsdl:documentation>
  2728. <wsdl:input message="tds:GetAccessPolicyRequest"/>
  2729. <wsdl:output message="tds:GetAccessPolicyResponse"/>
  2730. </wsdl:operation>
  2731. <wsdl:operation name="SetAccessPolicy">
  2732. <wsdl:documentation>This command sets the device access security policy (for more details on the access security
  2733. policy see the Get command). If the device supports access policy settings
  2734. based on WS-Security authentication, then the device shall support this command.</wsdl:documentation>
  2735. <wsdl:input message="tds:SetAccessPolicyRequest"/>
  2736. <wsdl:output message="tds:SetAccessPolicyResponse"/>
  2737. </wsdl:operation>
  2738. <wsdl:operation name="CreateCertificate">
  2739. <wsdl:documentation>This operation generates a private/public key pair and also can create a self-signed device
  2740. certificate as a result of key pair generation. The certificate is created using a suitable
  2741. onboard key pair generation mechanism.<br/>
  2742. If a device supports onboard key pair generation, the device that supports TLS shall support
  2743. this certificate creation command. And also, if a device supports onboard key pair generation,
  2744. the device that support IEEE 802.1X shall support this command for the purpose of key pair
  2745. generation. Certificates and key pairs are identified using certificate IDs. These IDs are either
  2746. chosen by the certificate generation requester or by the device (in case that no ID value is
  2747. given).</wsdl:documentation>
  2748. <wsdl:input message="tds:CreateCertificateRequest"/>
  2749. <wsdl:output message="tds:CreateCertificateResponse"/>
  2750. </wsdl:operation>
  2751. <wsdl:operation name="GetCertificates">
  2752. <wsdl:documentation>This operation gets all device server certificates (including self-signed) for the purpose of TLS
  2753. authentication and all device client certificates for the purpose of IEEE 802.1X authentication.
  2754. This command lists only the TLS server certificates and IEEE 802.1X client certificates for the
  2755. device (neither trusted CA certificates nor trusted root certificates). The certificates are
  2756. returned as binary data. A device that supports TLS shall support this command and the
  2757. certificates shall be encoded using ASN.1 [X.681], [X.682], [X.683] DER [X.690] encoding
  2758. rules.</wsdl:documentation>
  2759. <wsdl:input message="tds:GetCertificatesRequest"/>
  2760. <wsdl:output message="tds:GetCertificatesResponse"/>
  2761. </wsdl:operation>
  2762. <wsdl:operation name="GetCertificatesStatus">
  2763. <wsdl:documentation>This operation is specific to TLS functionality. This operation gets the status
  2764. (enabled/disabled) of the device TLS server certificates. A device that supports TLS shall
  2765. support this command.</wsdl:documentation>
  2766. <wsdl:input message="tds:GetCertificatesStatusRequest"/>
  2767. <wsdl:output message="tds:GetCertificatesStatusResponse"/>
  2768. </wsdl:operation>
  2769. <wsdl:operation name="SetCertificatesStatus">
  2770. <wsdl:documentation>This operation is specific to TLS functionality. This operation sets the status (enable/disable)
  2771. of the device TLS server certificates. A device that supports TLS shall support this command.
  2772. Typically only one device server certificate is allowed to be enabled at a time.</wsdl:documentation>
  2773. <wsdl:input message="tds:SetCertificatesStatusRequest"/>
  2774. <wsdl:output message="tds:SetCertificatesStatusResponse"/>
  2775. </wsdl:operation>
  2776. <wsdl:operation name="DeleteCertificates">
  2777. <wsdl:documentation>This operation deletes a certificate or multiple certificates. The device MAY also delete a
  2778. private/public key pair which is coupled with the certificate to be deleted. The device that
  2779. support either TLS or IEEE 802.1X shall support the deletion of a certificate or multiple
  2780. certificates through this command. Either all certificates are deleted successfully or a fault
  2781. message shall be returned without deleting any certificate.</wsdl:documentation>
  2782. <wsdl:input message="tds:DeleteCertificatesRequest"/>
  2783. <wsdl:output message="tds:DeleteCertificatesResponse"/>
  2784. </wsdl:operation>
  2785. <wsdl:operation name="GetPkcs10Request">
  2786. <wsdl:documentation>This operation requests a PKCS #10 certificate signature request from the device. The
  2787. returned information field shall be either formatted exactly as specified in [PKCS#10] or PEM
  2788. encoded [PKCS#10] format. In order for this command to work, the device must already have
  2789. a private/public key pair. This key pair should be referred by CertificateID as specified in the
  2790. input parameter description. This CertificateID refers to the key pair generated using
  2791. CreateCertificate command.<br/>
  2792. A device that support onboard key pair generation that supports either TLS or IEEE 802.1X
  2793. using client certificate shall support this command.</wsdl:documentation>
  2794. <wsdl:input message="tds:GetPkcs10RequestRequest"/>
  2795. <wsdl:output message="tds:GetPkcs10RequestResponse"/>
  2796. </wsdl:operation>
  2797. <wsdl:operation name="LoadCertificates">
  2798. <wsdl:documentation>TLS server certificate(s) or IEEE 802.1X client certificate(s) created using the PKCS#10
  2799. certificate request command can be loaded into the device using this command (see Section
  2800. 8.4.13). The certificate ID in the request shall be present. The device may sort the received
  2801. certificate(s) based on the public key and subject information in the certificate(s).
  2802. The certificate ID in the request will be the ID value the client wish to have. The device is
  2803. supposed to scan the generated key pairs present in the device to identify which is the
  2804. correspondent key pair with the loaded certificate and then make the link between the
  2805. certificate and the key pair.<br/>
  2806. A device that supports onboard key pair generation that support either TLS or IEEE 802.1X
  2807. shall support this command.<br/>
  2808. The certificates shall be encoded using ASN.1 [X.681], [X.682], [X.683] DER [X.690] encoding
  2809. rules.<br/>
  2810. This command is applicable to any device type, although the parameter name is called for
  2811. historical reasons NVTCertificate.</wsdl:documentation>
  2812. <wsdl:input message="tds:LoadCertificatesRequest"/>
  2813. <wsdl:output message="tds:LoadCertificatesResponse"/>
  2814. </wsdl:operation>
  2815. <wsdl:operation name="GetClientCertificateMode">
  2816. <wsdl:documentation>This operation is specific to TLS functionality. This operation gets the status
  2817. (enabled/disabled) of the device TLS client authentication. A device that supports TLS shall
  2818. support this command.</wsdl:documentation>
  2819. <wsdl:input message="tds:GetClientCertificateModeRequest"/>
  2820. <wsdl:output message="tds:GetClientCertificateModeResponse"/>
  2821. </wsdl:operation>
  2822. <wsdl:operation name="SetClientCertificateMode">
  2823. <wsdl:documentation>This operation is specific to TLS functionality. This operation sets the status
  2824. (enabled/disabled) of the device TLS client authentication. A device that supports TLS shall
  2825. support this command.</wsdl:documentation>
  2826. <wsdl:input message="tds:SetClientCertificateModeRequest"/>
  2827. <wsdl:output message="tds:SetClientCertificateModeResponse"/>
  2828. </wsdl:operation>
  2829. <wsdl:operation name="GetRelayOutputs">
  2830. <wsdl:documentation>This operation gets a list of all available relay outputs and their settings.<br/>
  2831. This method has been depricated with version 2.0. Refer to the DeviceIO service.</wsdl:documentation>
  2832. <wsdl:input message="tds:GetRelayOutputsRequest"/>
  2833. <wsdl:output message="tds:GetRelayOutputsResponse"/>
  2834. </wsdl:operation>
  2835. <wsdl:operation name="SetRelayOutputSettings">
  2836. <wsdl:documentation>This operation sets the settings of a relay output.
  2837. <br/>This method has been depricated with version 2.0. Refer to the DeviceIO service.</wsdl:documentation>
  2838. <wsdl:input message="tds:SetRelayOutputSettingsRequest"/>
  2839. <wsdl:output message="tds:SetRelayOutputSettingsResponse"/>
  2840. </wsdl:operation>
  2841. <wsdl:operation name="SetRelayOutputState">
  2842. <wsdl:documentation>This operation sets the state of a relay output.
  2843. <br/>This method has been depricated with version 2.0. Refer to the DeviceIO service.</wsdl:documentation>
  2844. <wsdl:input message="tds:SetRelayOutputStateRequest"/>
  2845. <wsdl:output message="tds:SetRelayOutputStateResponse"/>
  2846. </wsdl:operation>
  2847. <wsdl:operation name="SendAuxiliaryCommand">
  2848. <wsdl:documentation>Manage auxiliary commands supported by a device, such as controlling an Infrared (IR) lamp,
  2849. a heater or a wiper or a thermometer that is connected to the device.<br/>
  2850. The supported commands can be retrieved via the AuxiliaryCommands capability.<br/>
  2851. Although the name of the auxiliary commands can be freely defined, commands starting with the prefix tt: are
  2852. reserved to define frequently used commands and these reserved commands shall all share the "tt:command|parameter" syntax.
  2853. <ul>
  2854. <li>tt:Wiper|On – Request to start the wiper.</li>
  2855. <li>tt:Wiper|Off – Request to stop the wiper.</li>
  2856. <li>tt:Washer|On – Request to start the washer.</li>
  2857. <li>tt:Washer|Off – Request to stop the washer.</li>
  2858. <li>tt:WashingProcedure|On – Request to start the washing procedure.</li>
  2859. <li>tt: WashingProcedure |Off – Request to stop the washing procedure.</li>
  2860. <li>tt:IRLamp|On – Request to turn ON an IR illuminator attached to the unit.</li>
  2861. <li>tt:IRLamp|Off – Request to turn OFF an IR illuminator attached to the unit.</li>
  2862. <li>tt:IRLamp|Auto – Request to configure an IR illuminator attached to the unit so that it automatically turns ON and OFF.</li>
  2863. </ul>
  2864. A device that indicates auxiliary service capability shall support this command.</wsdl:documentation>
  2865. <wsdl:input message="tds:SendAuxiliaryCommandRequest"/>
  2866. <wsdl:output message="tds:SendAuxiliaryCommandResponse"/>
  2867. </wsdl:operation>
  2868. <wsdl:operation name="GetCACertificates">
  2869. <wsdl:documentation>CA certificates will be loaded into a device and be used for the sake of following two cases.
  2870. The one is for the purpose of TLS client authentication in TLS server function. The other one
  2871. is for the purpose of Authentication Server authentication in IEEE 802.1X function. This
  2872. operation gets all CA certificates loaded into a device. A device that supports either TLS client
  2873. authentication or IEEE 802.1X shall support this command and the returned certificates shall
  2874. be encoded using ASN.1 [X.681], [X.682], [X.683] DER [X.690] encoding rules.</wsdl:documentation>
  2875. <wsdl:input message="tds:GetCACertificatesRequest"/>
  2876. <wsdl:output message="tds:GetCACertificatesResponse"/>
  2877. </wsdl:operation>
  2878. <wsdl:operation name="LoadCertificateWithPrivateKey">
  2879. <wsdl:documentation>There might be some cases that a Certificate Authority or some other equivalent creates a
  2880. certificate without having PKCS#10 certificate signing request. In such cases, the certificate
  2881. will be bundled in conjunction with its private key. This command will be used for such use
  2882. case scenarios. The certificate ID in the request is optionally set to the ID value the client
  2883. wish to have. If the certificate ID is not specified in the request, device can choose the ID
  2884. accordingly.<br/>
  2885. This operation imports a private/public key pair into the device.
  2886. The certificates shall be encoded using ASN.1 [X.681], [X.682], [X.683] DER [X.690] encoding
  2887. rules.<br/>
  2888. A device that does not support onboard key pair generation and support either TLS or IEEE
  2889. 802.1X using client certificate shall support this command. A device that support onboard key
  2890. pair generation MAY support this command. The security policy of a device that supports this
  2891. operation should make sure that the private key is sufficiently protected.</wsdl:documentation>
  2892. <wsdl:input message="tds:LoadCertificateWithPrivateKeyRequest"/>
  2893. <wsdl:output message="tds:LoadCertificateWithPrivateKeyResponse"/>
  2894. </wsdl:operation>
  2895. <wsdl:operation name="GetCertificateInformation">
  2896. <wsdl:documentation>This operation requests the information of a certificate specified by certificate ID. The device
  2897. should respond with its “Issuer DN”, “Subject DN”, “Key usage”, "Extended key usage”, “Key
  2898. Length”, “Version”, “Serial Number”, “Signature Algorithm” and “Validity” data as the
  2899. information of the certificate, as long as the device can retrieve such information from the
  2900. specified certificate.<br/>
  2901. A device that supports either TLS or IEEE 802.1X should support this command.</wsdl:documentation>
  2902. <wsdl:input message="tds:GetCertificateInformationRequest"/>
  2903. <wsdl:output message="tds:GetCertificateInformationResponse"/>
  2904. </wsdl:operation>
  2905. <wsdl:operation name="LoadCACertificates">
  2906. <wsdl:documentation>This command is used when it is necessary to load trusted CA certificates or trusted root
  2907. certificates for the purpose of verification for its counterpart i.e. client certificate verification in
  2908. TLS function or server certificate verification in IEEE 802.1X function.<br/>
  2909. A device that support either TLS or IEEE 802.1X shall support this command. As for the
  2910. supported certificate format, either DER format or PEM format is possible to be used. But a
  2911. device that support this command shall support at least DER format as supported format type.
  2912. The device may sort the received certificate(s) based on the public key and subject
  2913. information in the certificate(s). Either all CA certificates are loaded successfully or a fault
  2914. message shall be returned without loading any CA certificate.</wsdl:documentation>
  2915. <wsdl:input message="tds:LoadCACertificatesRequest"/>
  2916. <wsdl:output message="tds:LoadCACertificatesResponse"/>
  2917. </wsdl:operation>
  2918. <wsdl:operation name="CreateDot1XConfiguration">
  2919. <wsdl:documentation>This operation newly creates IEEE 802.1X configuration parameter set of the device. The
  2920. device shall support this command if it supports IEEE 802.1X. If the device receives this
  2921. request with already existing configuration token (Dot1XConfigurationToken) specification, the
  2922. device should respond with 'ter:ReferenceToken ' error to indicate there is some configuration
  2923. conflict.</wsdl:documentation>
  2924. <wsdl:input message="tds:CreateDot1XConfigurationRequest"/>
  2925. <wsdl:output message="tds:CreateDot1XConfigurationResponse"/>
  2926. </wsdl:operation>
  2927. <wsdl:operation name="SetDot1XConfiguration">
  2928. <wsdl:documentation>While the CreateDot1XConfiguration command is trying to create a new configuration
  2929. parameter set, this operation modifies existing IEEE 802.1X configuration parameter set of
  2930. the device. A device that support IEEE 802.1X shall support this command.</wsdl:documentation>
  2931. <wsdl:input message="tds:SetDot1XConfigurationRequest"/>
  2932. <wsdl:output message="tds:SetDot1XConfigurationResponse"/>
  2933. </wsdl:operation>
  2934. <wsdl:operation name="GetDot1XConfiguration">
  2935. <wsdl:documentation>This operation gets one IEEE 802.1X configuration parameter set from the device by
  2936. specifying the configuration token (Dot1XConfigurationToken).<br/>
  2937. A device that supports IEEE 802.1X shall support this command.
  2938. Regardless of whether the 802.1X method in the retrieved configuration has a password or
  2939. not, the device shall not include the Password element in the response.</wsdl:documentation>
  2940. <wsdl:input message="tds:GetDot1XConfigurationRequest"/>
  2941. <wsdl:output message="tds:GetDot1XConfigurationResponse"/>
  2942. </wsdl:operation>
  2943. <wsdl:operation name="GetDot1XConfigurations">
  2944. <wsdl:documentation>This operation gets all the existing IEEE 802.1X configuration parameter sets from the device.
  2945. The device shall respond with all the IEEE 802.1X configurations so that the client can get to
  2946. know how many IEEE 802.1X configurations are existing and how they are configured.<br/>
  2947. A device that support IEEE 802.1X shall support this command.<br/>
  2948. Regardless of whether the 802.1X method in the retrieved configuration has a password or
  2949. not, the device shall not include the Password element in the response.</wsdl:documentation>
  2950. <wsdl:input message="tds:GetDot1XConfigurationsRequest"/>
  2951. <wsdl:output message="tds:GetDot1XConfigurationsResponse"/>
  2952. </wsdl:operation>
  2953. <wsdl:operation name="DeleteDot1XConfiguration">
  2954. <wsdl:documentation>This operation deletes an IEEE 802.1X configuration parameter set from the device. Which
  2955. configuration should be deleted is specified by the 'Dot1XConfigurationToken' in the request.
  2956. A device that support IEEE 802.1X shall support this command.</wsdl:documentation>
  2957. <wsdl:input message="tds:DeleteDot1XConfigurationRequest"/>
  2958. <wsdl:output message="tds:DeleteDot1XConfigurationResponse"/>
  2959. </wsdl:operation>
  2960. <wsdl:operation name="GetDot11Capabilities">
  2961. <wsdl:documentation>This operation returns the IEEE802.11 capabilities. The device shall support
  2962. this operation.</wsdl:documentation>
  2963. <wsdl:input message="tds:GetDot11CapabilitiesRequest"/>
  2964. <wsdl:output message="tds:GetDot11CapabilitiesResponse"/>
  2965. </wsdl:operation>
  2966. <wsdl:operation name="GetDot11Status">
  2967. <wsdl:documentation>This operation returns the status of a wireless network interface. The device shall support this
  2968. command.</wsdl:documentation>
  2969. <wsdl:input message="tds:GetDot11StatusRequest"/>
  2970. <wsdl:output message="tds:GetDot11StatusResponse"/>
  2971. </wsdl:operation>
  2972. <wsdl:operation name="ScanAvailableDot11Networks">
  2973. <wsdl:documentation>This operation returns a lists of the wireless networks in range of the device. A device should
  2974. support this operation.</wsdl:documentation>
  2975. <wsdl:input message="tds:ScanAvailableDot11NetworksRequest"/>
  2976. <wsdl:output message="tds:ScanAvailableDot11NetworksResponse"/>
  2977. </wsdl:operation>
  2978. <wsdl:operation name="GetSystemUris">
  2979. <wsdl:documentation>This operation is used to retrieve URIs from which system information may be downloaded
  2980. using HTTP. URIs may be returned for the following system information:<br/>
  2981. System Logs. Multiple system logs may be returned, of different types. The exact format of
  2982. the system logs is outside the scope of this specification.<br/>
  2983. Support Information. This consists of arbitrary device diagnostics information from a device.
  2984. The exact format of the diagnostic information is outside the scope of this specification.<br/>
  2985. System Backup. The received file is a backup file that can be used to restore the current
  2986. device configuration at a later date. The exact format of the backup configuration file is
  2987. outside the scope of this specification.<br/>
  2988. If the device allows retrieval of system logs, support information or system backup data, it
  2989. should make them available via HTTP GET. If it does, it shall support the GetSystemUris
  2990. command.</wsdl:documentation>
  2991. <wsdl:input message="tds:GetSystemUrisRequest"/>
  2992. <wsdl:output message="tds:GetSystemUrisResponse"/>
  2993. </wsdl:operation>
  2994. <wsdl:operation name="StartFirmwareUpgrade">
  2995. <wsdl:documentation>This operation initiates a firmware upgrade using the HTTP POST mechanism. The response
  2996. to the command includes an HTTP URL to which the upgrade file may be uploaded. The
  2997. actual upgrade takes place as soon as the HTTP POST operation has completed. The device
  2998. should support firmware upgrade through the StartFirmwareUpgrade command. The exact
  2999. format of the firmware data is outside the scope of this specification.
  3000. Firmware upgrade over HTTP may be achieved using the following steps:<ol>
  3001. <li>Client calls StartFirmwareUpgrade.</li>
  3002. <li>Server responds with upload URI and optional delay value.</li>
  3003. <li>Client waits for delay duration if specified by server.</li>
  3004. <li>Client transmits the firmware image to the upload URI using HTTP POST.</li>
  3005. <li>Server reprograms itself using the uploaded image, then reboots.</li>
  3006. </ol>
  3007. If the firmware upgrade fails because the upgrade file was invalid, the HTTP POST response
  3008. shall be “415 Unsupported Media Type”. If the firmware upgrade fails due to an error at the
  3009. device, the HTTP POST response shall be “500 Internal Server Error”.<br/>
  3010. The value of the Content-Type header in the HTTP POST request shall be “application/octetstream”.</wsdl:documentation>
  3011. <wsdl:input message="tds:StartFirmwareUpgradeRequest"/>
  3012. <wsdl:output message="tds:StartFirmwareUpgradeResponse"/>
  3013. </wsdl:operation>
  3014. <wsdl:operation name="StartSystemRestore">
  3015. <wsdl:documentation>This operation initiates a system restore from backed up configuration data using the HTTP
  3016. POST mechanism. The response to the command includes an HTTP URL to which the backup
  3017. file may be uploaded. The actual restore takes place as soon as the HTTP POST operation
  3018. has completed. Devices should support system restore through the StartSystemRestore
  3019. command. The exact format of the backup configuration data is outside the scope of this
  3020. specification.<br/>
  3021. System restore over HTTP may be achieved using the following steps:<ol>
  3022. <li>Client calls StartSystemRestore.</li>
  3023. <li>Server responds with upload URI.</li>
  3024. <li>Client transmits the configuration data to the upload URI using HTTP POST.</li>
  3025. <li>Server applies the uploaded configuration, then reboots if necessary.</li>
  3026. </ol>
  3027. If the system restore fails because the uploaded file was invalid, the HTTP POST response
  3028. shall be “415 Unsupported Media Type”. If the system restore fails due to an error at the
  3029. device, the HTTP POST response shall be “500 Internal Server Error”.<br/>
  3030. The value of the Content-Type header in the HTTP POST request shall be “application/octetstream”.</wsdl:documentation>
  3031. <wsdl:input message="tds:StartSystemRestoreRequest"/>
  3032. <wsdl:output message="tds:StartSystemRestoreResponse"/>
  3033. </wsdl:operation>
  3034. </wsdl:portType>
  3035. <wsdl:binding name="DeviceBinding" type="tds:Device">
  3036. <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
  3037. <wsdl:operation name="GetServices">
  3038. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/GetServices"/>
  3039. <wsdl:input>
  3040. <soap:body use="literal"/>
  3041. </wsdl:input>
  3042. <wsdl:output>
  3043. <soap:body use="literal"/>
  3044. </wsdl:output>
  3045. </wsdl:operation>
  3046. <wsdl:operation name="GetServiceCapabilities">
  3047. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/GetServiceCapabilities"/>
  3048. <wsdl:input>
  3049. <soap:body use="literal"/>
  3050. </wsdl:input>
  3051. <wsdl:output>
  3052. <soap:body use="literal"/>
  3053. </wsdl:output>
  3054. </wsdl:operation>
  3055. <wsdl:operation name="GetDeviceInformation">
  3056. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/GetDeviceInformation"/>
  3057. <wsdl:input>
  3058. <soap:body use="literal"/>
  3059. </wsdl:input>
  3060. <wsdl:output>
  3061. <soap:body use="literal"/>
  3062. </wsdl:output>
  3063. </wsdl:operation>
  3064. <wsdl:operation name="SetSystemDateAndTime">
  3065. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/SetSystemDateAndTime"/>
  3066. <wsdl:input>
  3067. <soap:body use="literal"/>
  3068. </wsdl:input>
  3069. <wsdl:output>
  3070. <soap:body use="literal"/>
  3071. </wsdl:output>
  3072. </wsdl:operation>
  3073. <wsdl:operation name="GetSystemDateAndTime">
  3074. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/GetSystemDateAndTime"/>
  3075. <wsdl:input>
  3076. <soap:body use="literal"/>
  3077. </wsdl:input>
  3078. <wsdl:output>
  3079. <soap:body use="literal"/>
  3080. </wsdl:output>
  3081. </wsdl:operation>
  3082. <wsdl:operation name="SetSystemFactoryDefault">
  3083. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/SetSystemFactoryDefault"/>
  3084. <wsdl:input>
  3085. <soap:body use="literal"/>
  3086. </wsdl:input>
  3087. <wsdl:output>
  3088. <soap:body use="literal"/>
  3089. </wsdl:output>
  3090. </wsdl:operation>
  3091. <wsdl:operation name="UpgradeSystemFirmware">
  3092. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/UpgradeSystemFirmware"/>
  3093. <wsdl:input>
  3094. <soap:body use="literal"/>
  3095. </wsdl:input>
  3096. <wsdl:output>
  3097. <soap:body use="literal"/>
  3098. </wsdl:output>
  3099. </wsdl:operation>
  3100. <wsdl:operation name="SystemReboot">
  3101. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/SystemReboot"/>
  3102. <wsdl:input>
  3103. <soap:body use="literal"/>
  3104. </wsdl:input>
  3105. <wsdl:output>
  3106. <soap:body use="literal"/>
  3107. </wsdl:output>
  3108. </wsdl:operation>
  3109. <wsdl:operation name="RestoreSystem">
  3110. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/RestoreSystem"/>
  3111. <wsdl:input>
  3112. <soap:body use="literal"/>
  3113. </wsdl:input>
  3114. <wsdl:output>
  3115. <soap:body use="literal"/>
  3116. </wsdl:output>
  3117. </wsdl:operation>
  3118. <wsdl:operation name="GetSystemBackup">
  3119. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/GetSystemBackup"/>
  3120. <wsdl:input>
  3121. <soap:body use="literal"/>
  3122. </wsdl:input>
  3123. <wsdl:output>
  3124. <soap:body use="literal"/>
  3125. </wsdl:output>
  3126. </wsdl:operation>
  3127. <wsdl:operation name="GetSystemLog">
  3128. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/GetSystemLog"/>
  3129. <wsdl:input>
  3130. <soap:body use="literal"/>
  3131. </wsdl:input>
  3132. <wsdl:output>
  3133. <soap:body use="literal"/>
  3134. </wsdl:output>
  3135. </wsdl:operation>
  3136. <wsdl:operation name="GetSystemSupportInformation">
  3137. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/GetSystemSupportInformation"/>
  3138. <wsdl:input>
  3139. <soap:body use="literal"/>
  3140. </wsdl:input>
  3141. <wsdl:output>
  3142. <soap:body use="literal"/>
  3143. </wsdl:output>
  3144. </wsdl:operation>
  3145. <wsdl:operation name="GetScopes">
  3146. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/GetScopes"/>
  3147. <wsdl:input>
  3148. <soap:body use="literal"/>
  3149. </wsdl:input>
  3150. <wsdl:output>
  3151. <soap:body use="literal"/>
  3152. </wsdl:output>
  3153. </wsdl:operation>
  3154. <wsdl:operation name="SetScopes">
  3155. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/SetScopes"/>
  3156. <wsdl:input>
  3157. <soap:body use="literal"/>
  3158. </wsdl:input>
  3159. <wsdl:output>
  3160. <soap:body use="literal"/>
  3161. </wsdl:output>
  3162. </wsdl:operation>
  3163. <wsdl:operation name="AddScopes">
  3164. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/AddScopes"/>
  3165. <wsdl:input>
  3166. <soap:body use="literal"/>
  3167. </wsdl:input>
  3168. <wsdl:output>
  3169. <soap:body use="literal"/>
  3170. </wsdl:output>
  3171. </wsdl:operation>
  3172. <wsdl:operation name="RemoveScopes">
  3173. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/RemoveScopes"/>
  3174. <wsdl:input>
  3175. <soap:body use="literal"/>
  3176. </wsdl:input>
  3177. <wsdl:output>
  3178. <soap:body use="literal"/>
  3179. </wsdl:output>
  3180. </wsdl:operation>
  3181. <wsdl:operation name="GetDiscoveryMode">
  3182. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/GetDiscoveryMode"/>
  3183. <wsdl:input>
  3184. <soap:body use="literal"/>
  3185. </wsdl:input>
  3186. <wsdl:output>
  3187. <soap:body use="literal"/>
  3188. </wsdl:output>
  3189. </wsdl:operation>
  3190. <wsdl:operation name="SetDiscoveryMode">
  3191. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/SetDiscoveryMode"/>
  3192. <wsdl:input>
  3193. <soap:body use="literal"/>
  3194. </wsdl:input>
  3195. <wsdl:output>
  3196. <soap:body use="literal"/>
  3197. </wsdl:output>
  3198. </wsdl:operation>
  3199. <wsdl:operation name="GetRemoteDiscoveryMode">
  3200. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/GetRemoteDiscoveryMode"/>
  3201. <wsdl:input>
  3202. <soap:body use="literal"/>
  3203. </wsdl:input>
  3204. <wsdl:output>
  3205. <soap:body use="literal"/>
  3206. </wsdl:output>
  3207. </wsdl:operation>
  3208. <wsdl:operation name="SetRemoteDiscoveryMode">
  3209. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/SetRemoteDiscoveryMode"/>
  3210. <wsdl:input>
  3211. <soap:body use="literal"/>
  3212. </wsdl:input>
  3213. <wsdl:output>
  3214. <soap:body use="literal"/>
  3215. </wsdl:output>
  3216. </wsdl:operation>
  3217. <wsdl:operation name="GetDPAddresses">
  3218. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/GetDPAddresses"/>
  3219. <wsdl:input>
  3220. <soap:body use="literal"/>
  3221. </wsdl:input>
  3222. <wsdl:output>
  3223. <soap:body use="literal"/>
  3224. </wsdl:output>
  3225. </wsdl:operation>
  3226. <wsdl:operation name="GetEndpointReference">
  3227. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/GetEndpointReference"/>
  3228. <wsdl:input>
  3229. <soap:body use="literal"/>
  3230. </wsdl:input>
  3231. <wsdl:output>
  3232. <soap:body use="literal"/>
  3233. </wsdl:output>
  3234. </wsdl:operation>
  3235. <wsdl:operation name="GetRemoteUser">
  3236. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/GetRemoteUser"/>
  3237. <wsdl:input>
  3238. <soap:body use="literal"/>
  3239. </wsdl:input>
  3240. <wsdl:output>
  3241. <soap:body use="literal"/>
  3242. </wsdl:output>
  3243. </wsdl:operation>
  3244. <wsdl:operation name="SetRemoteUser">
  3245. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/SetRemoteUser"/>
  3246. <wsdl:input>
  3247. <soap:body use="literal"/>
  3248. </wsdl:input>
  3249. <wsdl:output>
  3250. <soap:body use="literal"/>
  3251. </wsdl:output>
  3252. </wsdl:operation>
  3253. <wsdl:operation name="GetUsers">
  3254. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/GetUsers"/>
  3255. <wsdl:input>
  3256. <soap:body use="literal"/>
  3257. </wsdl:input>
  3258. <wsdl:output>
  3259. <soap:body use="literal"/>
  3260. </wsdl:output>
  3261. </wsdl:operation>
  3262. <wsdl:operation name="CreateUsers">
  3263. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/CreateUsers"/>
  3264. <wsdl:input>
  3265. <soap:body use="literal"/>
  3266. </wsdl:input>
  3267. <wsdl:output>
  3268. <soap:body use="literal"/>
  3269. </wsdl:output>
  3270. </wsdl:operation>
  3271. <wsdl:operation name="DeleteUsers">
  3272. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/DeleteUsers"/>
  3273. <wsdl:input>
  3274. <soap:body use="literal"/>
  3275. </wsdl:input>
  3276. <wsdl:output>
  3277. <soap:body use="literal"/>
  3278. </wsdl:output>
  3279. </wsdl:operation>
  3280. <wsdl:operation name="SetUser">
  3281. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/SetUser"/>
  3282. <wsdl:input>
  3283. <soap:body use="literal"/>
  3284. </wsdl:input>
  3285. <wsdl:output>
  3286. <soap:body use="literal"/>
  3287. </wsdl:output>
  3288. </wsdl:operation>
  3289. <wsdl:operation name="GetWsdlUrl">
  3290. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/GetWsdlUrl"/>
  3291. <wsdl:input>
  3292. <soap:body use="literal"/>
  3293. </wsdl:input>
  3294. <wsdl:output>
  3295. <soap:body use="literal"/>
  3296. </wsdl:output>
  3297. </wsdl:operation>
  3298. <wsdl:operation name="GetCapabilities">
  3299. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/GetCapabilities"/>
  3300. <wsdl:input>
  3301. <soap:body use="literal"/>
  3302. </wsdl:input>
  3303. <wsdl:output>
  3304. <soap:body use="literal"/>
  3305. </wsdl:output>
  3306. </wsdl:operation>
  3307. <wsdl:operation name="SetDPAddresses">
  3308. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/SetDPAddresses"/>
  3309. <wsdl:input>
  3310. <soap:body use="literal"/>
  3311. </wsdl:input>
  3312. <wsdl:output>
  3313. <soap:body use="literal"/>
  3314. </wsdl:output>
  3315. </wsdl:operation>
  3316. <wsdl:operation name="GetHostname">
  3317. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/GetHostname"/>
  3318. <wsdl:input>
  3319. <soap:body use="literal"/>
  3320. </wsdl:input>
  3321. <wsdl:output>
  3322. <soap:body use="literal"/>
  3323. </wsdl:output>
  3324. </wsdl:operation>
  3325. <wsdl:operation name="SetHostname">
  3326. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/SetHostname"/>
  3327. <wsdl:input>
  3328. <soap:body use="literal"/>
  3329. </wsdl:input>
  3330. <wsdl:output>
  3331. <soap:body use="literal"/>
  3332. </wsdl:output>
  3333. </wsdl:operation>
  3334. <wsdl:operation name="SetHostnameFromDHCP">
  3335. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/SetHostnameFromDHCP"/>
  3336. <wsdl:input>
  3337. <soap:body use="literal"/>
  3338. </wsdl:input>
  3339. <wsdl:output>
  3340. <soap:body use="literal"/>
  3341. </wsdl:output>
  3342. </wsdl:operation>
  3343. <wsdl:operation name="GetDNS">
  3344. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/GetDNS"/>
  3345. <wsdl:input>
  3346. <soap:body use="literal"/>
  3347. </wsdl:input>
  3348. <wsdl:output>
  3349. <soap:body use="literal"/>
  3350. </wsdl:output>
  3351. </wsdl:operation>
  3352. <wsdl:operation name="SetDNS">
  3353. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/SetDNS"/>
  3354. <wsdl:input>
  3355. <soap:body use="literal"/>
  3356. </wsdl:input>
  3357. <wsdl:output>
  3358. <soap:body use="literal"/>
  3359. </wsdl:output>
  3360. </wsdl:operation>
  3361. <wsdl:operation name="GetNTP">
  3362. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/GetNTP"/>
  3363. <wsdl:input>
  3364. <soap:body use="literal"/>
  3365. </wsdl:input>
  3366. <wsdl:output>
  3367. <soap:body use="literal"/>
  3368. </wsdl:output>
  3369. </wsdl:operation>
  3370. <wsdl:operation name="SetNTP">
  3371. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/SetNTP"/>
  3372. <wsdl:input>
  3373. <soap:body use="literal"/>
  3374. </wsdl:input>
  3375. <wsdl:output>
  3376. <soap:body use="literal"/>
  3377. </wsdl:output>
  3378. </wsdl:operation>
  3379. <wsdl:operation name="GetDynamicDNS">
  3380. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/GetDynamicDNS"/>
  3381. <wsdl:input>
  3382. <soap:body use="literal"/>
  3383. </wsdl:input>
  3384. <wsdl:output>
  3385. <soap:body use="literal"/>
  3386. </wsdl:output>
  3387. </wsdl:operation>
  3388. <wsdl:operation name="SetDynamicDNS">
  3389. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/SetDynamicDNS"/>
  3390. <wsdl:input>
  3391. <soap:body use="literal"/>
  3392. </wsdl:input>
  3393. <wsdl:output>
  3394. <soap:body use="literal"/>
  3395. </wsdl:output>
  3396. </wsdl:operation>
  3397. <wsdl:operation name="GetNetworkInterfaces">
  3398. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/GetNetworkInterfaces"/>
  3399. <wsdl:input>
  3400. <soap:body use="literal"/>
  3401. </wsdl:input>
  3402. <wsdl:output>
  3403. <soap:body use="literal"/>
  3404. </wsdl:output>
  3405. </wsdl:operation>
  3406. <wsdl:operation name="SetNetworkInterfaces">
  3407. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/SetNetworkInterfaces"/>
  3408. <wsdl:input>
  3409. <soap:body use="literal"/>
  3410. </wsdl:input>
  3411. <wsdl:output>
  3412. <soap:body use="literal"/>
  3413. </wsdl:output>
  3414. </wsdl:operation>
  3415. <wsdl:operation name="GetNetworkProtocols">
  3416. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/GetNetworkProtocols"/>
  3417. <wsdl:input>
  3418. <soap:body use="literal"/>
  3419. </wsdl:input>
  3420. <wsdl:output>
  3421. <soap:body use="literal"/>
  3422. </wsdl:output>
  3423. </wsdl:operation>
  3424. <wsdl:operation name="SetNetworkProtocols">
  3425. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/SetNetworkProtocols"/>
  3426. <wsdl:input>
  3427. <soap:body use="literal"/>
  3428. </wsdl:input>
  3429. <wsdl:output>
  3430. <soap:body use="literal"/>
  3431. </wsdl:output>
  3432. </wsdl:operation>
  3433. <wsdl:operation name="GetNetworkDefaultGateway">
  3434. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/GetNetworkDefaultGateway"/>
  3435. <wsdl:input>
  3436. <soap:body use="literal"/>
  3437. </wsdl:input>
  3438. <wsdl:output>
  3439. <soap:body use="literal"/>
  3440. </wsdl:output>
  3441. </wsdl:operation>
  3442. <wsdl:operation name="SetNetworkDefaultGateway">
  3443. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/SetNetworkDefaultGateway"/>
  3444. <wsdl:input>
  3445. <soap:body use="literal"/>
  3446. </wsdl:input>
  3447. <wsdl:output>
  3448. <soap:body use="literal"/>
  3449. </wsdl:output>
  3450. </wsdl:operation>
  3451. <wsdl:operation name="GetZeroConfiguration">
  3452. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/GetZeroConfiguration"/>
  3453. <wsdl:input>
  3454. <soap:body use="literal"/>
  3455. </wsdl:input>
  3456. <wsdl:output>
  3457. <soap:body use="literal"/>
  3458. </wsdl:output>
  3459. </wsdl:operation>
  3460. <wsdl:operation name="SetZeroConfiguration">
  3461. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/SetZeroConfiguration"/>
  3462. <wsdl:input>
  3463. <soap:body use="literal"/>
  3464. </wsdl:input>
  3465. <wsdl:output>
  3466. <soap:body use="literal"/>
  3467. </wsdl:output>
  3468. </wsdl:operation>
  3469. <wsdl:operation name="GetIPAddressFilter">
  3470. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/GetIPAddressFilter"/>
  3471. <wsdl:input>
  3472. <soap:body use="literal"/>
  3473. </wsdl:input>
  3474. <wsdl:output>
  3475. <soap:body use="literal"/>
  3476. </wsdl:output>
  3477. </wsdl:operation>
  3478. <wsdl:operation name="SetIPAddressFilter">
  3479. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/SetIPAddressFilter"/>
  3480. <wsdl:input>
  3481. <soap:body use="literal"/>
  3482. </wsdl:input>
  3483. <wsdl:output>
  3484. <soap:body use="literal"/>
  3485. </wsdl:output>
  3486. </wsdl:operation>
  3487. <wsdl:operation name="AddIPAddressFilter">
  3488. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/AddIPAddressFilter"/>
  3489. <wsdl:input>
  3490. <soap:body use="literal"/>
  3491. </wsdl:input>
  3492. <wsdl:output>
  3493. <soap:body use="literal"/>
  3494. </wsdl:output>
  3495. </wsdl:operation>
  3496. <wsdl:operation name="RemoveIPAddressFilter">
  3497. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/RemoveIPAddressFilter"/>
  3498. <wsdl:input>
  3499. <soap:body use="literal"/>
  3500. </wsdl:input>
  3501. <wsdl:output>
  3502. <soap:body use="literal"/>
  3503. </wsdl:output>
  3504. </wsdl:operation>
  3505. <wsdl:operation name="GetAccessPolicy">
  3506. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/GetAccessPolicy"/>
  3507. <wsdl:input>
  3508. <soap:body use="literal"/>
  3509. </wsdl:input>
  3510. <wsdl:output>
  3511. <soap:body use="literal"/>
  3512. </wsdl:output>
  3513. </wsdl:operation>
  3514. <wsdl:operation name="SetAccessPolicy">
  3515. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/SetAccessPolicy"/>
  3516. <wsdl:input>
  3517. <soap:body use="literal"/>
  3518. </wsdl:input>
  3519. <wsdl:output>
  3520. <soap:body use="literal"/>
  3521. </wsdl:output>
  3522. </wsdl:operation>
  3523. <wsdl:operation name="CreateCertificate">
  3524. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/CreateCertificate"/>
  3525. <wsdl:input>
  3526. <soap:body use="literal"/>
  3527. </wsdl:input>
  3528. <wsdl:output>
  3529. <soap:body use="literal"/>
  3530. </wsdl:output>
  3531. </wsdl:operation>
  3532. <wsdl:operation name="GetCertificates">
  3533. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/GetCertificates"/>
  3534. <wsdl:input>
  3535. <soap:body use="literal"/>
  3536. </wsdl:input>
  3537. <wsdl:output>
  3538. <soap:body use="literal"/>
  3539. </wsdl:output>
  3540. </wsdl:operation>
  3541. <wsdl:operation name="GetCertificatesStatus">
  3542. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/GetCertificatesStatus"/>
  3543. <wsdl:input>
  3544. <soap:body use="literal"/>
  3545. </wsdl:input>
  3546. <wsdl:output>
  3547. <soap:body use="literal"/>
  3548. </wsdl:output>
  3549. </wsdl:operation>
  3550. <wsdl:operation name="SetCertificatesStatus">
  3551. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/SetCertificatesStatus"/>
  3552. <wsdl:input>
  3553. <soap:body use="literal"/>
  3554. </wsdl:input>
  3555. <wsdl:output>
  3556. <soap:body use="literal"/>
  3557. </wsdl:output>
  3558. </wsdl:operation>
  3559. <wsdl:operation name="DeleteCertificates">
  3560. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/DeleteCertificates"/>
  3561. <wsdl:input>
  3562. <soap:body use="literal"/>
  3563. </wsdl:input>
  3564. <wsdl:output>
  3565. <soap:body use="literal"/>
  3566. </wsdl:output>
  3567. </wsdl:operation>
  3568. <wsdl:operation name="GetPkcs10Request">
  3569. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/GetPkcs10Request"/>
  3570. <wsdl:input>
  3571. <soap:body use="literal"/>
  3572. </wsdl:input>
  3573. <wsdl:output>
  3574. <soap:body use="literal"/>
  3575. </wsdl:output>
  3576. </wsdl:operation>
  3577. <wsdl:operation name="LoadCertificates">
  3578. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/LoadCertificates"/>
  3579. <wsdl:input>
  3580. <soap:body use="literal"/>
  3581. </wsdl:input>
  3582. <wsdl:output>
  3583. <soap:body use="literal"/>
  3584. </wsdl:output>
  3585. </wsdl:operation>
  3586. <wsdl:operation name="GetClientCertificateMode">
  3587. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/GetClientCertificateMode"/>
  3588. <wsdl:input>
  3589. <soap:body use="literal"/>
  3590. </wsdl:input>
  3591. <wsdl:output>
  3592. <soap:body use="literal"/>
  3593. </wsdl:output>
  3594. </wsdl:operation>
  3595. <wsdl:operation name="SetClientCertificateMode">
  3596. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/SetClientCertificateMode"/>
  3597. <wsdl:input>
  3598. <soap:body use="literal"/>
  3599. </wsdl:input>
  3600. <wsdl:output>
  3601. <soap:body use="literal"/>
  3602. </wsdl:output>
  3603. </wsdl:operation>
  3604. <wsdl:operation name="GetRelayOutputs">
  3605. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/GetRelayOutputs"/>
  3606. <wsdl:input>
  3607. <soap:body use="literal"/>
  3608. </wsdl:input>
  3609. <wsdl:output>
  3610. <soap:body use="literal"/>
  3611. </wsdl:output>
  3612. </wsdl:operation>
  3613. <wsdl:operation name="SetRelayOutputSettings">
  3614. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/SetRelayOutputSettings"/>
  3615. <wsdl:input>
  3616. <soap:body use="literal"/>
  3617. </wsdl:input>
  3618. <wsdl:output>
  3619. <soap:body use="literal"/>
  3620. </wsdl:output>
  3621. </wsdl:operation>
  3622. <wsdl:operation name="SetRelayOutputState">
  3623. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/SetRelayOutputState"/>
  3624. <wsdl:input>
  3625. <soap:body use="literal"/>
  3626. </wsdl:input>
  3627. <wsdl:output>
  3628. <soap:body use="literal"/>
  3629. </wsdl:output>
  3630. </wsdl:operation>
  3631. <wsdl:operation name="SendAuxiliaryCommand">
  3632. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/SendAuxiliaryCommand"/>
  3633. <wsdl:input>
  3634. <soap:body use="literal"/>
  3635. </wsdl:input>
  3636. <wsdl:output>
  3637. <soap:body use="literal"/>
  3638. </wsdl:output>
  3639. </wsdl:operation>
  3640. <wsdl:operation name="GetCACertificates">
  3641. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/GetCACertificates"/>
  3642. <wsdl:input>
  3643. <soap:body use="literal"/>
  3644. </wsdl:input>
  3645. <wsdl:output>
  3646. <soap:body use="literal"/>
  3647. </wsdl:output>
  3648. </wsdl:operation>
  3649. <wsdl:operation name="LoadCertificateWithPrivateKey">
  3650. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/LoadCertificateWithPrivateKey"/>
  3651. <wsdl:input>
  3652. <soap:body use="literal"/>
  3653. </wsdl:input>
  3654. <wsdl:output>
  3655. <soap:body use="literal"/>
  3656. </wsdl:output>
  3657. </wsdl:operation>
  3658. <wsdl:operation name="GetCertificateInformation">
  3659. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/GetCertificateInformation"/>
  3660. <wsdl:input>
  3661. <soap:body use="literal"/>
  3662. </wsdl:input>
  3663. <wsdl:output>
  3664. <soap:body use="literal"/>
  3665. </wsdl:output>
  3666. </wsdl:operation>
  3667. <wsdl:operation name="LoadCACertificates">
  3668. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/LoadCACertificates"/>
  3669. <wsdl:input>
  3670. <soap:body use="literal"/>
  3671. </wsdl:input>
  3672. <wsdl:output>
  3673. <soap:body use="literal"/>
  3674. </wsdl:output>
  3675. </wsdl:operation>
  3676. <wsdl:operation name="CreateDot1XConfiguration">
  3677. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/CreateDot1XConfiguration"/>
  3678. <wsdl:input>
  3679. <soap:body use="literal"/>
  3680. </wsdl:input>
  3681. <wsdl:output>
  3682. <soap:body use="literal"/>
  3683. </wsdl:output>
  3684. </wsdl:operation>
  3685. <wsdl:operation name="SetDot1XConfiguration">
  3686. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/SetDot1XConfiguration"/>
  3687. <wsdl:input>
  3688. <soap:body use="literal"/>
  3689. </wsdl:input>
  3690. <wsdl:output>
  3691. <soap:body use="literal"/>
  3692. </wsdl:output>
  3693. </wsdl:operation>
  3694. <wsdl:operation name="GetDot1XConfiguration">
  3695. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/GetDot1XConfiguration"/>
  3696. <wsdl:input>
  3697. <soap:body use="literal"/>
  3698. </wsdl:input>
  3699. <wsdl:output>
  3700. <soap:body use="literal"/>
  3701. </wsdl:output>
  3702. </wsdl:operation>
  3703. <wsdl:operation name="GetDot1XConfigurations">
  3704. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/GetDot1XConfigurations"/>
  3705. <wsdl:input>
  3706. <soap:body use="literal"/>
  3707. </wsdl:input>
  3708. <wsdl:output>
  3709. <soap:body use="literal"/>
  3710. </wsdl:output>
  3711. </wsdl:operation>
  3712. <wsdl:operation name="DeleteDot1XConfiguration">
  3713. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/DeleteDot1XConfiguration"/>
  3714. <wsdl:input>
  3715. <soap:body use="literal"/>
  3716. </wsdl:input>
  3717. <wsdl:output>
  3718. <soap:body use="literal"/>
  3719. </wsdl:output>
  3720. </wsdl:operation>
  3721. <wsdl:operation name="GetDot11Capabilities">
  3722. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/GetDot11Capabilities"/>
  3723. <wsdl:input>
  3724. <soap:body use="literal"/>
  3725. </wsdl:input>
  3726. <wsdl:output>
  3727. <soap:body use="literal"/>
  3728. </wsdl:output>
  3729. </wsdl:operation>
  3730. <wsdl:operation name="GetDot11Status">
  3731. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/GetDot11Status"/>
  3732. <wsdl:input>
  3733. <soap:body use="literal"/>
  3734. </wsdl:input>
  3735. <wsdl:output>
  3736. <soap:body use="literal"/>
  3737. </wsdl:output>
  3738. </wsdl:operation>
  3739. <wsdl:operation name="ScanAvailableDot11Networks">
  3740. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/ScanAvailableDot11Networks"/>
  3741. <wsdl:input>
  3742. <soap:body use="literal"/>
  3743. </wsdl:input>
  3744. <wsdl:output>
  3745. <soap:body use="literal"/>
  3746. </wsdl:output>
  3747. </wsdl:operation>
  3748. <wsdl:operation name="GetSystemUris">
  3749. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/GetSystemUris"/>
  3750. <wsdl:input>
  3751. <soap:body use="literal"/>
  3752. </wsdl:input>
  3753. <wsdl:output>
  3754. <soap:body use="literal"/>
  3755. </wsdl:output>
  3756. </wsdl:operation>
  3757. <wsdl:operation name="StartFirmwareUpgrade">
  3758. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/StartFirmwareUpgrade"/>
  3759. <wsdl:input>
  3760. <soap:body use="literal"/>
  3761. </wsdl:input>
  3762. <wsdl:output>
  3763. <soap:body use="literal"/>
  3764. </wsdl:output>
  3765. </wsdl:operation>
  3766. <wsdl:operation name="StartSystemRestore">
  3767. <soap:operation soapAction="http://www.onvif.org/ver10/device/wsdl/StartSystemRestore"/>
  3768. <wsdl:input>
  3769. <soap:body use="literal"/>
  3770. </wsdl:input>
  3771. <wsdl:output>
  3772. <soap:body use="literal"/>
  3773. </wsdl:output>
  3774. </wsdl:operation>
  3775. </wsdl:binding>
  3776. <wsdl:service name="DeviceService">
  3777. <wsdl:port name="DevicePort" binding="tds:DeviceBinding">
  3778. <soap:address location="http://192.168.0.51:8888/onvif/device_service"/>
  3779. </wsdl:port>
  3780. </wsdl:service>
  3781. </wsdl:definitions>