forked from onvif/specs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCore.xml
9044 lines (9036 loc) · 448 KB
/
Core.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<?xml-stylesheet href="docbook.xsl" type="text/xsl" ?>
<book xmlns="http://docbook.org/ns/docbook" version="5.0">
<info>
<title>ONVIF Core Specification</title>
<titleabbrev>ONVIF Core Spec</titleabbrev>
<releaseinfo>23.06</releaseinfo>
<author>
<orgname>ONVIF™</orgname>
<uri>www.onvif.org</uri>
</author>
<pubdate>June, 2023</pubdate>
<mediaobject>
<imageobject>
<imagedata fileref="media/logo.png" contentwidth="60mm"/>
</imageobject>
</mediaobject>
<copyright>
<year>2008-2023</year>
<holder>ONVIF™ All rights reserved.</holder>
</copyright>
<legalnotice>
<para>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.</para>
<para>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.</para>
<para>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.</para>
</legalnotice>
<revhistory>
<revision>
<revnumber>2.1</revnumber>
<date>Jul-2011</date>
<author>
<personname>Hans Busch</personname>
</author>
<revremark>Separated non Core services. Change Request 52, 56, 57, 58, 61, 64, 69, 88, 154,
200, 224, 235, 243, 244, 245, 246, 248, 253</revremark>
</revision>
<revision>
<revnumber>2.1.1</revnumber>
<date>Jan-2012</date>
<author>
<personname>Hans Busch</personname>
</author>
<revremark>Change Request 242, 263, 280, 286, 329, 335, 362, 433, 501, 512, 535, 536, 540,
555 - 562, 564, 569, 581, 587</revremark>
</revision>
<revision>
<revnumber>2.2</revnumber>
<date>April-2012</date>
<author>
<personname>Hans Busch</personname>
</author>
<revremark>Add Device and Service Monitoring Events. Change Request 620</revremark>
</revision>
<revision>
<revnumber>2.2.1</revnumber>
<date>Dec-2012</date>
<author>
<personname>Hans Busch</personname>
</author>
<author>
<personname>Michio Hirai</personname>
</author>
<revremark>Change Request 693, 707, 746, 751, 783, 785, 798, 824, 854, 843, 860, 720, 756,
874</revremark>
</revision>
<revision>
<revnumber>2.3</revnumber>
<date>May-2013</date>
<author>
<personname>Michio Hirai</personname>
</author>
<revremark>Event service extension (Seek, Persistent notification storage) Change Request
898, 693, 844, 793, 928, 859, 876, 887, 950, 989, 1025, 1032, 873</revremark>
</revision>
<revision>
<revnumber>2.4</revnumber>
<date>Aug-2013</date>
<author>
<personname>Michio Hirai</personname>
</author>
<revremark>Change Request 1055, 1056, 1057, 1089, 1143</revremark>
</revision>
<revision>
<revnumber>2.4.1</revnumber>
<date>Dec-2013</date>
<author>
<personname>Michio Hirai</personname>
</author>
<revremark>Change Request 1185, 1213, 1216</revremark>
</revision>
<revision>
<revnumber>2.4.2</revnumber>
<date>May-2014</date>
<author>
<personname>Hans Busch</personname>
</author>
<author>
<personname>Michio Hirai</personname>
</author>
<revremark>Change Request 1325, 1238, 1244, 1409, 1290,1300, 1303, 1241, 1308, 1309, 1359,
1372, 1375, 1374, 1299, 1301, 1302, 1371, 1373</revremark>
</revision>
<revision>
<revnumber>2.5</revnumber>
<date>Jul-2014</date>
<author>
<personname>Hasan Timucin Ozdemir</personname>
</author>
<revremark>Added 4.5.8 Storage configuration Added 8.7 Storage Configuration (includes
additional configuration interface operations) Added Table 98: Device service specific
fault codes (additional fault codes due to new storage configuration interfaces) Added
8.8.7 Asynchronous Operation Status (an event for reporting the progress of an
asynchronous operation to the monitoring clients) Added optional FileProgressStatus
element to event description Added StorageConfiguration capability in
GetServiceCapabilities Change Request 1502, 1430, 1467, 1471, 1478, 1482, 1483, 1488,
1490, 1491, 1515, 1539 Change Request 1502, 1430, 1467, 1471, 1478, 1482, 1483, 1488,
1490, 1491, 1515, 1539</revremark>
</revision>
<revision>
<revnumber>2.6</revnumber>
<date>Jun-2015</date>
<author>
<personname>Michio Hirai</personname>
</author>
<revremark>Change Request 1581, 1582, 1585, 1586, 1587, 1588, 1662, 1661, 1663,
1666</revremark>
</revision>
<revision>
<revnumber>2.6.1</revnumber>
<date>Dec-2015</date>
<author>
<personname>Michio Hirai</personname>
</author>
<author>
<personname>Hiroyuki Sano</personname>
</author>
<revremark>Change Request 1672, 1677, 1721, 1729</revremark>
</revision>
<revision>
<revnumber>16.06</revnumber>
<date>Jun-2016</date>
<author>
<personname>Hiroyuki Sano</personname>
</author>
<revremark>Change Request 1743, 1760, 1761, 1762, 1773, 1782, 1841, 1842</revremark>
</revision>
<revision>
<revnumber>16.12</revnumber>
<date>Dec-2016</date>
<author>
<personname>Ottavio Campana</personname>
</author>
<author>
<personname>Hiroyuki Sano</personname>
</author>
<revremark>Added Geo Location in , - Change Request 1641, 1777, 1876, 1883, 1952</revremark>
</revision>
<revision>
<revnumber>17.06</revnumber>
<date>Jun-2017</date>
<author>
<personname>Hiroyuki Sano</personname>
</author>
<author>
<personname>Enrico Campana</personname>
</author>
<revremark>Change Request 2025, 2026, 2033, 2056, 2065, 2102, 2108, 2142 Add GeoLocation
event</revremark>
</revision>
<revision>
<revnumber>17.12</revnumber>
<date>Dec-2017</date>
<author>
<personname>Hiroyuki Sano</personname>
</author>
<revremark>Change Request 2024</revremark>
</revision>
<revision>
<revnumber>18.06</revnumber>
<date>Jun-2018</date>
<author>
<personname>Hiroyuki Sano</personname>
</author>
<revremark>Change Request 2205, 2226, 2237, 2251, 2267, 2312</revremark>
</revision>
<revision>
<revnumber>18.12</revnumber>
<date>Dec-2018</date>
<author>
<personname>Hiroyuki Sano</personname>
</author>
<revremark>Change Request 2382</revremark>
</revision>
<revision>
<revnumber>19.06</revnumber>
<date>Jun-2019</date>
<author>
<personname>Hiroyuki Sano</personname>
</author>
<revremark>Change Request 2453</revremark>
</revision>
<revision>
<revnumber>19.12</revnumber>
<date>Dec-2019</date>
<author>
<personname>Hiroyuki Sano</personname>
</author>
<revremark>Change Request 2581, 2629</revremark>
</revision>
<revision>
<revnumber>20.06</revnumber>
<date>Jun-2020</date>
<author>
<personname>Michio Hirai</personname>
</author>
<revremark>Change Request 2558</revremark>
</revision>
<revision>
<revnumber>20.06</revnumber>
<date>Jun-2020</date>
<author>
<personname>Fredrik Svensson</personname>
</author>
<revremark>Add section on Event Broker</revremark>
</revision>
<revision>
<revnumber>20.12</revnumber>
<date>Dec-2020</date>
<author>
<personname>Hans Busch</personname>
</author>
<revremark>Update layout and consolidate framework section. Add options for network
configuration and user management support.</revremark>
</revision>
<revision>
<revnumber>21.06</revnumber>
<date>Jun-2021</date>
<author>
<personname>Hans Busch</personname>
</author>
<revremark>Add various capabilities. Update MQTT ABNF definition.</revremark>
</revision>
<revision>
<revnumber>21.12</revnumber>
<date>Dec-2021</date>
<author>
<personname>Davide Cristanelli</personname>
</author>
<revremark>Add security policy configuration APIs.</revremark>
</revision>
<revision>
<revnumber>22.06</revnumber>
<date>Jun-2022</date>
<author>
<personname>Fredrik Svensson, Michael Adam, Sergey Bogdanov, Sriram Bhetanabottla</personname>
</author>
<revremark>Restructure MQTT topic and payload sections. Include metadata filter. Add Addon capability. Rename sections to show real name of service command.</revremark>
</revision>
<revision>
<revnumber>22.12</revnumber>
<date>Dec-2022</date>
<author>
<personname>Venkateswara Rao, Hans Busch</personname>
</author>
<revremark>HTTP Digest Authentication - SHA 256 support as per RFC 7616. Clarify behavior in case no hostname has been assigned. Unify analytics and core attribute and value handling.</revremark>
</revision>
<revision>
<revnumber>23.06</revnumber>
<date>Jun-2023</date>
<author>
<personname>Felix Schuetz</personname>
</author>
<revremark>Extend storage configuration for object store.</revremark>
</revision>
</revhistory>
</info>
<preface>
<title>Contributors</title>
<para>Version 1</para>
<informaltable>
<tgroup cols="4">
<colspec colname="c1" colwidth="25%"/>
<colspec colname="c2" colwidth="5%"/>
<colspec colname="newCol3" colwidth="25%"/>
<colspec colname="newCol4" colwidth="25%"/>
<tbody valign="top">
<row>
<entry>Christian Gehrmann (Ed.)></entry>
<entry>Axis Communications AB</entry>
<entry>Alexander Neubeck</entry>
<entry>Bosch Security Systems</entry>
</row>
<row>
<entry>Mikael Ranbro</entry>
<entry>Axis Communications AB</entry>
<entry>Susanne Kinza</entry>
<entry>Bosch Security Systems</entry>
</row>
<row>
<entry>Johan Nyström</entry>
<entry>Axis Communications AB</entry>
<entry>Markus Wierny</entry>
<entry>Bosch Security Systems</entry>
</row>
<row>
<entry>Ulf Olsson</entry>
<entry>Axis Communications AB</entry>
<entry>Rainer Bauereiss</entry>
<entry>Bosch Security Systems</entry>
</row>
<row>
<entry>Göran Haraldsson</entry>
<entry>Axis Communications AB</entry>
<entry>Masashi Tonomura</entry>
<entry>Sony Corporation</entry>
</row>
<row>
<entry>Daniel Elvin</entry>
<entry>Axis Communications AB</entry>
<entry>Norio Ishibashi</entry>
<entry>Sony Corporation</entry>
</row>
<row>
<entry>Hans Olsen</entry>
<entry>Axis Communications AB</entry>
<entry>Yoichi Kasahara</entry>
<entry>Sony Corporation</entry>
</row>
<row>
<entry>Martin Rasmusson</entry>
<entry>Axis Communications AB</entry>
<entry>Yoshiyuki Kunito</entry>
<entry>Sony Corporation</entry>
</row>
<row>
<entry>Stefan Andersson (co Ed.)</entry>
<entry>Axis Communications AB</entry>
<entry/>
<entry/>
</row>
</tbody>
</tgroup>
</informaltable>
<para>Version 2</para>
<informaltable>
<tgroup cols="4">
<colspec colname="c1" colwidth="25%"/>
<colspec colname="c2" colwidth="25%"/>
<colspec colname="newCol3" colwidth="25%"/>
<colspec colname="newCol4" colwidth="25%"/>
<tbody valign="top">
<row>
<entry>Stefan Andersson</entry>
<entry>Axis Communications AB</entry>
<entry> Toshihiro Shimizu </entry>
<entry>Panasonic</entry>
</row>
<row>
<entry>Christian Gehrmann</entry>
<entry>Axis Communications AB</entry>
<entry> Manabu Nakamura </entry>
<entry>Panasonic</entry>
</row>
<row>
<entry>Willy Sagefalk</entry>
<entry>Axis Communications AB</entry>
<entry>Hasan Timucin Ozdemir</entry>
<entry>Panasonic</entry>
</row>
<row>
<entry>Mikael Ranbro</entry>
<entry>Axis Communications AB</entry>
<entry>Hiroaki Ootake</entry>
<entry>Panasonic</entry>
</row>
<row>
<entry>Ted Hartzell</entry>
<entry>Axis Communications AB</entry>
<entry>Young Hoon </entry>
<entry>ITX</entry>
</row>
<row>
<entry>Rainer Bauereiss</entry>
<entry>Bosch Security Systems</entry>
<entry>Sekrai Hong</entry>
<entry>Samsung</entry>
</row>
<row>
<entry>Hans Busch (Ed.)</entry>
<entry>Bosch Security Systems</entry>
<entry>Gero Bäse</entry>
<entry>Siemens</entry>
</row>
<row>
<entry>Susanne Kinza (co Ed.)</entry>
<entry>Bosch Security Systems</entry>
<entry>Michio Hirai</entry>
<entry>Sony Corporation</entry>
</row>
<row>
<entry>Dieu Thanh Nguyen</entry>
<entry>Bosch Security Systems</entry>
<entry>Akihiro Hokimoto</entry>
<entry>Sony Corporation</entry>
</row>
<row>
<entry>Antonie van Woerdekom</entry>
<entry>Bosch Security Systems</entry>
<entry>Masashi Tonomura</entry>
<entry>Sony Corporation</entry>
</row>
<row>
<entry>Shinichi Hatae</entry>
<entry>Canon Inc</entry>
<entry>Masashi Tonomura</entry>
<entry>Sony Corporation</entry>
</row>
<row>
<entry>Takahiro Iwasaki</entry>
<entry>Canon Inc</entry>
<entry/>
<entry/>
</row>
<row>
<entry>Takeshi Asahi</entry>
<entry>Hitachi Ltd</entry>
<entry/>
<entry/>
</row>
<row>
<entry>Colin Caughie</entry>
<entry>IndigoVision Ltd</entry>
<entry/>
<entry/>
</row>
<row>
<entry>Heather Logan</entry>
<entry>IndigoVision Ltd</entry>
<entry/>
<entry/>
</row>
</tbody>
</tgroup>
</informaltable>
</preface>
<preface>
<title>INTRODUCTION</title>
<para>The goal of this specification is to provide the common base for a fully interoperable
network implementation comprised of products from different network vendors. This standard
describes the network model, software interfaces, software data types and data exchange
patterns. The standard reuses existing relevant standards where available, and introduces new
specifications only where necessary.</para>
<para>This is the ONVIF core specification. It is accompanied by a set of computer readable interface definitions:</para>
<itemizedlist>
<listitem>
<para>ONVIF Schema [ONVIF Schema]</para>
</listitem>
<listitem>
<para>ONVIF Device Service WSDL [ONVIF DM WSDL]</para>
</listitem>
<listitem>
<para>ONVIF Event Service WSDL [ONVIF Event WSDL]</para>
</listitem>
<listitem>
<para>ONVIF Topic Namespace XML [ONVIF Topic Namespace]</para>
</listitem>
</itemizedlist>
<para>The purpose of this document is to define the ONVIF specification framework, and is divided into the following sections: </para>
<para>Specification Overview: Gives an overview of the different specification parts and how they are related to each other.</para>
<para>Web Services Frame Work: Offers a brief introduction to Web Services and the Web Services basis for the ONVIF specifications.</para>
<para>IP Configuration: Defines the ONVIF network IP configuration requirements.</para>
<para>Device Discovery: Describes how devices are discovered in local and remote networks.</para>
<para>Device Management: Defines the configuration of basics like network and security related settings.</para>
<para>Event Handling: Defines how to subscribe to and receive notifications (events) from a device.</para>
<para>Security Section: Defines the message level security requirements on ONVIF compliant implementations.</para>
</preface>
<chapter>
<title>Scope</title>
<para>This specification defines procedures for communication between network clients and devices. This new set of specifications makes it possible to build e.g. network video systems with devices and receivers from different manufacturers using common and well defined interfaces. The functions defined in this specification covers discovery, device management and event framework. </para>
<para>Supplementary dedicated services as e.g. media configuration, real-time streaming of audio and video, Pan, Tilt and Zoom (PTZ) control, video analytics as well as control, search and replay of recordings are defined in separate documents. </para>
<para>The management and control interfaces defined in this standard are described as Web Services. This standard also contains full XML schema and Web Service Description Language (WSDL) definitions. </para>
<para>In order to offer full plug-and-play interoperability, the standard defines procedures for device discovery. The device discovery mechanisms in the standard are based on the WS-Discovery specification with extensions. </para>
</chapter>
<chapter>
<title>Normative references</title>
<para>IEEE 1003.1, The Open Group Base Specifications Issue 6, IEEE Std 1003.1, 2004 Edition</para>
<para role="reference"><<link xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://pubs.opengroup.org/onlinepubs/009695399/"></link>></para>
<para>IETF RFC 2131, Dynamic Host Configuration Protocol</para>
<para role="reference"><<link xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://www.ietf.org/rfc/rfc2131.txt"></link>></para>
<para>IETF RFC 2136, Dynamic Updates in the Domain Name System (DNS UPDATE)</para>
<para role="reference"><<link xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://www.ietf.org/rfc/rfc2136.txt"></link>></para>
<para>IETF RFC 2616, Hypertext Transfer Protocol -- HTTP/1.1</para>
<para role="reference"><<link xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://www.ietf.org/rfc/rfc2616.txt"></link>></para>
<para>IETF RFC 2617, HTTP Authentication: Basic and Digest Access Authentication</para>
<para role="reference"><<link xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://www.ietf.org/rfc/rfc2617.txt"></link>></para>
<para>IETF RFC 7616, HTTP Digest Access Authentication</para>
<para role="reference"><<link xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://www.ietf.org/rfc/rfc7616.txt"></link>></para>
<para>IETF RFC 3315, Dynamic Host Configuration Protocol for IPv6 (DHCPv6)</para>
<para role="reference"><<link xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://www.ietf.org/rfc/rfc3315.txt"></link>></para>
<para>IETF RFC 3548, The Base16, Base32, and Base64 Data Encodings</para>
<para role="reference"><<link xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://www.ietf.org/rfc/rfc3548.txt"></link>></para>
<para>IETF RFC 3927, Dynamic Configuration of IPv4 Link-Local Addresses</para>
<para role="reference"><<link xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://www.ietf.org/rfc/rfc3927.txt"></link>></para>
<para>IETF RFC 3986, Uniform Resource Identifier (URI): Generic Syntax</para>
<para role="reference"><<link xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://www.ietf.org/rfc/rfc3986.txt"></link>></para>
<para>IETF RFC 4122, A Universally Unique IDentifier (UUID) URN Namespace</para>
<para role="reference"><<link xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://www.ietf.org/rfc/rfc4122.txt"></link>></para>
<para>IETF 4702, The Dynamic Host Configuration Protocol (DHCP) Client Fully Qualified Domain Name (FQDN) Option</para>
<para role="reference"><<link xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://www.ietf.org/rfc/rfc4702.txt"></link>></para>
<para>IETF 4861, Neighbor Discovery for IP version 6 (IPv6)</para>
<para role="reference"><<link xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://www.ietf.org/rfc/rfc4861.txt"></link>></para>
<para>IETF 4862, IPv6 Stateless Address Auto configuration</para>
<para role="reference"><<link xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://www.ietf.org/rfc/rfc4862.txt"></link>></para>
<para>W3C SOAP Message Transmission Optimization Mechanism,</para>
<para role="reference"><<link xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://www.w3.org/TR/soap12-mtom/"></link>></para>
<para>W3C SOAP 1.2, Part 1, <emphasis>Messaging Framework</emphasis></para>
<para role="reference"><<link xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://www.w3.org/TR/soap12-part1/"/>></para>
<para>W3C SOAP Version 1.2 Part 2: Adjuncts (Second Edition)</para>
<para role="reference"><<link xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://www.w3.org/TR/2007/REC-soap12-part2-20070427/"></link>></para>
<para>W3C Web Services Addressing 1.0 – Core</para>
<para role="reference"><<link xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://www.w3.org/TR/ws-addr-core/"/>></para>
<para>WS-I Basic Profile Version 2.0</para>
<para role="reference"><<link xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://www.ws-i.org/Profiles/BasicProfile-2.0-2010-11-09.html"/>></para>
<para>OASIS Web Services Base Notification 1.3</para>
<para role="reference"><<link xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://docs.oasis-open.org/wsn/wsn-ws_base_notification-1.3-spec-os.pdf"></link>></para>
<para>XMLSOAP, Web Services Dynamic Discovery (WS-Discovery)”, J. Beatty et al., April 2005.</para>
<para role="reference"><<link xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://specs.xmlsoap.org/ws/2005/04/discovery/ws-discovery.pdf"></link>></para>
<para role="reference">Mirror: <link xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://www.onvif.org/specs/external/ws-discovery/"></link></para>
<para>OASIS Web Services Security: SOAP Message Security 1.1 (WS-Security 2004)</para>
<para role="reference"><<link xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://www.oasis-open.org/committees/download.php/16790/wss-v1.1-spec-os-SOAPMessageSecurity.pdf"></link>></para>
<para>OASIS Web Services Topics 1.3</para>
<para role="reference"><<link xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://docs.oasis-open.org/wsn/wsn-ws_topics-1.3-spec-os.pdf"></link>></para>
<para>OASIS Web Services Security UsernameToken Profile 1.0</para>
<para role="reference"><<link xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0.pdf"></link>></para>
<para>W3C Web Services Description Language (WSDL) 1.1</para>
<para role="reference"><<link xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://www.w3.org/TR/wsdl"></link>></para>
<para>W3C XML Schema Definition Language (XSD) 1.1 Part 1: Structures</para>
<para role="reference"><<link xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://www.w3.org/TR/xmlschema11-1/"></link>></para>
<para>W3C XML Schema Definition Language (XSD) 1.1 Part 2: Datatypes</para>
<para role="reference"><<link xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://www.w3.org/TR/xmlschema11-2/"></link>></para>
<para>W3C XML-binary Optimized Packaging</para>
<para role="reference"><<link xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://www.w3.org/TR/2005/REC-xop10-20050125/"></link>></para>
<para>W3C XML Path Language (XPath) Version 1.0</para>
<para role="reference"><<link xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://www.w3.org/TR/1999/REC-xpath-19991116"></link>></para>
<para>IEEE 802.11, Part 11: Wireless LAN Medium Access Control (MAC) and Physical Layer (PHY) Specifications</para>
<para role="reference"><<link xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://standards.ieee.org/getieee802/download/802.11-2007.pdf"></link>></para>
<para>WGS1984, National Geospatial Intelligence Agency: DoD World Geodetic System 1984 </para>
<para role="reference">< <link xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://earth-info.nga.mil/GandG/publications/tr8350.2/tr8350_2.html"></link>></para>
</chapter>
<chapter>
<title>Terms and Definitions</title>
<section>
<title>Definitions</title>
<informaltable>
<tgroup cols="2">
<colspec colname="c1" colwidth="24*" />
<colspec colname="c2" colwidth="76*" />
<tbody valign="top">
<row>
<entry align="left">
<para>
<emphasis role="bold">Ad-hoc network</emphasis>
</para>
</entry>
<entry align="left">
<para>A set of IEEE802.11 stations that have successfully joined in a common network, see [IEEE 802.11-2007].</para>
</entry>
</row>
<row>
<entry align="left">
<para>
<emphasis role="bold">Basic Service Set</emphasis>
</para>
</entry>
<entry align="left">
<para>Often used as a vernacular term for an independent basic service set, as defined in [IEEE 802.11-2007].</para>
</entry>
</row>
<row>
<entry align="left">
<para>
<emphasis role="bold">Capability</emphasis>
</para>
</entry>
<entry align="left">
<para>The capability commands allows a client to ask for the services provided by a device.</para>
</entry>
</row>
<row>
<entry align="left">
<para>
<emphasis role="bold">GPS</emphasis>
</para>
</entry>
<entry align="left">
<para>Global Positioning System</para>
</entry>
</row>
<row>
<entry align="left">
<para>
<emphasis role="bold">PullPoint</emphasis>
</para>
</entry>
<entry align="left">
<para>Resource for pulling messages. By pulling messages, notifications are not blocked by firewalls. </para>
</entry>
</row>
<row>
<entry align="left">
<para>
<emphasis role="bold">Service Set ID</emphasis>
</para>
</entry>
<entry align="left">
<para>The identity of an [IEEE 802.11-2007] wireless network.</para>
</entry>
</row>
<row>
<entry align="left">
<para>
<emphasis role="bold">WGS</emphasis>
</para>
</entry>
<entry align="left">
<para>World Geodetic System 1984, the coordinate system used by the global positioning system.</para>
</entry>
</row>
<row>
<entry align="left">
<para>
<emphasis role="bold">Wi-Fi Protected Access</emphasis>
</para>
</entry>
<entry align="left">
<para>A certification program created by the Wi-Fi Alliance to indicate compliance with the security protocol covered by the program.</para>
</entry>
</row>
</tbody>
</tgroup>
</informaltable>
</section>
<section>
<title>Abbreviations</title>
<informaltable>
<tgroup cols="2">
<colspec colname="c1" colwidth="24*" />
<colspec colname="c2" colwidth="76*" />
<tbody valign="top">
<row>
<entry valign="middle">
<para>API</para>
</entry>
<entry valign="middle">
<para>Application Programming Interface</para>
</entry>
</row>
<row>
<entry valign="middle">
<para>ASCII</para>
</entry>
<entry valign="middle">
<para>American Standard Code for Information Interchange</para>
</entry>
</row>
<row>
<entry valign="middle">
<para>ASN</para>
</entry>
<entry valign="middle">
<para>Abstract Syntax Notation</para>
</entry>
</row>
<row>
<entry valign="middle">
<para>BSSID</para>
</entry>
<entry valign="middle">
<para>Basic Service Set Identification</para>
</entry>
</row>
<row>
<entry valign="middle">
<para>CDMI</para>
</entry>
<entry valign="middle">
<para>Cloud Data Management Interface</para>
</entry>
</row>
<row>
<entry valign="middle">
<para>CCMP</para>
</entry>
<entry valign="middle">
<para>Counter mode with Cipher-block chaining Message authentication code Protocol</para>
</entry>
</row>
<row>
<entry valign="middle">
<para>DAS</para>
</entry>
<entry valign="middle">
<para>Direct Attached Storage</para>
</entry>
</row>
<row>
<entry valign="middle">
<para>DER</para>
</entry>
<entry valign="middle">
<para>Distinguished Encoding Rules</para>
</entry>
</row>
<row>
<entry valign="middle">
<para>DHCP</para>
</entry>
<entry valign="middle">
<para>Dynamic Host Configuration Protocol</para>
</entry>
</row>
<row>
<entry valign="middle">
<para>DM</para>
</entry>
<entry valign="middle">
<para>Device Management</para>
</entry>
</row>
<row>
<entry valign="middle">
<para>DNS</para>
</entry>
<entry valign="middle">
<para>Domain Name Server</para>
</entry>
</row>
<row>
<entry valign="middle">
<para>FIPS</para>
</entry>
<entry valign="middle">
<para>Federal Information Processing Standard</para>
</entry>
</row>
<row>
<entry valign="middle">
<para>GW</para>
</entry>
<entry valign="middle">
<para>Gateway</para>
</entry>
</row>
<row>
<entry valign="middle">
<para>HTTP</para>
</entry>
<entry valign="middle">
<para>Hypertext Transfer Protocol</para>
</entry>
</row>
<row>
<entry valign="middle">
<para>HTTPS</para>
</entry>
<entry valign="middle">
<para>Hypertext Transfer Protocol over Secure Socket Layer</para>
</entry>
</row>
<row>
<entry valign="middle">
<para>IO, I/O</para>
</entry>
<entry valign="middle">
<para>Input/Output</para>
</entry>
</row>
<row>
<entry valign="middle">
<para>IP</para>
</entry>
<entry valign="middle">
<para>Internet Protocol</para>
</entry>
</row>
<row>
<entry valign="middle">
<para>IPv4</para>
</entry>
<entry valign="middle">
<para>Internet Protocol Version 4</para>
</entry>
</row>
<row>
<entry valign="middle">
<para>IPv6</para>
</entry>
<entry valign="middle">
<para>Internet Protocol Version 6</para>
</entry>
</row>
<row>
<entry valign="middle">
<para>LAN</para>
</entry>
<entry valign="middle">
<para>Local Area Network</para>
</entry>
</row>
<row>
<entry valign="middle">
<para>MTOM</para>
</entry>
<entry valign="middle">
<para>Message Transmission Optimization Mechanism</para>
</entry>
</row>
<row>
<entry valign="middle">
<para>NAS</para>
</entry>
<entry valign="middle">
<para>Network Attached Storage</para>
</entry>
</row>
<row>
<entry valign="middle">
<para>NAT</para>
</entry>
<entry valign="middle">
<para>Network Address Translation</para>
</entry>
</row>
<row>
<entry valign="middle">
<para>NFC</para>
</entry>
<entry valign="middle">
<para>Near Field Communication</para>
</entry>
</row>
<row>
<entry valign="middle">
<para>NTP</para>
</entry>
<entry valign="middle">
<para>Network Time Protocol</para>
</entry>
</row>
<row>
<entry valign="middle">
<para>OASIS</para>
</entry>
<entry valign="middle">
<para>Organization for the Advancement of Structured Information Standards</para>
</entry>
</row>
<row>
<entry valign="middle">
<para>POSIX</para>
</entry>
<entry valign="middle">
<para>Portable Operating System Interface</para>
</entry>
</row>
<row>
<entry valign="middle">
<para>PTZ</para>
</entry>
<entry valign="middle">
<para>Pan/Tilt/Zoom</para>
</entry>
</row>
<row>
<entry valign="middle">
<para>REL</para>
</entry>
<entry valign="middle">
<para>Rights Expression Language</para>
</entry>
</row>
<row>
<entry valign="middle">
<para>RSA</para>
</entry>
<entry valign="middle">
<para>Rivest ,Sharmir and Adleman</para>
</entry>
</row>
<row>
<entry valign="middle">
<para>SAML</para>
</entry>
<entry valign="middle">
<para>Security Assertion Markup Language </para>
</entry>
</row>
<row>
<entry valign="middle">
<para>SOAP</para>
</entry>
<entry valign="middle">
<para>Simple Object Access Protocol</para>
</entry>
</row>
<row>
<entry valign="middle">
<para>SSID</para>
</entry>
<entry valign="middle">
<para>Service Set ID</para>
</entry>
</row>
<row>
<entry valign="middle">
<para>TCP</para>
</entry>
<entry valign="middle">
<para>Transmission Control Protocol</para>
</entry>
</row>
<row>
<entry valign="middle">
<para>TLS</para>
</entry>
<entry valign="middle">
<para>Transport Layer Security</para>
</entry>
</row>
<row>
<entry valign="middle">
<para>TKIP</para>
</entry>
<entry valign="middle">
<para>Temporal Key Integrity Protocol</para>
</entry>
</row>
<row>
<entry valign="middle">
<para>TTL</para>
</entry>
<entry valign="middle">
<para>Time To Live</para>
</entry>
</row>
<row>
<entry valign="middle">
<para>UDDI</para>
</entry>
<entry valign="middle">
<para>Universal Description, Discovery and Integration</para>
</entry>
</row>
<row>
<entry valign="middle">
<para>UDP</para>
</entry>
<entry valign="middle">
<para>User Datagram Protocol</para>
</entry>
</row>
<row>
<entry valign="middle">
<para>URI</para>
</entry>
<entry valign="middle">
<para>Uniform Resource Identifier</para>
</entry>
</row>
<row>
<entry valign="middle">
<para>URN</para>
</entry>
<entry valign="middle">
<para>Uniform Resource Name</para>
</entry>
</row>
<row>
<entry valign="middle">
<para>USB</para>
</entry>
<entry valign="middle">
<para>Universal Serial Bus</para>
</entry>
</row>