summaryrefslogtreecommitdiff
path: root/doc/rfc/rfc6739.txt
blob: a9c6fc88bc9456e632110b78248d433980d97fd8 (plain) (blame)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
Internet Engineering Task Force (IETF)                    H. Schulzrinne
Request for Comments: 6739                           Columbia University
Category: Experimental                                     H. Tschofenig
ISSN: 2070-1721                                   Nokia Siemens Networks
                                                            October 2012


  Synchronizing Service Boundaries and <mapping> Elements Based on the
            Location-to-Service Translation (LoST) Protocol

Abstract

   The Location-to-Service Translation (LoST) protocol is an XML-based
   protocol for mapping service identifiers and geodetic or civic
   location information to service URIs and service boundaries.  In
   particular, it can be used to determine the location-appropriate
   Public Safety Answering Point (PSAP) for emergency services.

   The <mapping> element in the LoST protocol specification encapsulates
   information about service boundaries and circumscribes the region
   within which all locations map to the same service Uniform Resource
   Identifier (URI) or set of URIs for a given service.

   This document defines an XML protocol to exchange these mappings
   between two nodes.  This mechanism is designed for the exchange of
   authoritative <mapping> elements between two entities.  Exchanging
   cached <mapping> elements, i.e., non-authoritative elements, is
   possible but not envisioned.  Even though the <mapping> element
   format is reused from the LoST specification, the mechanism in this
   document can be used without the LoST protocol.

Status of This Memo

   This document is not an Internet Standards Track specification; it is
   published for examination, experimental implementation, and
   evaluation.

   This document defines an Experimental Protocol for the Internet
   community.  This document is a product of the Internet Engineering
   Task Force (IETF).  It represents the consensus of the IETF
   community.  It has received public review and has been approved for
   publication by the Internet Engineering Steering Group (IESG).  Not
   all documents approved by the IESG are a candidate for any level of
   Internet Standard; see Section 2 of RFC 5741.

   Information about the current status of this document, any errata,
   and how to provide feedback on it may be obtained at
   http://www.rfc-editor.org/info/rfc6739.



Schulzrinne & Tschofenig      Experimental                      [Page 1]
^L
RFC 6739                        LoST Sync                   October 2012


Copyright Notice

   Copyright (c) 2012 IETF Trust and the persons identified as the
   document authors.  All rights reserved.

   This document is subject to BCP 78 and the IETF Trust's Legal
   Provisions Relating to IETF Documents
   (http://trustee.ietf.org/license-info) in effect on the date of
   publication of this document.  Please review these documents
   carefully, as they describe your rights and restrictions with respect
   to this document.  Code Components extracted from this document must
   include Simplified BSD License text as described in Section 4.e of
   the Trust Legal Provisions and are provided without warranty as
   described in the Simplified BSD License.

Table of Contents

   1.  Introduction . . . . . . . . . . . . . . . . . . . . . . . . .  3
   2.  Terminology  . . . . . . . . . . . . . . . . . . . . . . . . .  3
   3.  A Motivating Example . . . . . . . . . . . . . . . . . . . . .  4
   4.  Querying for Mappings with a
       <getMappingsRequest>/<getMappingsResponse> Exchange  . . . . .  9
     4.1.  Behavior of the LoST Sync Destination  . . . . . . . . . .  9
     4.2.  Behavior of the LoST Sync Source . . . . . . . . . . . . . 10
     4.3.  Examples . . . . . . . . . . . . . . . . . . . . . . . . . 10
   5.  Pushing Mappings via <pushMappings> and
       <pushMappingsResponse> . . . . . . . . . . . . . . . . . . . . 12
     5.1.  Behavior of the LoST Sync Source . . . . . . . . . . . . . 12
     5.2.  Behavior of the LoST Sync Destination  . . . . . . . . . . 13
     5.3.  Example  . . . . . . . . . . . . . . . . . . . . . . . . . 14
   6.  Transport  . . . . . . . . . . . . . . . . . . . . . . . . . . 16
   7.  RELAX NG . . . . . . . . . . . . . . . . . . . . . . . . . . . 17
   8.  Operational Considerations . . . . . . . . . . . . . . . . . . 19
   9.  Security Considerations  . . . . . . . . . . . . . . . . . . . 20
   10. IANA Considerations  . . . . . . . . . . . . . . . . . . . . . 21
     10.1. Media Type Registration  . . . . . . . . . . . . . . . . . 21
     10.2. LoST Sync RELAX NG Schema Registration . . . . . . . . . . 22
     10.3. LoST Synchronization Namespace Registration  . . . . . . . 22
   11. Acknowledgments  . . . . . . . . . . . . . . . . . . . . . . . 23
   12. References . . . . . . . . . . . . . . . . . . . . . . . . . . 24
     12.1. Normative References . . . . . . . . . . . . . . . . . . . 24
     12.2. Informative References . . . . . . . . . . . . . . . . . . 24









Schulzrinne & Tschofenig      Experimental                      [Page 2]
^L
RFC 6739                        LoST Sync                   October 2012


1.  Introduction

   Since the early days of emergency services, there has been a desire
   to route emergency calls to Public Safety Answering Points (PSAPs)
   that are nearest to the location of the emergency caller.  For this
   purpose each PSAP discloses one or more service boundaries so that
   this information can be used to select the appropriate PSAP and to
   route the call to it.  RFC 5222 [RFC5222] defines this data structure
   in the following way:

      A service boundary circumscribes the region within which all
      locations map to the same service URI or set of URIs for a given
      service.  A service boundary may consist of several non-contiguous
      geometric shapes.

   RFC 5222 [RFC5222] also specifies the data structure itself as the
   <mapping> element.

   This document reuses this existing data structure and defines an XML-
   based protocol to exchange authoritative service boundaries between
   two entities, namely, the LoST Sync source and the LoST Sync
   destination.  This protocol can be used whether or not the LoST
   protocol is used for querying for service boundary information.

   The rest of the document is structured as follows.  Section 3 starts
   with an example usage of the LoST protocol.  In Sections 4, 5, 6, and
   7, we describe the protocol semantics, transport considerations, and
   the schema.  Finally, we conclude with operational, security, and
   IANA considerations in Sections 8, 9, and 10.

2.  Terminology

   The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
   "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this
   document are to be interpreted as described in RFC 2119 [RFC2119].

   This document reuses terminology introduced by the mapping
   architecture document [RFC5582], such as 'coverage region', 'forest
   guide', 'mapping', and 'authoritative mapping server'.  This document
   also uses the term 'ESRP', defined in [RFC5012].

   Throughout this document, we use the terms 'LoST Sync source' and
   'LoST Sync destination' to denote the protocol endpoints of the
   exchange.  The protocol is referred to as 'LoST Sync' within the
   text.






Schulzrinne & Tschofenig      Experimental                      [Page 3]
^L
RFC 6739                        LoST Sync                   October 2012


3.  A Motivating Example

   The LoST Sync mechanism can, for example, be used in the LoST
   architecture, as specified in [RFC5582].  There, LoST servers
   cooperate to provide an ubiquitous, globally scalable, and resilient
   mapping service.  In the LoST mapping architecture, LoST servers can
   peer, i.e., have an ongoing data exchange relationship.  Peering
   relationships are set up manually, based on local policies.  A LoST
   server may peer with any number of other LoST servers.  Forest guides
   peer with other forest guides; authoritative mapping servers peer
   with forest guides and other authoritative servers, either in the
   same cluster or above or below them in the tree.  Authoritative
   mapping servers push coverage regions "up" the tree, i.e., from child
   nodes to parent nodes.  The child informs the parent of the
   geospatial or civic region that it covers for a specific service.

   Consider a hypothetical deployment of LoST in two countries, for
   example, Austria and Finland.  Austria, in our example, runs three
   authoritative mapping servers labeled as 'East', 'West', and
   'Vienna', where the former two cover the entire country except for
   Vienna, which is covered by a separate LoST server.  There may be
   other caching LoST servers run by ISPs, universities, and Voice
   Service Providers (VSPs), but they are not relevant for this
   illustration.  Finland, on the other hand, decided to only deploy a
   single LoST server that also acts as a forest guide.  For this
   simplistic illustration, we assume that only one service is
   available, namely 'urn:service:sos' since otherwise the number of
   stored mappings would have to be multiplied by the number of used
   services.

   Figure 1 shows the example deployment.




















Schulzrinne & Tschofenig      Experimental                      [Page 4]
^L
RFC 6739                        LoST Sync                   October 2012


                      +---LoST-Sync-->\\     //<--LoST-Sync----+
                      |                 -----                  |
                      |                                        |
                      \/                                       \/
                    -----                                     -----
                  //     \\                                 //     \\
                 /         \                               /         \
                |  Forest   |                             |   Forest  |
                |  Guide    |                             |   Guide   |
                |  Austria  |                             |   Finland
                 \         /                               \         /
       +--------->\\     //<--------+                       \\     //
       |            -----           |                         -----
       |             /\             |                           |
     LoST            |             LoST                     //------\\
     Sync           LoST           Sync                    |Co-Located|
       |            Sync            |                      |   LoST   |
       \/            |              \/                     | Server   |
    //----\\         \/          //----\\                   \\------//
   |  LoST  |     //----\\      |  LoST  |
   | Server |    |  LoST  |     | Server |
   | 'East' |    | Server |     |'Vienna'|
    \\----//     | 'West' |      \\----//
                  \\----//

                     Figure 1: LoST Deployment Example

   The nodes are configured as follows:

   Forest Guide Austria:  This forest guide contains mappings for the
      three authoritative mapping servers (East, West, and Vienna)
      describing the area for which they are responsible.  Note that
      each mapping contains a service URN, and these mappings point to
      LoST servers rather than to PSAPs or Emergency Services Routing
      Proxies (ESRPs).

   LoST Server 'East':  This LoST server contains all the mappings to
      PSAPs covering the eastern part of the country.

      Additionally, the LoST server aggregates all the information it
      has and provides an abstracted view towards the forest guide
      indicating that it is responsible for a certain area (for a given
      service and for a given location profile).  For our example, the
      structure of a mapping is shown below:







Schulzrinne & Tschofenig      Experimental                      [Page 5]
^L
RFC 6739                        LoST Sync                   October 2012


   <mapping
       xmlns="urn:ietf:params:xml:ns:lost1"
       xmlns:gml="http://www.opengis.net/gml"
       expires="2009-01-01T01:44:33Z"
       lastUpdated="2009-12-01T01:00:00Z"
       source="east-austria.lost-example.com"
       sourceId="e8b05a41d8d1415b80f2cdbb96ccf109">
       <displayName xml:lang="en">LoST Server 'East'</displayName>
       <service>urn:service:sos</service>
       <serviceBoundary profile="geodetic-2d">
           <gml:Polygon srsName="urn:ogc:def::crs:EPSG::4326">
               <gml:exterior>
                   <gml:LinearRing>
                       <gml:pos> ... </gml:pos>
                       ..... list of coordinates for
                       boundary of LoST server 'East'
                       <gml:pos> ... </gml:pos>
                   </gml:LinearRing>
               </gml:exterior>
           </gml:Polygon>
       </serviceBoundary>
       <uri/>
   </mapping>

              Figure 2: Forest Guide Austria Mapping XML Snippet

      Note that the XML code snippet in Figure 2 serves illustrative
      purposes only and does not validate.  As can be seen in this
      example, the <uri> element is absent, and the 'source' attribute
      identifies the LoST server, namely "east-austria.lost-
      example.com".

      The mapping shown above is what is the LoST server "east-
      austria.lost-example.com" provides to the Austrian forest guide.

   LoST Server 'West':  This LoST server contains all the mappings to
      PSAPs covering the western half of the country.

   LoST Server 'Vienna':  This LoST server contains all the mappings to
      PSAPs for the city of Vienna.

   Forest Guide Finland:  In our example, we assume that Finland deploys
      a single ESRP for the entire country as their IP-based emergency
      services solution.  There is only a single LoST server, and it is
      co-located with the forest guide, as shown in Figure 1.  The
      mapping data this forest guide (FG) then distributes via LoST Sync
      is shown in Figure 3.




Schulzrinne & Tschofenig      Experimental                      [Page 6]
^L
RFC 6739                        LoST Sync                   October 2012


   <mapping xmlns="urn:ietf:params:xml:ns:lost1"
       expires="2007-01-01T01:44:33Z"
       lastUpdated="2006-11-01T01:00:00Z"
       source="finland.lost-example.com"
       sourceId="7e3f40b098c711dbb6060800200c9a66">
       <displayName xml:lang="en">Finland ESRP</displayName>
       <service>urn:service:sos</service>
       <serviceBoundary profile="civic">
           <civicAddress
               xmlns="urn:ietf:params:xml:ns:pidf:geopriv10:civicAddr">
               <country>FI</country>
           </civicAddress>
       </serviceBoundary>
       <uri/>
   </mapping>

              Figure 3: Forest Guide Finland Mapping XML Snippet

      An example mapping stored at the co-located LoST server is shown
      in Figure 4.

   <mapping xmlns="urn:ietf:params:xml:ns:lost1"
       expires="2007-01-01T01:44:33Z"
       lastUpdated="2006-11-01T01:00:00Z"
       source="finland.lost-example.com"
       sourceId="7e3f40b098c711dbb6060800200c9a66">
       <displayName xml:lang="en">Finland ESRP</displayName>
       <service>urn:service:sos</service>
       <serviceBoundary profile="civic">
           <civicAddress
               xmlns="urn:ietf:params:xml:ns:pidf:geopriv10:civicAddr">
               <country>FI</country>
           </civicAddress>
       </serviceBoundary>
       <uri>sip:esrp@finland-example.com</uri>
       <uri>xmpp:esrp@finland-example.com</uri>
       <serviceNumber>112</serviceNumber>
   </mapping>

       Figure 4: Forest Guide Finland / Co-Located LoST Server Mapping
                                 XML Snippet

   The LoST Sync mechanism described in this document can be run between
   the two forest guides.  That way, the three mappings stored in the FG
   Austria are sent to the FG Finland, and a single mapping in the FG
   Finland is sent to the FG Austria.  Additionally, the three Austrian
   LoST servers could utilize LoST Sync to inform the Austrian FG about
   their boundaries.  These three authoritative mapping servers in



Schulzrinne & Tschofenig      Experimental                      [Page 7]
^L
RFC 6739                        LoST Sync                   October 2012


   Austria would be responsible for maintaining their own mapping
   information.  Since the amount of data being exchanged is small and
   the expected rate of change is low, the nodes are configured to
   always exchange all their mapping information whenever a change
   happens.

   This document defines two types of exchanges, which are best
   described by the exchange between two nodes as shown in Figures 5 and
   6.  The protocol exchange always runs between a LoST Sync source and
   a LoST Sync destination.  Node A in the examples of Figures 5 and 6
   has mappings that Node B is going to retrieve.  Node A acts as the
   source for the data and Node B is the destination.

   The <getMappingsRequest> request allows a LoST Sync source to request
   mappings from a LoST Sync destination.

      +---------+                   +---------+
      | Node B  |                   | Node A  |
      | acting  |                   | acting  |
      | as      |                   | as      |
      | LoST    |                   | LoST    |
      | Sync    |                   | Sync    |
      | Dest.   |                   | Source  |
      +---------+                   +---------+
          |                              |
          |                              |
          |                              |
          | <getMappingsRequest>         |
          |----------------------------->|
          |                              |
          | <getMappingsResponse>        |
          |<-----------------------------|
          |                              |
          |                              |
          |                              |

    Figure 5: Querying for Mappings with a <getMappingsRequest> Message

   Note that in the exchange illustrated in Figure 5, Node B is issuing
   the first request and plays the role of the HTTPS client, and Node A
   plays the role of the HTTPS server.

   In Figure 6, the <pushMappingsRequest> exchange allows a LoST Sync
   source to push mappings to a LoST Sync destination.  In this example,
   we assume that Node A has been configured maintain state about the
   mappings it had pushed to Node B.





Schulzrinne & Tschofenig      Experimental                      [Page 8]
^L
RFC 6739                        LoST Sync                   October 2012


   This document does not define a publish/subscribe mechanism.  Such a
   mechanism would allow Node B to tell Node A what mappings it is
   interested in.  This document also does not define a mechanism for
   nodes to find out to which other entities mappings have to be pushed.

       +---------+                   +---------+
       | Node A  |                   | Node B  |
       | acting  |                   | acting  |
       | as      |                   | as      |
       | LoST    |                   | LoST    |
       | Sync    |                   | Sync    |
       | Source  |                   | Dest.   |
       +---------+                   +---------+
           |                              |
           |                              |
           |                              |
           | <pushMappingsRequest>        |
           |----------------------------->|
           |                              |
           | <pushMappingsResponse>       |
           |<-----------------------------|
           |                              |
           |                              |
           |                              |

      Figure 6: Pushing Mappings with a <pushMappingsRequest> Message

   Node A issuing the first request in Figure 6 plays the role of the
   HTTPS client, and Node B plays the role of the HTTPS server.

4.  Querying for Mappings with a <getMappingsRequest>/
    <getMappingsResponse> Exchange

4.1.  Behavior of the LoST Sync Destination

   A LoST Sync destination has two ways to retrieve <mapping> elements
   from a LoST Sync source.

   1.  When the Lost Sync destination does not have any mappings, it
       submits an empty <getMappingsRequest> message, as shown in
       Figure 7.  This indicates that it wishes to retrieve all mappings
       from the LoST Sync source.  Note that the request does not
       propagate further to other nodes.








Schulzrinne & Tschofenig      Experimental                      [Page 9]
^L
RFC 6739                        LoST Sync                   October 2012


   2.  In case a LoST Sync destination node has already obtained
       mappings in previous exchanges, then it may want to check whether
       these mappings have been updated in the meanwhile.  The policy
       regarding when to poll for updated mapping information is outside
       the scope of this document.  The <getMappingsRequest> message
       with one or more <exists> child element(s) allows the source to
       only return mappings that are missing at the destination or have
       been updated.

   After issuing the <getMappingsRequest> message, the LoST Sync
   destination waits for the <getMappingsResponse> message.  In case of
   a successful response, the LoST Sync destination stores the received
   mappings and determines which mappings to update.

4.2.  Behavior of the LoST Sync Source

   When a LoST Sync source receives an empty <getMappingsRequest>
   message, then all locally available mappings MUST be returned.

   When a LoST Sync source receives a <getMappingsRequest> message with
   one or more <exists> child element(s), then it MUST consult with the
   local mapping database to determine whether any of the mappings of
   the client is stale and whether there are mappings locally that the
   client does not yet have.  The former can be determined by finding
   mappings corresponding to the 'source' and 'sourceID' attributes
   where a mapping with a more recent 'lastUpdated' date exists.

   Processing a <getMappingsRequest> message MAY lead to a successful
   response in the form of a <getMappingsResponse> or an <errors>
   message.  Only the <badRequest>, <forbidden>, <internalError>, and
   <serverTimeout> errors, defined in [RFC5222], are used by this
   specification.  Neither the <redirect> nor the <warnings> messages
   are reused by this message.

4.3.  Examples

   The first example shows an empty <getMappingsRequest> message that
   would retrieve all locally stored mappings at the LoST Sync source.

   <?xml version="1.0" encoding="UTF-8"?>
   <getMappingsRequest xmlns="urn:ietf:params:xml:ns:lostsync1"/>

          Figure 7: Example of Empty <getMappingsRequest> Message

   A further example request is shown in Figure 8, and the corresponding
   response is depicted in Figure 9.  In this example, the
   <getMappingsRequest> element contains information about the mapping
   that is locally available to the client inside the



Schulzrinne & Tschofenig      Experimental                     [Page 10]
^L
RFC 6739                        LoST Sync                   October 2012


   <mapping-fingerprint> element (with
   source="authoritative.bar.example",
   sourceId="7e3f40b098c711dbb6060800200c9a66", and lastUpdated="2006-
   11-01T01:00:00Z").  The query asks for mappings that are more recent
   than the available one as well as any missing mapping.

   <?xml version="1.0" encoding="UTF-8"?>
   <getMappingsRequest xmlns="urn:ietf:params:xml:ns:lostsync1">
       <exists>
           <mapping-fingerprint source="authoritative.bar.example"
           sourceId="7e3f40b098c711dbb6060800200c9a66"
           lastUpdated="2006-11-01T01:00:00Z">
           </mapping-fingerprint>
       </exists>
   </getMappingsRequest>

              Figure 8: Example <getMappingsRequest> Message

   The response to the above request is shown in Figure 9.  A more
   recent mapping was available with the identification of
   source="authoritative.bar.example" and
   sourceId="7e3f40b098c711dbb6060800200c9a66".  Only one missing
   mapping, with source "authoritative.foo.example", was found and
   returned.

   <?xml version="1.0" encoding="UTF-8"?>
   <sync:getMappingsResponse
      xmlns:sync="urn:ietf:params:xml:ns:lostsync1"
      xmlns="urn:ietf:params:xml:ns:lost1"
      xmlns:gml="http://www.opengis.net/gml">

          <mapping source="authoritative.bar.example"
              sourceId="7e3f40b098c711dbb6060800200c9a66"
              lastUpdated="2008-11-26T01:00:00Z"
              expires="2009-12-26T01:00:00Z">
              <displayName xml:lang="en">Leonia Police Department
              </displayName>
              <service>urn:service:sos.police</service>
              <serviceBoundary
   profile="urn:ietf:params:lost:location-profile:basic-civic">
                  <civicAddress
   xmlns="urn:ietf:params:xml:ns:pidf:geopriv10:civicAddr">
                      <country>US</country>
                      <A1>NJ</A1>
                      <A3>Leonia</A3>
                      <PC>07605</PC>
                  </civicAddress>
              </serviceBoundary>



Schulzrinne & Tschofenig      Experimental                     [Page 11]
^L
RFC 6739                        LoST Sync                   October 2012


              <uri>sip:police@leonianj2.example.org</uri>
              <serviceNumber>911</serviceNumber>
          </mapping>

          <mapping expires="2009-01-01T01:44:33Z"
              lastUpdated="2008-11-01T01:00:00Z"
              source="authoritative.foo.example"
              sourceId="7e3f40b098c711dbb606011111111111">
              <displayName xml:lang="en">New York City Police Department
              </displayName>
              <service>urn:service:sos.police</service>
              <serviceBoundary profile="geodetic-2d">
                  <gml:Polygon srsName="urn:ogc:def::crs:EPSG::4326">
                      <gml:exterior>
                          <gml:LinearRing>
                              <gml:pos>37.775 -122.4194</gml:pos>
                              <gml:pos>37.555 -122.4194</gml:pos>
                              <gml:pos>37.555 -122.4264</gml:pos>
                              <gml:pos>37.775 -122.4264</gml:pos>
                              <gml:pos>37.775 -122.4194</gml:pos>
                          </gml:LinearRing>
                      </gml:exterior>
                  </gml:Polygon>
              </serviceBoundary>
              <uri>sip:nypd@example.com</uri>
              <uri>xmpp:nypd@example.com</uri>
              <serviceNumber>911</serviceNumber>
          </mapping>

   </sync:getMappingsResponse>

              Figure 9: Example <getMappingsResponse> Message

5.  Pushing Mappings via <pushMappings> and <pushMappingsResponse>

5.1.  Behavior of the LoST Sync Source

   When a LoST Sync source obtains new information that is of interest
   to its peers, it may push the new mappings to its peers.
   Configuration settings at both peers decide whether this
   functionality is used and what mappings are pushed to which other
   peers.  New mappings may arrive through various means, such as a
   manual addition to the local mapping database, or through the
   interaction with other entities.  Deleting mappings may also trigger
   a protocol interaction.






Schulzrinne & Tschofenig      Experimental                     [Page 12]
^L
RFC 6739                        LoST Sync                   October 2012


   The LoST Sync source SHOULD keep track of which LoST Sync destination
   it has pushed <mapping> elements to.  If it does not keep state
   information, then it always has to push the complete data set.  As
   discussed in Section 5.1 of [RFC5222], <mapping> elements are
   identified by the 'source', 'sourceID', and 'lastUpdated' attributes.
   A mapping is considered the same if these three attributes match.

   A <pushMappings> request sent by a LoST Sync source MUST contain one
   or more <mapping> elements.

   To delete a mapping, the content of the mapping is left empty, i.e.,
   the <mapping> element only contains the 'source', 'sourceID',
   'lastUpdated', and 'expires' attributes.  Figure 10 shows an example
   request where the mapping with the source="nj.us.example",
   sourceId="123", lastUpdated="2008-11-01T01:00:00Z", and
   expires="2008-11-01T01:00:00Z" is requested to be deleted.  Note that
   the 'expires' attribute is required per the schema definition but
   will be ignored in processing the request on the receiving side.  A
   sync source may want to delete the mapping from its internal mapping
   database but has to remember the peers to which it has distributed
   this update unless it has other ways to ensure that databases do not
   get out of sync.

5.2.  Behavior of the LoST Sync Destination

   When a LoST Sync destination receives a <pushMappingsRequest>
   message, then the cache with the existing mappings is inspected to
   determine whether the received mapping should lead to an update of an
   already existing mapping, should create a new mapping in the cache,
   or should be discarded.

   If a newly received mapping has a more recent time in its
   'lastUpdated' attribute, it MUST update an existing mapping that has
   matching 'source' and 'sourceID' attributes.

   If the received mapping does not match with any existing mapping
   based on the 'source' and 'sourceId', then it MUST be added to the
   local cache as an independent mapping.

   If a <pushMappingsRequest> message with an empty <mapping> element is
   received, then a corresponding mapping has to be determined based on
   the 'source' and the 'sourceID'.

   If no mapping can be identified, then an <errors> response MUST be
   returned that contains the <notDeleted> child element.  The
   <notDeleted> element MAY contain a 'message' attribute with an error
   description used for debugging purposes.  The <notDeleted> element
   MUST contain the <mapping> element(s) that caused the error.



Schulzrinne & Tschofenig      Experimental                     [Page 13]
^L
RFC 6739                        LoST Sync                   October 2012


   The response to a <pushMappingsRequest> request is a
   <pushMappingsResponse> message.  With this specification, a
   successful response message returns no additional elements, whereas
   an <errors> response is returned in the response message if the
   request failed.  Only the <badRequest>, <forbidden>, <internalError>,
   or <serverTimeout> errors defined in Section 13.1 of [RFC5222] are
   used.  The <redirect> and <warnings> messages are not used for this
   query/response.

   If the set of nodes that are synchronizing their data does not form a
   tree, it is possible that the same information arrives through
   several other nodes.  This is unavoidable but generally only imposes
   a modest overhead.  (It would be possible to create a spanning tree
   in the same fashion as IP multicast, but the complexity does not seem
   warranted, given the relatively low volume of data.)

5.3.  Example

   An example is shown in Figure 10.  Imagine a LoST node that obtained
   two new mappings identified as follows:

   o  source="authoritative.example"
      sourceId="7e3f40b098c711dbb6060800200c9a66"
      lastUpdated="2008-11-26T01:00:00Z"

   o  source="authoritative.example"
      sourceId="7e3f40b098c711dbb606011111111111"
      lastUpdated="2008-11-01T01:00:00Z"

   These two mappings have to be added to the peer's mapping database.

   Additionally, the following mapping has to be deleted:

   o  source="nj.us.example"
      sourceId="123"
      lastUpdated="2008-11-01T01:00:00Z"

    <?xml version="1.0" encoding="UTF-8"?>
    <sync:pushMappings
       xmlns:sync="urn:ietf:params:xml:ns:lostsync1"
       xmlns="urn:ietf:params:xml:ns:lost1"
       xmlns:gml="http://www.opengis.net/gml">









Schulzrinne & Tschofenig      Experimental                     [Page 14]
^L
RFC 6739                        LoST Sync                   October 2012


          <mapping source="authoritative.example"
              sourceId="7e3f40b098c711dbb6060800200c9a66"
              lastUpdated="2008-11-26T01:00:00Z"
              expires="2009-12-26T01:00:00Z">
              <displayName xml:lang="en">Leonia Police Department
              </displayName>
              <service>urn:service:sos.police</service>
              <serviceBoundary
       profile="urn:ietf:params:lost:location-profile:basic-civic">
                  <civicAddress
       xmlns="urn:ietf:params:xml:ns:pidf:geopriv10:civicAddr">
                      <country>US</country>
                      <A1>NJ</A1>
                      <A3>Leonia</A3>
                      <PC>07605</PC>
                  </civicAddress>
              </serviceBoundary>
              <uri>sip:police@leonianj.example.org</uri>
              <serviceNumber>911</serviceNumber>
          </mapping>

          <mapping expires="2009-01-01T01:44:33Z"
              lastUpdated="2008-11-01T01:00:00Z"
              source="authoritative.example"
              sourceId="7e3f40b098c711dbb606011111111111">
              <displayName xml:lang="en">New York City Police Department
              </displayName>
              <service>urn:service:sos.police</service>
              <serviceBoundary profile="geodetic-2d">
                  <gml:Polygon srsName="urn:ogc:def::crs:EPSG::4326">
                      <gml:exterior>
                          <gml:LinearRing>
                              <gml:pos>37.775 -122.4194</gml:pos>
                              <gml:pos>37.555 -122.4194</gml:pos>
                              <gml:pos>37.555 -122.4264</gml:pos>
                              <gml:pos>37.775 -122.4264</gml:pos>
                              <gml:pos>37.775 -122.4194</gml:pos>
                          </gml:LinearRing>
                      </gml:exterior>
                  </gml:Polygon>
              </serviceBoundary>
              <uri>sip:nypd@example.com</uri>
              <uri>xmpp:nypd@example.com</uri>
              <serviceNumber>911</serviceNumber>
          </mapping>






Schulzrinne & Tschofenig      Experimental                     [Page 15]
^L
RFC 6739                        LoST Sync                   October 2012


          <mapping source="nj.us.example"
              sourceId="123"
              lastUpdated="2008-11-01T01:00:00Z"
              expires="2008-11-01T01:00:00Z"/>

    </sync:pushMappings>

             Figure 10: Example <pushMappingsRequest> Message

   In response, the peer performs the necessary operations and updates
   its mapping database.  In particular, it will check whether the other
   peer is authorized to perform the update and whether the elements and
   attributes contain values that it understands.  In our example, a
   positive response is returned as shown in Figure 11.

   <?xml version="1.0" encoding="UTF-8"?>
   <pushMappingsResponse xmlns="urn:ietf:params:xml:ns:lostsync1" />

                 Figure 11: Example <pushMappingsResponse>

   In case a mapping could not be deleted as requested, the following
   error response might be returned instead.

   <?xml version="1.0" encoding="UTF-8"?>
   <errors xmlns="urn:ietf:params:xml:ns:lost1"
       xmlns:sync="urn:ietf:params:xml:ns:lostsync1"
       source="nodeA.example.com">

       <sync:notDeleted
           message="Could not delete the indicated mapping."
           xml:lang="en">

           <mapping source="nj.us.example"
               sourceId="123"
               lastUpdated="2008-11-01T01:00:00Z"
               expires="2008-11-01T01:00:00Z"/>
       </sync:notDeleted>
   </errors>

                    Figure 12: Example <errors> Message

6.  Transport

   LoST Sync needs an underlying protocol transport mechanism to carry
   requests and responses.  This document uses HTTPS as a transport to
   exchange XML documents.  No fallback to HTTP is provided.





Schulzrinne & Tschofenig      Experimental                     [Page 16]
^L
RFC 6739                        LoST Sync                   October 2012


   When using HTTP over Transport Layer Security (TLS) [RFC2818], LoST
   Sync messages use the POST method.  Requests MUST use the Cache-
   Control response directive "no-cache".

   All LoST Sync responses, including those indicating a LoST warning or
   error, are carried in 2xx responses, typically 200 (OK). 3xx, 4xx,
   and 5xx HTTP response codes indicate that the request itself failed
   or was redirected; these responses do not contain any LoST Sync XML
   elements.

7.  RELAX NG

   Note: In order to avoid copying pattern definitions from the LoST
   Regular Language for XML Next Generation (RELAX NG) schema [RFC5222]
   to this document, we include it as "lost.rng" (XML syntax) in the
   RELAX NG schema below.

   <?xml version="1.0" encoding="utf-8"?>

        <grammar ns="urn:ietf:params:xml:ns:lostsync1"
        xmlns="http://relaxng.org/ns/structure/1.0"
        xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0"
        datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes">

            <include href="lost.rng"/>

            <start combine="choice">

             <a:documentation> Location-to-Service Translation (LoST)
               Synchronization Protocol</a:documentation>

                <choice>
                    <ref name="pushMappings"/>
                    <ref name="pushMappingsResponse"/>
                    <ref name="getMappingsRequest"/>
                    <ref name="getMappingsResponse"/>
                </choice>
            </start>


            <define name="pushMappings">
                <element name="pushMappings">
                        <oneOrMore>
                            <ref name="mapping"/>
                        </oneOrMore>

                    <ref name="extensionPoint"/>
                </element>



Schulzrinne & Tschofenig      Experimental                     [Page 17]
^L
RFC 6739                        LoST Sync                   October 2012


            </define>

            <define name="pushMappingsResponse">
                <element name="pushMappingsResponse">
                    <ref name="extensionPoint"/>
                </element>
            </define>

             <define name="getMappingsRequest">
                  <element name="getMappingsRequest">
                    <choice>
                         <ref name="exists"></ref>
                         <ref name="extensionPoint"/>
                    </choice>
                </element>
            </define>

             <define name="exists">
                  <element name="exists">
                       <oneOrMore>
                            <element name="mapping-fingerprint">
                                 <attribute name="source">
                                      <data type="token"/>
                                 </attribute>
                                 <attribute name="sourceId">
                                      <data type="token"/>
                                 </attribute>
                                 <attribute name="lastUpdated">
                                      <data type="dateTime"/>
                                 </attribute>
                                 <ref name="extensionPoint"/>
                            </element>
                       </oneOrMore>
                  </element>
             </define>

            <define name="getMappingsResponse">
                <element name="getMappingsResponse">
                        <oneOrMore>
                            <ref name="mapping"/>
                        </oneOrMore>
                    <ref name="extensionPoint"/>
                </element>
            </define>

             <!-- error messages -->

             <define name="notDeleted">



Schulzrinne & Tschofenig      Experimental                     [Page 18]
^L
RFC 6739                        LoST Sync                   October 2012


                  <element name="notDeleted">
                       <ref name="basicException"/>
                       <oneOrMore>
                            <ref name="mapping"/>
                       </oneOrMore>
                  </element>
             </define>
        </grammar>

8.  Operational Considerations

   It is important to avoid loops when more than two LoST servers use
   the mechanism described in this document.  The example shown in
   Figure 13 with three LoST servers A, B, and C (each of them acts as a
   sync source and a sync destination) illustrates the challenge in more
   detail.  A and B synchronize data between each other; the same is
   true for A and C, and B and C, respectively.

                                   A -------- B
                                    \        /
                                     \      /
                                      \    /
                                       \  /
                                        C

             Figure 13: Synchronization Configuration Example

   Now, imagine that server A adds a new mapping.  This mapping is
   uniquely identified by the combination of "source", "sourceid", and
   "last updated".  Assume that A wants to push this new mapping to B
   and C.  When B obtains this new mapping, it determines that it has to
   distribute it to its peer C.  C also needs to distribute the mapping
   to its peer B.  If the original mapping with the "source",
   "sourceid", and "last updated" is not modified by either B or C, then
   these two servers would recognize that they already possess the
   mapping and can ignore the update.

   Implementations MUST NOT modify mappings they receive.  An entity
   acting maliciously would, however, intentionally modify mappings or
   inject bogus mappings.  To avoid the possibility of an untrustworthy
   member claiming a coverage region for which it is not authorized,
   authoritative mapping servers MUST sign mappings they distribute
   using an XML digital signature [W3C.REC-xmldsig-core-20020212].  A
   recipient MUST verify that the signing entity is indeed authorized to
   speak for that region.  In many cases, this will require an out-of-
   band agreement to be in place to agree on specific entities to take
   on this role.  Determining who can speak for a particular region is
   inherently difficult unless there is a small set of authorizing



Schulzrinne & Tschofenig      Experimental                     [Page 19]
^L
RFC 6739                        LoST Sync                   October 2012


   entities that participants in the mapping architecture can trust.
   Receiving systems should be particularly suspicious if an existing
   coverage region is replaced by a new one that contains a different
   value in the <uri> element.  When mappings are digitally signed, they
   cannot be modified by intermediate LoST servers.

9.  Security Considerations

   This document defines a protocol for exchange of authoritative
   mapping information between two entities.  Hence, the protocol
   operations described in this document require authentication of
   neighboring nodes.

   The LoST Sync client and servers MUST implement TLS and use TLS.
   Which version(s) ought to be implemented will vary over time and
   depend on the widespread deployment and known security
   vulnerabilities at the time of implementation.  At the time of this
   writing, TLS version 1.2 [RFC5246] is the most recent version but has
   very limited actual deployment and might not be readily available in
   implementation tool kits.  TLS version 1.0 [RFC2246] is the most
   widely deployed version and will give the broadest interoperability.

   Mutual authentication between the LoST Sync source and the LoST Sync
   destination is not necessarily required in all deployments unless an
   emergency service authority wants to enforce access control prior to
   the distribution of their <mapping> elements.  This may, for example,
   be the case when certain emergency services networks distribute
   internal mappings that are not meant for public distribution.

   An additional threat is caused by compromised or misconfigured LoST
   servers.  A denial of service could be the consequence of an injected
   mapping.  If the mapping data contains a URL that does not exist,
   then emergency services for the indicated area are not reachable.  If
   all mapping data contains URLs that point to a single PSAP (rather
   than a large number of PSAPs), then this PSAP is likely to experience
   overload conditions.  If the mapping data contains a URL that points
   to a server controlled by the adversary itself, then it might
   impersonate PSAPs.

   Section 8 discusses this security threat and mandates signed
   mappings.  For unusual changes to the mapping database, approval by a
   system administrator of the emergency services infrastructure (or a
   similar expert) may be required before any mappings are installed.








Schulzrinne & Tschofenig      Experimental                     [Page 20]
^L
RFC 6739                        LoST Sync                   October 2012


10.  IANA Considerations

10.1.  Media Type Registration

   This specification requests the registration of a new media type
   according to the procedures of RFC 4288 [RFC4288] and guidelines in
   RFC 3023 [RFC3023].

   Type name:  application

   Subtype name:  lostsync+xml

   Required parameters:  none

   Optional parameters:  charset

      Same as charset parameter of application/xml as specified in RFC
      3023 [RFC3023].

   Encoding considerations:  Identical to those of "application/xml" as
      described in [RFC3023], Section 3.2.

   Security considerations:  This content type is designed to carry LoST
      Synchronization protocol payloads, and the security considerations
      section of RFC 6739 is applicable.  In addition, as this media
      type uses the "+xml" convention, it shares the same security
      considerations as described in [RFC3023], Section 10.

   Interoperability considerations:  None

   Published specification:  RFC 6739

   Applications that use this media type:  Emergency and Location-based
      Systems

   Additional information:

      Magic number(s):  None

      File extension(s):  .lostsyncxml

      Macintosh file type code(s):  'TEXT'

   Person & email address to contact for further information:
      Hannes Tschofenig <Hannes.Tschofenig@gmx.net>

   Intended usage:  LIMITED USE




Schulzrinne & Tschofenig      Experimental                     [Page 21]
^L
RFC 6739                        LoST Sync                   October 2012


   Restrictions on usage:  None

   Author:  Hannes Tschofenig <Hannes.Tschofenig@gmx.net>

   Change controller:

      This specification is a work item of the IETF ECRIT working group,
      with mailing list address <ecrit@ietf.org>.

   Change controller:

      The IESG <iesg@ietf.org>

10.2.  LoST Sync RELAX NG Schema Registration

   The schema defined in this document has been registered under the XML
   schema registry at
   http://www.iana.org/assignments/xml-registry/schema.html

   URI:  urn:ietf:params:xml:schema:lostsync1

   Registrant Contact:  IETF ECRIT Working Group, Hannes Tschofenig
      (Hannes.Tschofenig@gmx.net).

   RELAX NG Schema:  The RELAX NG schema that has been registered is
      contained in Section 7.

10.3.  LoST Synchronization Namespace Registration

   The namespace defined in this document has been registered under the
   XML namespace registry at
   http://www.iana.org/assignments/xml-registry/ns.html

   URI:  urn:ietf:params:xml:ns:lostsync1

   Registrant Contact:  IETF ECRIT Working Group, Hannes Tschofenig
      (Hannes.Tschofenig@gmx.net).














Schulzrinne & Tschofenig      Experimental                     [Page 22]
^L
RFC 6739                        LoST Sync                   October 2012


   XML:

   BEGIN
   <?xml version="1.0"?>
   <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML Basic 1.0//EN"
     "http://www.w3.org/TR/xhtml-basic/xhtml-basic10.dtd">
   <html xmlns="http://www.w3.org/1999/xhtml">
   <head>
     <meta http-equiv="content-type"
           content="text/html;charset=iso-8859-1"/>
     <title>LoST Synchronization Namespace</title>
   </head>
   <body>
     <h1>Namespace for LoST server synchronization</h1>
     <h2>urn:ietf:params:xml:ns:lostsync1</h2>
   <p>See <a href="[URL of published RFC]">RFC 6739
          </a>.</p>
   </body>
   </html>

   END

11.  Acknowledgments

   Robins George, Cullen Jennings, Karl Heinz Wolf, Richard Barnes,
   Mayutan Arumaithurai, Alexander Mayrhofer, and Andrew Newton provided
   helpful input.  Jari Urpalainen assisted with the RELAX NG schema.
   We would also like to thank our document shepherd Roger Marshall for
   his help with the document.

   We would like to particularly thank Andrew Newton for his timely and
   valuable review of the XML-related content.

   We would like to thank Robert Sparks, Barry Leiba, Stephen Farrell,
   Brian Haberman, Pete Resnick, and Sean Turner for their AD reviews.
   We would also like to thank Bjoern Hoehrmann for his media type
   review, Julian Reschke and Martin Duerst for their applications area
   reviews, and Wassim Haddad for his Gen-ART review.













Schulzrinne & Tschofenig      Experimental                     [Page 23]
^L
RFC 6739                        LoST Sync                   October 2012


12.  References

12.1.  Normative References

   [RFC2119]  Bradner, S., "Key words for use in RFCs to Indicate
              Requirement Levels", BCP 14, RFC 2119, March 1997.

   [RFC2246]  Dierks, T. and C. Allen, "The TLS Protocol Version 1.0",
              RFC 2246, January 1999.

   [RFC2818]  Rescorla, E., "HTTP Over TLS", RFC 2818, May 2000.

   [RFC3023]  Murata, M., St. Laurent, S., and D. Kohn, "XML Media
              Types", RFC 3023, January 2001.

   [RFC4288]  Freed, N. and J. Klensin, "Media Type Specifications and
              Registration Procedures", BCP 13, RFC 4288, December 2005.

   [RFC5222]  Hardie, T., Newton, A., Schulzrinne, H., and H.
              Tschofenig, "LoST: A Location-to-Service Translation
              Protocol", RFC 5222, August 2008.

   [RFC5246]  Dierks, T. and E. Rescorla, "The Transport Layer Security
              (TLS) Protocol Version 1.2", RFC 5246, August 2008.

   [W3C.REC-xmldsig-core-20020212]
              Eastlake, D., Reagle, J., Solo, D., Hirsch, F., and T.
              Roessler, "XML-Signature Syntax and Processing", World
              Wide Web Consortium, Second Edition, REC-xmldsig-core-
              20020212, June 2008.

12.2.  Informative References

   [RFC5012]  Schulzrinne, H. and R. Marshall, "Requirements for
              Emergency Context Resolution with Internet Technologies",
              RFC 5012, January 2008.

   [RFC5582]  Schulzrinne, H., "Location-to-URL Mapping Architecture and
              Framework", RFC 5582, September 2009.












Schulzrinne & Tschofenig      Experimental                     [Page 24]
^L
RFC 6739                        LoST Sync                   October 2012


Authors' Addresses

   Henning Schulzrinne
   Columbia University
   Department of Computer Science
   450 Computer Science Building
   New York, NY  10027
   USA

   Phone: +1 212 939 7004
   EMail: hgs+ecrit@cs.columbia.edu
   URI:   http://www.cs.columbia.edu


   Hannes Tschofenig
   Nokia Siemens Networks
   Linnoitustie 6
   Espoo  02600
   Finland

   Phone: +358 (50) 4871445
   EMail: Hannes.Tschofenig@gmx.net
   URI:   http://www.tschofenig.priv.at




























Schulzrinne & Tschofenig      Experimental                     [Page 25]
^L