REC-ws-metadata-exchange-20111213
158 KB
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
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>Web Services Metadata Exchange (WS-MetadataExchange)</title><style type="text/css">
code { font-family: monospace; }
div.constraint,
div.issue,
div.note,
div.notice { margin-left: 2em; }
ol.enumar { list-style-type: decimal; }
ol.enumla { list-style-type: lower-alpha; }
ol.enumlr { list-style-type: lower-roman; }
ol.enumua { list-style-type: upper-alpha; }
ol.enumur { list-style-type: upper-roman; }
div.exampleInner pre { margin-left: 1em;
margin-top: 0em; margin-bottom: 0em}
div.exampleOuter {border: 4px double gray;
margin: 0em; padding: 0em}
div.exampleInner { background-color: #d5dee3;
border-top-width: 4px;
border-top-style: double;
border-top-color: #d3d3d3;
border-bottom-width: 4px;
border-bottom-style: double;
border-bottom-color: #d3d3d3;
padding: 4px; margin: 0em }
div.exampleWrapper { margin: 4px }
div.exampleHeader { font-weight: bold;
margin: 4px}
</style><link rel="stylesheet" type="text/css" href="http://www.w3.org/StyleSheets/TR/W3C-REC.css" /></head><body><div class="head"><p><a href="http://www.w3.org/"><img src="http://www.w3.org/Icons/w3c_home" alt="W3C" height="48" width="72" /></a></p>
<h1><a name="title" id="title"></a>Web Services Metadata Exchange (WS-MetadataExchange)</h1>
<h2><a name="w3c-doctype" id="w3c-doctype"></a>W3C Recommendation 13 December 2011</h2><dl><dt>This version:</dt><dd>
<a href="http://www.w3.org/TR/2011/REC-ws-metadata-exchange-20111213">http://www.w3.org/TR/2011/REC-ws-metadata-exchange-20111213
</a>
</dd><dt>Latest version:</dt><dd>
<a href="http://www.w3.org/TR/ws-metadata-exchange">http://www.w3.org/TR/ws-metadata-exchange
</a>
</dd><dt>Previous version:</dt><dd>
<a href="http://www.w3.org/TR/2011/PR-ws-metadata-exchange-20110927">http://www.w3.org/TR/2011/PR-ws-metadata-exchange-20110927
</a>
</dd><dt>Editors:</dt><dd>Doug Davis, IBM</dd><dd>Ashok Malhotra, Oracle</dd><dd>Katy Warr, IBM</dd><dd>Wu Chou, Avaya</dd></dl><p>Please refer to the <a href="http://www.w3.org/2002/ws/ra/errata/ws-metadata-exchange-20111213-errata"><strong>errata</strong></a> for this document, which may
include normative corrections.</p><p>See also <a href="http://www.w3.org/2003/03/Translations/byTechnology?technology=ws-metadata-exchange"><strong>translations</strong></a>.</p><p class="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 2011 <a href="http://www.w3.org/"><acronym title="World Wide Web Consortium">W3C</acronym></a><sup>®</sup> (<a href="http://www.csail.mit.edu/"><acronym title="Massachusetts Institute of Technology">MIT</acronym></a>, <a href="http://www.ercim.org/"><acronym title="European Research Consortium for Informatics and Mathematics">ERCIM</acronym></a>, <a href="http://www.keio.ac.jp/">Keio</a>), All Rights Reserved. W3C <a href="http://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="http://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="http://www.w3.org/Consortium/Legal/copyright-documents">document use</a> rules apply.</p></div><hr /><div>
<h2><a name="abstract" id="abstract"></a>Abstract</h2><p>
This specification defines how metadata
associated with a Web service endpoint can be represented as
<a href="#WS-Transfer">[WS-Transfer]</a> resources or HTTP resources, how metadata can
be embedded in <a href="#AddrCore">[WS-Addressing]</a>
endpoint references, how metadata could be
retrieved from a metadata resource, and how metadata associated with
implicit features can be advertised.
</p></div><div>
<h2><a name="status" id="status"></a>Status of this Document</h2><p><em>
This section describes the status of this document at the time
of its publication. Other documents may supersede this document.
A list of current W3C publications and the latest revision of
this technical report can be found in the
<a href="http://www.w3.org/TR/">W3C technical reports index</a>
at http://www.w3.org/TR/.
</em></p><p>
This is the 13 December 2011 Recommendation of the <em>Web Services Metadata Exchange (WS-MetadataExchange)</em> specification.
It has been produced by the
<a href="http://www.w3.org/2002/ws/ra/">Web
Services Resource Access Working Group</a> (WG), which is part of the
<a href="http://www.w3.org/2002/ws/Activity">W3C Web Services
Activity</a>.
</p><p>
The public is encouraged to send comments to the Working Group's public mailing list
<a href="mailto:public-ws-resource-access-comments@w3.org">
public-ws-resource-access-comments@w3.org</a>
mailing list (<a href="http://lists.w3.org/Archives/Public/public-ws-resource-access-comments/">public
archive</a>). See <a href="http://www.w3.org/Mail/">W3C mailing list and archive usage guidelines</a>.
</p><p>No changes were made as a result of the Proposed Recommendation phase (see also the <a href="http://www.w3.org/2002/ws/ra/test/scenario.html">test scenario</a> and the <a href="http://www.w3.org/2002/ws/ra/test/testResults.html">implementation report</a>).</p><p>This document has been reviewed by W3C Members, by software developers, and by other W3C groups and interested parties, and is endorsed by the Director as a W3C Recommendation. It is a stable document and may be used as reference material or cited from another document. W3C's role in making the Recommendation is to draw attention to the specification and to promote its widespread deployment. This enhances the functionality and interoperability of the Web.</p><p>
This document was produced by a group operating under the
<a href="http://www.w3.org/Consortium/Patent-Policy-20040205/">5
February 2004 W3C Patent Policy</a>. W3C maintains a
<a rel="disclosure" href="http://www.w3.org/2004/01/pp-impl/43088/status">public
list of any patent disclosures</a> made in connection with the
deliverables of the group; that page also includes instructions for
disclosing a patent. An individual who has actual knowledge of a
patent which the individual believes contains
<a href="http://www.w3.org/Consortium/Patent-Policy-20040205/#def-essential">Essential
Claim(s)</a> must disclose the information in accordance with
<a href="http://www.w3.org/Consortium/Patent-Policy-20040205/#sec-Disclosure">section
6 of the W3C Patent Policy</a>.
</p></div><div class="toc">
<h2><a name="contents" id="contents"></a>Table of Contents</h2><p class="toc">1 <a href="#composable">Composable Architecture</a><br />
2 <a href="#intro">Introduction</a><br />
2.1 <a href="#Requirements">Requirements</a><br />
2.2 <a href="#Examples">Examples</a><br />
3 <a href="#notterms">Notations and Terminology</a><br />
3.1 <a href="#Conventions">Notational Conventions</a><br />
3.2 <a href="#extensions">Considerations on the Use of Extensibility Points</a><br />
3.3 <a href="#terms">Terminology</a><br />
3.4 <a href="#Compliance">Compliance</a><br />
3.5 <a href="#namespaces">XML Namespaces</a><br />
4 <a href="#web-services-metadata">Web Services Metadata Collection</a><br />
5 <a href="#metadata-resources">Metadata Resources</a><br />
6 <a href="#Retrieving-Metadata">Retrieving Metadata about Service Endpoints</a><br />
6.1 <a href="#GetWSDL">GetWSDL</a><br />
6.2 <a href="#GetMetadata">GetMetadata</a><br />
6.3 <a href="#PutMetadata">PutMetadata</a><br />
6.4 <a href="#DeleteMetadata">DeleteMetadata</a><br />
7 <a href="#MetadataReferences">Metadata References</a><br />
7.1 <a href="#mexLocation">mex:Location</a><br />
7.2 <a href="#mexReference">mex:Reference</a><br />
7.3 <a href="#idp1568496">Examples</a><br />
8 <a href="#Metadata-in-Endpoint-References">Metadata in Endpoint References</a><br />
8.1 <a href="#EPRwithMEX">Endpoint References Containing Metadata</a><br />
8.2 <a href="#WSPAEPR">Associating Policies with Endpoint References</a><br />
9 <a href="#ImplicitWSDL">Exposing Metadata for Implicitly Defined Features</a><br />
10 <a href="#Faults">Faults</a><br />
10.1 <a href="#UnsupportedMetadata">UnsupportedMetadata</a><br />
10.2 <a href="#InvalidMetadata">InvalidMetadata</a><br />
11 <a href="#Security">Security Considerations</a><br />
11.1 <a href="#idp1702016">Metadata and Security Bootstrapping</a><br />
12 <a href="#metadata">WS-MetadataExchange Metadata</a><br />
12.1 <a href="#idp1708960">MetadataExchange Assertion</a><br />
13 <a href="#bootstrapping">Bootstrapping Metadata Retrieval</a><br />
14 <a href="#acks">Acknowledgements</a><br />
15 <a href="#References">References</a><br />
15.1 <a href="#idp1780096">Normative References</a><br />
</p>
<h3><a name="appendices" id="appendices"></a>Appendices</h3><p class="toc">A <a href="#Appendix-A">XML Schema</a><br />
B <a href="#Appendix-B">WSDL</a><br />
C <a href="#changelog">Change Log</a><br />
</p></div><hr /><div class="body"><div class="div1">
<h2><a name="composable" id="composable"></a>1 Composable Architecture</h2><p>
By using the XML, SOAP <a href="#SOAP11">[SOAP11]</a>,
<a href="#SOAP12">[SOAP12]</a>, and WSDL <a href="#WSDL11">[WSDL11]</a>
extensibility models, the Web service
specifications (WS-*) are designed to be composed with each other
to provide a rich set of tools for the Web
services environment. This specification specifically relies on
other Web service specifications to provide secure, reliable,
and/or transacted message delivery and to express Web service and
client policy.
</p></div><div class="div1">
<h2><a name="intro" id="intro"></a>2 Introduction</h2><p>
Web services use metadata to describe what other endpoints need to know
to interact with them. Specifically, <a href="#wspolicy">[WS-Policy]</a>
describes the capabilities, requirements, and general characteristics
of Web services; <a href="#WSDL11">[WSDL11]</a> describes abstract message
operations, concrete network protocols, and endpoint addresses used
by Web services; XML Schema <a href="#XMLSchema1">[XMLSchema - Part 1]</a>,
<a href="#XMLSchema2">[XMLSchema - Part 2]</a> describes the structure and contents of
XML-based messages received by and sent by Web services.
</p><p>
To bootstrap communication with Web services this specification defines
how metadata can be treated as a HTTP resources or as
<a href="#WS-Transfer">[WS-Transfer]</a> resources
for retrieval purposes, how metadata can be embedded in WS-Addressing
endpoint references, and how Web service endpoints can OPTIONALLY
support a request-response interaction for the retrieval of metadata.
When the type of metadata sought is clearly known, e.g.,
<a href="#wspolicy">[WS-Policy]</a>, a requester MAY indicate that only that
type is to be returned; where additional types of metadata are being
used, or are expected, or when a requester needs to retrieve all of
the metadata relevant to subsequent interactions with an endpoint, a
requester MAY indicate that all available metadata, regardless of their
types, are expected.
</p><p>
The mechanisms defined herein are intended for the retrieval of
metadata (i.e., Web service description information) only. They are
not intended to provide a general purpose query or retrieval
mechanism for other types of data associated with a Web service,
such as state data, properties and attribute values, etc.
</p><div class="div2">
<h3><a name="Requirements" id="Requirements"></a>2.1 Requirements</h3><p>
This specification intends to meet the following requirements:
</p><ul><li><p>
Define a mechanism for retrieving metadata about a Web service endpoint.
</p></li><li><p>
Define an encapsulation format for metadata.
</p></li><li><p>
Treat the metadata about a Web service endpoint as
<a href="#WS-Transfer">[WS-Transfer]</a> resources, or as an HTTP reachable resource.
</p></li><li><p>
Define a bootstrap mechanism for retrieving metadata.
</p></li><li><p>
Support future versions of known metadata formats.
</p></li><li><p>
Allow new metadata formats to be added.
</p></li></ul></div><div class="div2">
<h3><a name="Examples" id="Examples"></a>2.2 Examples</h3><p>
<a href="#GetWSDLRequest">Example 2-1</a> illustrates a sample GetWSDL request
for the WSDL metadata document of a service.
</p><div class="exampleOuter">
<div class="exampleHeader"><a name="GetWSDLRequest" id="GetWSDLRequest"></a>Example 2-1: Sample GetWSDL request message</div><div class="exampleInner"><pre>(01) <s11:Envelope
(02) xmlns:s11='http://schemas.xmlsoap.org/soap/envelope/'
(03) xmlns:wsa='http://www.w3.org/2005/08/addressing'>
(04) xmlns:wst='http://www.w3.org/2011/03/ws-tra'>
(05) <s11:Header>
(06) <wsa:Action>
(07) http://www.w3.org/2011/03/ws-mex/GetWSDL
(08) </wsa:Action>
(09) <wsa:To>http://services.example.org/stockquote</wsa:To>
(10) <wsa:ReplyTo>
(11) <wsa:Address>http://client.example.org</wsa:Address>
(12) </wsa:ReplyTo>
(13) <wsa:MessageID>
(14) urn:uuid:1cec121a-82fe-41da-87e1-3b23f254f128
(15) </wsa:MessageID>
(16) </s11:Header>
(17) <s11:Body>
(18) <mex:GetWSDL/>
(19) </s11:Body>
(20) </s11:Envelope> </pre></div></div><p>
<a href="#GetWSDLResponse">Example 2-2</a> lists a sample response to the request
in <a href="#GetWSDLRequest">Example 2-1</a>.
</p><div class="exampleOuter">
<div class="exampleHeader"><a name="GetWSDLResponse" id="GetWSDLResponse"></a>Example 2-2: Sample GetWSDLResponse message</div><div class="exampleInner"><pre>(01) <s11:Envelope
(02) xmlns:s11='http://schemas.xmlsoap.org/soap/envelope/'
(03) xmlns:wsa='http://www.w3.org/2005/08/addressing'
(04) xmlns:wsp='http://www.w3.org/ns/ws-policy'
(05) xmlns:mex='http://www.w3.org/2011/03/ws-mex'>
(06) <s11:Header>
(07) <wsa:To>http://client.example.org</wsa:To>
(08) <wsa:Action>
(09) http://www.w3.org/2011/03/ws-mex/GetWSDLResponse
(10) </wsa:Action>
(11) <wsa:RelatesTo>
(12) urn:uuid:73d7edfc-5c3c-49b9-ba46-2480caee43e9
(13) </wsa:RelatesTo>
(14) </s11:Header>
(15) <s11:Body>
(16) <mex:GetWSDLResponse>
(17) <wsdl:definitions ...>
(18) <!-- WSDL data removed for brevity -->
(19) </wsdl:definitions>
(18) </mex:GetWSDLResponse>
(19) </s11:Body>
(20) </s11:Envelope> </pre></div></div><p>
Lines 17-19 in <a href="#GetWSDLResponse">Example 2-2</a> is the WSDL of
the service.
</p><p>
<a href="#GetRequest">Example 2-3</a> illustrates a sample
<a href="#WS-Transfer">[WS-Transfer]</a> Get request for a resource'
s representation.
</p><div class="exampleOuter">
<div class="exampleHeader"><a name="GetRequest" id="GetRequest"></a>Example 2-3: Sample Get request message</div><div class="exampleInner"><pre>(01) <s11:Envelope
(02) xmlns:s11='http://schemas.xmlsoap.org/soap/envelope/'
(03) xmlns:wsa='http://www.w3.org/2005/08/addressing'>
(04) xmlns:wst='http://www.w3.org/2011/03/ws-tra'>
(05) <s11:Header>
(06) <wsa:Action>
(07) http://www.w3.org/2011/03/ws-tra/Get
(08) </wsa:Action>
(09) <wsa:To>http://services.example.org/stockquote/metadata</wsa:To>
(10) <wsa:ReplyTo>
(11) <wsa:Address>http://client.example.org</wsa:Address>
(12) </wsa:ReplyTo>
(13) <wsa:MessageID>
(14) urn:uuid:1cec121a-82fe-41da-87e1-3b23f254f128
(15) </wsa:MessageID>
(16) </s11:Header>
(17) <s11:Body>
(18) <wst:Get/>
(19) </s11:Body>
(20) </s11:Envelope></pre></div></div><p>
The sample request message of <a href="#GetRequest">Example 2-3</a> is a
<a href="#WS-Transfer">[WS-Transfer]</a> request for the retrieval of a
resource's representation. In this case, the requested representation
is the WS-MetadataExchange Metadata element about a Web service
endpoint. The fact that the resource's representation is a
mex:Metadata element might be known to the requestor but is not
explicitly encoded in the request message.
</p><p>
<a href="#GetResponse">Example 2-4</a> illustrates a sample response to the
request of <a href="#GetRequest">Example 2-3</a>.
</p><div class="exampleOuter">
<div class="exampleHeader"><a name="GetResponse" id="GetResponse"></a>Example 2-4: Sample response message with metadata</div><div class="exampleInner"><pre>(01) <s11:Envelope
(02) xmlns:s11='http://schemas.xmlsoap.org/soap/envelope/'
(03) xmlns:xs='http://www.w3.org/2001/XMLSchema'
(04) xmlns:wsa='http://www.w3.org/2005/08/addressing'
(05) xmlns:mex='http://www.w3.org/2011/03/ws-mex'
(06) xmlns:wsp='http://www.w3.org/ns/ws-policy'
(07) xmlns:wst='http://www.w3.org/2011/03/ws-tra'
(08) xmlns:wsdl='http://schemas.xmlsoap.org/wsdl/'>
(09) <s11:Header>
(10) <wsa:Action>
(11) http://www.w3.org/2011/03/ws-tra/GetResponse
(12) </wsa:Action>
(13) <wsa:To>http://client.example.org</wsa:To>
(14) <wsa:RelatesTo>
(15) urn:uuid:1cec121a-82fe-41da-87e1-3b23f254f128
(16) </wsa:RelatesTo>
(17) </s11:Header>
(18) <s11:Body>
(19) <wst:GetResponse>
(20) <mex:Metadata>
(21) <mex:MetadataSection Dialect='wsdl:definitions'>
(22) <wsdl:definitions>
(23) <!-- WSDL data removed for brevity -->
(24) </wsdl:definitions>
(25) </mex:MetadataSection>
(26) <mex:MetadataSection
(27) Dialect='xs:schema'
(28) Identifier='http://services.example.org/stockquote/schemas'>
(29) <mex:MetadataLocation>
(30) http://services.example.org/stockquote/schemas
(31) </mex:MetadataLocation>
(32) </mex:MetadataSection>
(33) <mex:MetadataSection
(34) Dialect='wsp:Policy'
(35) Identifier='http://services.example.org/stockquote/policy'>
(36) <mex:MetadataReference>
(37) <wsa:Address>
(38) http://services.example.org/stockquote/policy
(39) </wsa:Address>
(40) </mex:MetadataReference>
(41) </mex:MetadataSection>
(42) </mex:Metadata>
(43) </wst:GetResponse>
(44) </s11:Body>
(45) </s11:Envelope></pre></div></div><p>
The message of <a href="#GetResponse">Example 2-4</a> is a
<a href="#WS-Transfer">[WS-Transfer]</a>
response message to the request of <a href="#GetRequest">Example 2-3</a>. The
content
of the <b>[Body]</b> (lines 18-44) is a mex:Metadata element with
metadata
about the Web service endpoint (lines 20-42). The mex:Metadata
contains three MetadataSections. The first MetadataSection
(lines 21-25) contains the <a href="#WSDL11">[WSDL11]</a> of the Web
service endpoint. The second MetadataSection (lines 26-32) contains
the location of the XML Schemas <a href="#XMLSchema1">[XMLSchema - Part 1]</a>,
<a href="#XMLSchema2">[XMLSchema - Part 2]</a> used by the WSDL document. The schemas can
be retrieved through an HTTP GET request at the identified URL
(lines 29-31). The third MetadataSection (lines 33-41) contains
the <a href="#AddrCore">[WS-Addressing]</a> endpoint reference (lines 36-40) of
a <a href="#WS-Transfer">[WS-Transfer]</a> resource the representation of
which is a <a href="#wspolicy">[WS-Policy]</a> document as indicated by
the Dialect attribute (line 34).
</p><p>
While the WS-Policy of the Web service endpoint could be retrieved using
a WS-Transfer Get request directed to the endpoint identified by the
mex:MetadataReference element in lines 36-40 of
<a href="#GetResponse">Example 2-4</a>,
some endpoints MAY support explicit requests for metadata via the
GetMetadata operation.
<a href="#GetMexReq">Example 2-5</a> illustrates a sample GetMetadata request
for the <a href="#wspolicy">[WS-Policy]</a>.
</p><div class="exampleOuter">
<div class="exampleHeader"><a name="GetMexReq" id="GetMexReq"></a>Example 2-5: Sample GetMetadata request message</div><div class="exampleInner"><pre>(01) <s11:Envelope
(02) xmlns:s11='http://schemas.xmlsoap.org/soap/envelope/'
(03) xmlns:wsa='http://www.w3.org/2005/08/addressing'
(04) xmlns:wsp='http://www.w3.org/ns/ws-policy'
(05) xmlns:mex='http://www.w3.org/2011/03/ws-mex' >
(06) <s11:Header>
(07) <wsa:To>http://services.example.org/stockquote</wsa:To>
(08) <wsa:Action>
(09) http://www.w3.org/2011/03/ws-mex/GetMetadata
(10) </wsa:Action>
(11) <wsa:MessageID>
(12) urn:uuid:73d7edfc-5c3c-49b9-ba46-2480caee43e9
(13) </wsa:MessageID>
(14) <wsa:ReplyTo>
(15) <wsa:Address>http://client.example.org</wsa:Address>
(16) </wsa:ReplyTo>
(17) </s11:Header>
(18) <s11:Body>
(19) <mex:GetMetadata>
(20) <mex:Dialect Type='{http://www.w3.org/ns/ws-policy}Policy'
(21) Identifier='http://services.example.org/stockquote/policy'/>
(22) </mex:GetMetadata>
(23) </s11:Body>
(24) </s11:Envelope></pre></div></div><p>
Lines 8-10 in <a href="#GetMexReq">Example 2-5</a> indicate this is a GetMetadata
request. As lines 19-22 indicate, this request is for the policy of
the Web service endpoint (line 7).
</p><p>
<a href="#GetMexRes">Example 2-6</a> lists a sample response to the request in
<a href="#GetMexReq">Example 2-5</a>.
</p><div class="exampleOuter">
<div class="exampleHeader"><a name="GetMexRes" id="GetMexRes"></a>Example 2-6: Sample GetMetadataResponse message</div><div class="exampleInner"><pre>(01) <s11:Envelope
(02) xmlns:s11='http://schemas.xmlsoap.org/soap/envelope/'
(03) xmlns:wsa='http://www.w3.org/2005/08/addressing'
(04) xmlns:wsp='http://www.w3.org/ns/ws-policy'
(05) xmlns:mex='http://www.w3.org/2011/03/ws-mex'>
(06) <s11:Header>
(07) <wsa:To>http://client.example.org</wsa:To>
(08) <wsa:Action>
(09) http://www.w3.org/2011/03/ws-mex/GetMetadataResponse
(10) </wsa:Action>
(11) <wsa:RelatesTo>
(12) urn:uuid:73d7edfc-5c3c-49b9-ba46-2480caee43e9
(13) </wsa:RelatesTo>
(14) </s11:Header>
(15) <s11:Body>
(16) <mex:GetMetadataResponse>
(17) <mex:Metadata>
(18) <mex:MetadataSection
(19) Dialect='wsp:Policy'
(20) Identifier='http://services.example.org/stockquote/policy'>
(21) <wsp:Policy>
(22) <wsp:ExactlyOne>
(23) <!-- Policy alternatives -->
(24) </wsp:ExactlyOne>
(25) </wsp:Policy>
(26) </mex:MetadataSection>
(27) </mex:Metadata>
(28) </mex:GetMetadataResponse>
(29) </s11:Body>
(30) </s11:Envelope></pre></div></div><p>
Lines 8-10 in <a href="#GetMexRes">Example 2-6</a> indicate this message is a
response to a GetMetadata request, and lines 11-13 indicate that it
is a response to the request in <a href="#GetMexReq">Example 2-5</a>. Lines
17-26 contain a single MetadataSection (lines 18-26); line 19
indicates that the metadata in this section is of type, or
Dialect, WS-Policy while line 20 identifies a specific policy
document. Line 23 would have contained the policy expressions for the
Web service endpoint to which the GetMetadata request of
<a href="#GetMexReq">Example 2-5</a> was directed.
</p></div></div><div class="div1">
<h2><a name="notterms" id="notterms"></a>3 Notations and Terminology</h2><p>
This section specifies the notations, namespaces, and
terminology used in this specification.
</p><div class="div2">
<h3><a name="Conventions" id="Conventions"></a>3.1 Notational Conventions</h3><p>
The keywords "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
<a href="#RFC2119">[RFC 2119]</a>.
</p><p>
This specification uses the following syntax to define outlines for
messages:
</p><ul><li><p>
The syntax appears as an XML instance, but values in italics
indicate data types instead of literal values.
</p></li><li><p>
Characters are appended to elements and attributes to indicate
cardinality:
</p><ul><li><p> "?" (0 or 1) </p></li><li><p> "*" (0 or more) </p></li><li><p> "+" (1 or more) </p></li></ul></li><li><p>
The character "|" is used to indicate a choice between alternatives.
</p></li><li><p>
The characters "(" and ")" are used to indicate that contained items
are to be treated as a group with respect to cardinality or choice.
</p></li><li><p>
The characters "[" and "]" are used to call out references and
property names.
</p></li><li><p>
Ellipses (i.e., "...") indicate points of extensibility.
</p></li><li><p>
XML namespace prefixes (see <a href="#XMLNS">Table 3-1</a>) are used to
indicate the namespace of the element being defined.
</p></li></ul><p>
In addition to Message Information Header properties
<a href="#AddrCore">[WS-Addressing]</a>,
this specification uses the following properties to define messages:
</p><dl><dt class="label"> <b>[Headers]</b> </dt><dd><p> Unordered message headers. </p></dd><dt class="label"> <b>[Action]</b> </dt><dd><p> The value to be used for the wsa:Action IRI. </p></dd><dt class="label"> <b>[Body]</b> </dt><dd><p> A message body. </p></dd></dl><p>
These properties bind to a SOAP Envelope as follows:
</p><div class="exampleOuter"><div class="exampleInner"><pre><s:Envelope>
<s:Header>
<b>[Headers]</b>
<wsa:Action><b>[Action]</b></wsa:Action>
...
</s:Header>
<s:Body><b>[Body]</b></s:Body>
</s:Envelope></pre></div></div><p>
This specification can be used in terms of XML Information Set (Infoset)
<a href="#XMLInfoset">[XML Infoset]</a>, even though the specification uses XML 1.0
terminology. Valid Infoset for this specification is the one
serializable in XML 1.0, hence the use of XML 1.0.
</p><p>
The term "generate" is used in relation to the various faults defined
by this specification to imply that a fault is produced and no
further processing SHOULD be performed. In these cases the fault
SHOULD be transmitted. However, there might be reasons when a compliant
implementation can choose not to transmit the fault - for example,
security concerns - in these situations the service MAY choose
not to transmit the fault.
</p></div><div class="div2">
<h3><a name="extensions" id="extensions"></a>3.2 Considerations on the Use of Extensibility Points</h3><p>
The elements defined in this specification MAY be extended at the
points indicated by their outlines and schema. Implementations MAY
add child elements and/or attributes at the indicated extension
points but MUST NOT contradict the semantics of the parent and/or
owner, respectively. If a receiver does not recognize an extension,
the receiver SHOULD ignore that extension. Senders MAY indicate
the presence of an extension that has to be understood through the use
of a corresponding SOAP Header with a soap:mustUnderstand attribute
with the value "1".
</p><p>
In cases where it is either desirable or necessary for the receiver
of a request that has been extended to indicate that it has
recognized and accepted the semantics associated with that extension,
it is RECOMMENDED that the receiver add a corresponding extension
to the response message. The definition of an extension SHOULD clearly
specify how the extension that appears in the response correlates
with that in the corresponding request.
</p><p>
Extension elements and attributes MUST NOT use the Web Services
Metadata Exchange namespace URI.
</p></div><div class="div2">
<h3><a name="terms" id="terms"></a>3.3 Terminology</h3><dl><dt class="label"> Service Endpoint </dt><dd><p>
A Web service that is addressable using a WS-Addressing endpoint
reference. Within the context of this specification, it is assumed
that the consumer's primary goal is to interact with this service.
</p></dd><dt class="label"> Metadata Resource </dt><dd><p>
A specialized Web service that is addressable using either a
WS-Addressing endpoint reference or a URL and whose main purpose is
to expose the XML representation of a piece of metadata associated
with a Service Endpoint.
</p></dd></dl><p>
While technically a single Web service can be both a 'Service Endpoint'
as well as a 'Metadata Resource', for the purposes of clarifying the
various expectations of these two types Web services, this specification
will discuss these two concepts (or roles) as distinct entities.
</p></div><div class="div2">
<h3><a name="Compliance" id="Compliance"></a>3.4 Compliance</h3><p>
An implementation is not compliant with this specification if it fails to
satisfy one or more of the MUST or REQUIRED level requirements defined
herein. A SOAP Node MUST NOT use the XML namespace identifier for this
specification (listed in <a href="#namespaces"><b>3.5 XML Namespaces</b></a>) within SOAP
Envelopes unless it is compliant with this specification.
</p><p>
Normative text within this specification takes precedence over the XML
Schema and WSDL descriptions, which in turn take precedence over outlines,
which in turn take precedence over examples.
</p><p>
All messages defined by this specification MUST conform to the
WS-Addressing specifications and be sent to a Web service that
is addressable by an EPR (see <a href="#AddrCore">[WS-Addressing]</a>).
</p><p>
Unless otherwise noted, all IRIs are absolute IRIs and IRI comparison
MUST be performed according to <a href="#RFC3987">[RFC 3987]</a> section 5.3.1.
</p><p>
For any message defined by this specification, any OPTIONAL elements
or attributes in the message MAY be used by senders of the message;
however receivers of those messages MUST support those OPTIONAL
elements and attributes, unless other behavior is explicitly defined
by this specification.
</p><p>
Support for the GetMetadata operation by a Web service is
OPTIONAL. If metadata about a Web service endpoint is referenced by
a MetadataReference, which is a
<a href="#AddrCore">[WS-Addressing]</a> endpoint reference, then the MetadataReference
MUST refer to a <a href="#WS-Transfer">[WS-Transfer]</a> resource.
The referred resource MAY also support other resource management
and access specifications (e.g. HTTP, WS-ResourceFramework).
</p><p>
Implementations are expected to support both UTF-8 and UTF-16 as
described in XML 1.0.
</p><p>
Implementations of this specification MUST conform to the corrected
version of WSDL as defined by the 'WSDL Correction' sections of WS-I
Basic Profile 1.2 <a href="#BP12">[BP12]</a> and WS-I Basic Profile 2.0
<a href="#BP20">[BP20]</a>.
</p></div><div class="div2">
<h3><a name="namespaces" id="namespaces"></a>3.5 XML Namespaces</h3><p>
The XML namespace URI that MUST be used by implementations of this
specification is:
</p><div class="exampleOuter"><div class="exampleInner"><pre><a href="http://www.w3.org/2011/03/ws-mex">http://www.w3.org/2011/03/ws-mex</a></pre></div></div><p>
<a href="#XMLNS">Table 3-1</a> lists XML namespaces that are used in this
specification. The choice of any namespace prefix is arbitrary and
not semantically significant.
</p><a name="XMLNS" id="XMLNS"></a><table border="1"><caption>Table 3-1: Prefixes and XML namespaces used in this specification </caption><tbody><tr><th align="left"> Prefix </th><th align="left"> XML Namespaces </th><th align="left"> Specification(s) </th></tr><tr><td> s </td><td> (Either SOAP 1.1 or 1.2) </td><td> (Either SOAP 1.1 or 1.2) </td></tr><tr><td> s11 </td><td> http://schemas.xmlsoap.org/soap/envelope/ </td><td> <a href="#SOAP11">[SOAP11]</a> </td></tr><tr><td> s12 </td><td> http://www.w3.org/2003/05/soap-envelope </td><td> <a href="#SOAP12">[SOAP12]</a> </td></tr><tr><td> wsa </td><td> http://www.w3.org/2005/08/addressing </td><td> <a href="#AddrCore">[WS-Addressing]</a> </td></tr><tr><td> wsdl </td><td> http://schemas.xmlsoap.org/wsdl/ </td><td> <a href="#WSDL11">[WSDL11]</a> </td></tr><tr><td> wsp </td><td> http://www.w3.org/ns/ws-policy </td><td> <a href="#wspolicy">[WS-Policy]</a> </td></tr><tr><td> mex </td><td> http://www.w3.org/2011/03/ws-mex </td><td> This specification </td></tr><tr><td> xs </td><td> http://www.w3.org/2001/XMLSchema </td><td> <a href="#XMLSchema1">[XMLSchema - Part 1]</a> </td></tr><tr><td> wssa </td><td> http://www.w3.org/2011/03/ws-sas </td><td> <a href="#WS-SOAPAssertions">[WS-SOAPAssertions]</a> </td></tr><tr><td> wst </td><td> http://www.w3.org/2011/03/ws-tra </td><td> <a href="#WS-Transfer">[WS-Transfer]</a> </td></tr></tbody></table><p>
The working group intends to update the value of the Web Services
Metadata Exchange namespace URI each time a new version of this document
is published until such time that the document reaches Candidate
Recommendation status. Once it has reached Candidate Recommendation
status, the working group intends to maintain the value of the
Web Services Metadata Exchange namespace URI that was assigned in the
Candidate Recommendation unless significant changes are made that
impact the implementation or break post-CR implementations of the
specification. Also see
<a href="http://www.w3.org/2001/tag/doc/namespaceState.html">
http://www.w3.org/2001/tag/doc/namespaceState.html
</a> and
<a href="http://www.w3.org/2005/07/13-nsuri">
http://www.w3.org/2005/07/13-nsuri
</a>.
</p></div></div><div class="div1">
<h2><a name="web-services-metadata" id="web-services-metadata"></a>4 Web Services Metadata Collection</h2><p>
The WS-MetadataExchange Metadata element is a collection of metadata units
such as <a href="#WSDL11">[WSDL11]</a> definitions, <a href="#XMLSchema1">[XMLSchema - Part 1]</a>
documents, <a href="#wspolicy">[WS-Policy]</a> expressions, etc. Each unit
corresponds to metadata for a given scope, domain, or namespace. The
collection of units is represented by a Metadata element, and units
within the collection are represented by MetadataSection elements.
</p><p>
To facilitate processing, MetadataSections are tagged with a
@Dialect and @Identifier of the metadata unit. To ensure
scalability, a unit of metadata MAY be embedded within its
MetadataSection or MAY be included by reference, either an endpoint
reference <a href="#AddrCore">[WS-Addressing]</a>
(MetadataReference) or a URL (MetadataLocation).
</p><p>
The outline for the Metadata element is:
</p><div class="exampleOuter"><div class="exampleInner"><pre><mex:Metadata ...>
<mex:MetadataSection Dialect='<em>xs:QName</em>'
Identifier='<em>xs:anyURI</em>' ...>
(
<mex:MetadataReference ...>
<em>endpoint-reference-type</em>
</mex:MetadataReference>
|
<mex:MetadataLocation ...> <em>xs:anyURI</em> </mex:MetadataLocation>
|
DialectSpecificElement
)
</mex:MetadataSection> *
<em>xs:any</em>*
</mex:Metadata></pre></div></div><p>
The following describes additional constraints on the outline listed
above:
</p><dl><dt class="label">/mex:Metadata</dt><dd><p>
This contains one MetadataSection child for each distinct unit of
metadata. When there is a large amount of metadata, the children
SHOULD contain MetadataReferences or MetadataLocations instead of the
actual information.
</p></dd><dt class="label">/mex:Metadata/mex:MetadataSection</dt><dd><p>
This represents a single unit of metadata (e.g., a WSDL
definitions, an XML Schema document) for a given scope, domain,
or namespace. A MetadataSection contains exactly one child
element, either the embedded XML for the metadata unit, an
endpoint reference to a Metadata Resource for the metadata
unit, or a URL to metadata unit.
</p></dd><dt class="label">/mex:Metadata/mex:MetadataSection/@Dialect</dt><dd><p>
This REQUIRED attribute
indicates the type and version of the metadata unit
contained in this MetadataSection (e.g., WSDL version 1.1).
This MUST be the QName of the root element of the metadata.
</p><p>
If there is more than one metadata unit with the same Dialect, e.g.,
more than one XML Schema document, including them all, one per
MetadataSection, is explicitly encouraged.
</p><p>
Note: the QName is serialized as {namespace-uri}localName.
</p></dd><dt class="label">
/mex:Metadata/mex:MetadataSection/@Dialect='{http://www.w3.org/2011/03/ws-mex}Metadata'
</dt><dd><p>
This Dialect value indicates that the type of the metadata contained
within the MetadataSection is itself a mex:Metadata element.
When the Dialect value is used in conjunction with
mex:MetadataReference or mex:MetadataLocation, the Dialect value
provides the ability to include metadata by reference (an endpoint
reference or a URL).
<a href="#EPRMD">Example 8-2</a> illustrates the use of this Dialect.
</p></dd><dt class="label">/mex:Metadata/mex:MetadataSection/@Identifier</dt><dd><p>
This REQUIRED attribute indicates the Identifier for the metadata unit
in this MetadataSection. Identifier is an absolute IRI.
</p><p>
The interpretation of Identifier is Dialect-specific.
If the value of the
Dialect attribute of the MetadataSection is one of the values in
the table below, the Identifier attribute MUST have the indicated,
corresponding value. In other cases the value of the Identifier
attribute is not constrained.
If there is no algorithm defined for how to determine the Identifier
value for a particular type of metadata, then the Identifier MUST
use a value of "" (empty string).
</p><table border="1"><tbody><tr><th align="left"> Dialect QName </th><th align="left"> @Identifier value </th></tr><tr><td> xs:schema </td><td> xs:schema/@targetNamespace </td></tr><tr><td> wsdl:definitions </td><td> wsdl:definitions/@targetNamespace </td></tr><tr><td> wsp:Policy </td><td> wsp:Policy/@Name </td></tr><tr><td> mex:Metadata </td><td> "" (empty string) </td></tr></tbody></table><p>
If there is more than one MetadataSection with the same
identifier, e.g., more than one XML Schema in the same target
namespace, including them all, one per MetadataSection, is
REQUIRED.
</p></dd><dt class="label">/mex:Metadata/mex:MetadataSection/mex:MetadataReference</dt><dd><p>
This is an endpoint reference to a metadata resource and is
of type EndpointReferenceType as defined by <a href="#AddrCore">[WS-Addressing]</a>.
The metadata resource MUST support the Get operation
<a href="#WS-Transfer">[WS-Transfer]</a> to allow the retrieval of the
metadata unit for the MetadataSection's Dialect and Identifier.
When this element is present, it MUST have no
element siblings.
</p></dd><dt class="label">/mex:Metadata/mex:MetadataSection/mex:MetadataLocation</dt><dd><p>
This contains a URL to metadata, and the metadata MUST be
retrievable from that URL using the primary access mechanism for
the scheme of the URL. For example, for an HTTP URL, the
metadata MUST be retrievable by sending an HTTP GET request to
the URL. When this element is present, it MUST have no
element siblings.
</p></dd><dt class="label">/mex:Metadata/mex:MetadataSection/DialectSpecificElement</dt><dd><p>
When any element other than MetadataReference or MetadataLocation is
present, the element is to be interpreted as the representation of
the metadata unit associated with the MetadataSection's Dialect
and Identifier.
</p></dd></dl></div><div class="div1">
<h2><a name="metadata-resources" id="metadata-resources"></a>5 Metadata Resources</h2><p>
A resource is referred to as a 'metadata resource' when its
representation is of type mex:Metadata, as defined in
<a href="#web-services-metadata"><b>4 Web Services Metadata Collection</b></a>, or any other document format
(e.g. <a href="#XMLSchema1">[XMLSchema - Part 1]</a>,<a href="#XMLSchema2">[XMLSchema - Part 2]</a>,
<a href="#WSDL11">[WSDL11]</a>, <a href="#wspolicy">[WS-Policy]</a>) that is used to
describe some aspect of a service.
</p><p>
When a metadata resource is addressable by an endpoint reference
the resource's representation MUST be retrievable using the Get operation
defined in <a href="#WS-Transfer">[WS-Transfer]</a> and MAY be updated as any other
<a href="#WS-Transfer">[WS-Transfer]</a> resource. When the resource is addressed by
a URL the resource's representation MUST be retrievable using an
HTTP GET and MAY be updated as any other HTTP resource.
</p><p>
To retrieve the representation of a metadata resource, a requester MAY
send a <a href="#WS-Transfer">[WS-Transfer]</a> Get request message to the metadata
resource's endpoint reference, or it MAY send an HTTP GET to the metadata
resource's IRI. These will fetch a one-time snapshot of the metadata.
The metadata associated with a service endpoint MAY be available as
multiple metadata resources.
</p><p>
The representation of a metadata resource MAY be a mex:Metadata element
which MAY contain one or more mex:MetadataSection children. Each
MetadataSection is identified by a specific Dialect and contains
information whose format and content depend on the Dialect.
</p><p>
A Web service endpoint MAY have one or more associated metadata
resources.
</p><p>
It is important to note that metadata resources are themselves services.
In other words, a metadata resource can still accept GetWSDL or
GetMetadata requests, but such requests would apply to the metadata
about the metadata resource and not the original service that the metadata
resource describes.
</p></div><div class="div1">
<h2><a name="Retrieving-Metadata" id="Retrieving-Metadata"></a>6 Retrieving Metadata about Service Endpoints</h2><p>
This specification defines two mechanism by which a requester can ask
a WS-MetadataExchange compliant 'service endpoint' for its metadata:
the GetWSDL operation and the GetMetadata
operation.
</p><p>
GetWSDL provides the means to obtain a starting point for constructing
the relationships between the metadata documents that apply to a
service. It is useful in situations when the requester has no prior
knowledge of these relationships. The GetMetadata operation is useful
in cases where the requester is already aware of these relationships
or when it wishes to obtain a specific metadata document.
</p><div class="div2">
<h3><a name="GetWSDL" id="GetWSDL"></a>6.1 GetWSDL</h3><p>
A requester MAY send a GetWSDL request message to an endpoint to
retrieve the service's WSDL metadata document. This operation MUST
be supported by compliant WS-MetadataExchange service endpoints.
Note, the GetWSDL operation
is a SOAP-based equivalent feature to the commonly supported HTTP GET
targeted at an endpoint's URL appended with "?wsdl".
</p><p>
Through examination of this WSDL document, and by following any
references within it, a requester MUST be able to retrieve any metadata
needed to interact with the service. For example, the schema used by
the service might be embedded within the WSDL or could be available by
following a xs:import element. Likewise, as discussed in
<a href="#ImplicitWSDL"><b>9 Exposing Metadata for Implicitly Defined Features</b></a> through the inclusion of policy
assertions and nested metadata (or metadata references) within those
policy assertions, a requester MUST be able to determine the set of
implicit features available and any related metadata associated with
those features.
</p><p>
The normative outline for a GetWSDL request is:
</p><div class="exampleOuter"><div class="exampleInner"><pre><b>[Action]</b>
http://www.w3.org/2011/03/ws-mex/GetWSDL
<b>[Body]</b>
<mex:GetWSDL ...>
<em>xs:any</em>*
</mex:GetWSDL> </pre></div></div><p>
If the endpoint accepts a GetWSDL request, it MUST reply with a
GetWSDLResponse message. The normative outline for a GetWSDLResponse is:
</p><div class="exampleOuter"><div class="exampleInner"><pre><b>[Action]</b>
http://www.w3.org/2011/03/ws-mex/GetWSDLResponse
<b>[Body]</b>
<mex:GetWSDLResponse ...>
<em>xs:any</em>*
</mex:GetWSDLResponse> </pre></div></div><p>
The following describes additional, normative constraints on the
outline listed above:
</p><dl><dt class="label"> <b>[Body]</b>/mex:GetWSDLResponse/xs:any </dt><dd><p>
When the GetWSDLResponse element contains any child elements, the
first element MUST either be the WSDL metadata document, or a
reference to the WSDL metadata document, of the endpoint.
While an endpoint MAY choose to return a reference to the WSDL, it is
STRONGLY RECOMMENDED that the WSDL metadata document itself be
returned.
If a requester would like a reference to the WSDL then it can use the
GetMetadata operation specifying the appropriate Content URI.
</p><p>
Any extension elements MUST appear after the WSDL document/reference.
The absence of any child elements indicates that the endpoint does
not have any WSDL document, or additional metadata, associated with it.
</p></dd><dt class="label"> <b>[Body]</b>/mex:GetWSDLResponse/wsdl:definitions </dt><dd><p>
When present this OPTIONAL element contains the WSDL metadata
document of the endpoint.
</p></dd><dt class="label"> <b>[Body]</b>/mex:GetWSDLResponse/mex:Location </dt><dd><p>
When present this OPTIONAL element contains a reference to the
WSDL metadata document of the endpoint.
</p></dd><dt class="label"> <b>[Body]</b>/mex:GetWSDLResponse/mex:Reference </dt><dd><p>
When present this OPTIONAL element contains a reference to the
WSDL metadata document of the endpoint.
</p></dd></dl><p>
This operation is safe; it will not result in any side effect
imputable to the requester. This means that in case of an underlying
protocol error that might get unnoticed, resending the same request
can be done automatically.
</p></div><div class="div2">
<h3><a name="GetMetadata" id="GetMetadata"></a>6.2 GetMetadata</h3><p>
A requester MAY send a GetMetadata request message to an endpoint to
retrieve the metadata associated with that endpoint.
This operation MAY be supported by WS-MetadataExchange compliant
service endpoints.
Observe that, in the case where
a service endpoint is also a <a href="#WS-Transfer">[WS-Transfer]</a> resource,
the <a href="#WS-Transfer">[WS-Transfer]</a> Get operation allows requesters to
retrieve the resource representation associated with that endpoint
(i.e. the "data"), while the GetMetadata operation can be used to
retrieve that endpoint's metadata. The normative outline for a
GetMetadata request is:
</p><div class="exampleOuter"><div class="exampleInner"><pre><b>[Action]</b>
http://www.w3.org/2011/03/ws-mex/GetMetadata
<b>[Body]</b>
<mex:GetMetadata Content='<em>xs:any</em>' ? ...>
<mex:Dialect Type='<em>mex:QNameSerialization</em>'
Identifier='<em>xs:anyURI</em>' ?
Content='<em>xs:anyURI</em>' ? .../> *
<em>xs:any</em>*
</mex:GetMetadata> </pre></div></div><p>
The following describes additional, normative constraints on the
outline listed above:
</p><dl><dt class="label"> <b>[Body]</b>/mex:GetMetadata@Content </dt><dd><p>
This OPTIONAL attribute, when present, specifies the default
content form IRI for this request. When this attribute is
not present, the default content form IRI is
'http://www.w3.org/2011/03/ws-mex/Content/Any'.
</p><p>
If no dialect elements are present in the request, the response
MUST only include MetadataSections of the content form specified
by this attribute.
</p><p>
If the specified content form is not available, or not known,
then the response MUST include zero MetadataSections of the
specified form.
</p><p>
This specification defines the following content form IRIs:
</p><table border="1"><tbody><tr><th align="left"> Content Form IRI </th><th align="left"> Form </th></tr><tr><td> http://www.w3.org/2011/03/ws-mex/Content/EPR </td><td> A MetadataReference element is returned </td></tr><tr><td> http://www.w3.org/2011/03/ws-mex/Content/URI </td><td> A MetadataLocation element is returned </td></tr><tr><td> http://www.w3.org/2011/03/ws-mex/Content/Metadata </td><td> The metadata is embedded </td></tr><tr><td> http://www.w3.org/2011/03/ws-mex/Content/Any </td><td> The service is free to choose any content form </td></tr><tr><td> http://www.w3.org/2011/03/ws-mex/Content/All </td><td> The service MUST return all available content forms </td></tr></tbody></table></dd><dt class="label"> <b>[Body]</b>/mex:GetMetadata/mex:Dialect </dt><dd><p>
When this repeating OPTIONAL element is present, the response MUST
include only MetadataSections corresponding to metadata specified by
the combination of the QName, Identifier and Content attributes of
each of the Dialect elements. For each Dialect element if there is no
metadata for that combination of attributes then the response
MUST NOT include any MetadataSections for that Dialect element.
</p><p>
When this element is not present, the endpoint MUST return all
available metadata.
</p></dd><dt class="label"> <b>[Body]</b>/mex:GetMetadata/mex:Dialect@Type </dt><dd><p>
This REQUIRED attribute specifies the Metadata Dialect. The response
MUST only include MetadataSections corresponding to the Dialect
specified by this QName. If the receiver does not have any
MetadataSections of this indicated Dialect, the response MUST
include zero MetadataSections for this QName.
</p><p>
Note: the QName is serialized as {namespace-uri}localName.
</p></dd><dt class="label"> <b>[Body]</b>/mex:GetMetadata/mex:Dialect@Identifier </dt><dd><p>
When this OPTIONAL attribute is present, the response MUST include only
MetadataSections with the indicated identifier; if the receiver
does not have any MetadataSections of the indicated identifier,
the response MUST include zero MetadataSections for this
QName/Identifier pair.
When this attribute is not present, the implied value is any
identifier.
If multiple MetadataSections have the indicated Dialect
and Identifier then all of them MUST be returned.
Note that the absence of this attribute is not equivalent to its
presence with a value of "" - which indicates a request to retrieve
all metadata whose Identifier is the empty string.
</p></dd><dt class="label"> <b>[Body]</b>/mex:GetMetadata/mex:Dialect@Content </dt><dd><p>
For the dialect indicated, the response MUST include only
MetadataSections of the content form specified by this attribute.
</p><p>
When this OPTIONAL attribute is not present, it defaults to the
value of the [Body]/mex:GetMetadata@Content attribute.
</p><p>
If the specified content form is not available, or not known,
then the response MUST include zero
MetadataSections of the specified form for this QName/Identifier pair.
</p></dd></dl><p>
Subject to authorization restrictions, services MUST return all the
MetadataSections corresponding to the GetMetadata request. Note
that there can be multiple MetadataSections returned for any one
combination of Dialect, Identifier and Content values.
</p><p>
If an endpoint accepts a GetMetadata request, it MUST reply with
a GetMetadataResponse message. The normative outline for a
GetMetadataResponse is:
</p><div class="exampleOuter"><div class="exampleInner"><pre><b>[Action]</b>
http://www.w3.org/2011/03/ws-mex/GetMetadataResponse
<b>[Body]</b>
<mex:GetMetadataResponse ...>
<mex:Metadata ...> ... </mex:Metadata>
<em>xs:any</em>*
</mex:GetMetadataResponse></pre></div></div><p>
The following describes additional, normative constraints on the
outline listed above:
</p><dl><dt class="label"> <b>[Body]</b>/mex:GetMetadataResponse/mex:Metadata </dt><dd><p>
The body of the response message MUST contain one mex:Metadata
element as defined in <a href="#web-services-metadata"><b>4 Web Services Metadata Collection</b></a>.
</p><p>
Note, in cases where the requester, through the use of @Content
and/or mex:Dialect sub-elements in the GetMetadata request, has
excluded all the metadata maintained by the service, this
element will be empty.
</p></dd></dl><p>
This operation is safe; it will not result in any side effect
imputable to the requester. This means that in case of an underlying
protocol error that might get unnoticed, resending the same request
can be done automatically.
</p></div><div class="div2">
<h3><a name="PutMetadata" id="PutMetadata"></a>6.3 PutMetadata</h3><p>
A requester MAY send a PutMetadata request message to an endpoint to
update the metadata associated with that endpoint. This operation MAY
be supported by WS-MetadataExchange compliant service endpoints. Observe
that, in the case where a service endpoint is also a
<a href="#WS-Transfer">[WS-Transfer]</a> resource, the <a href="#WS-Transfer">[WS-Transfer]</a> Put
operation allows requesters to update the resource representation
associated with that endpoint (i.e. the "data"), while the PutMetadata
operation can be used to update that endpoint's metadata.
</p><p>
The normative outline for a PutMetadata request is:
</p><div class="exampleOuter"><div class="exampleInner"><pre><b>[Action]</b>
http://www.w3.org/2011/03/ws-mex/PutMetadata
<b>[Body]</b>
<mex:PutMetadata ...>
<mex:Metadata ...> ... </mex:Metadata>
<em>xs:any</em>*
</mex:PutMetadata></pre></div></div><p>
The following describes additional, normative constraints on the
outline listed above:
</p><dl><dt class="label"> <b>[Body]</b>/mex:PutMetadata </dt><dd><p>
This REQUIRED element MUST have as its first child element an
element that comprises the representation of the metadata that
is to be replaced. Additional extension elements MAY be included
after the element representing the metadata to be updated.
</p></dd><dt class="label"> <b>[Body]</b>/mex:PutMetadata/mex:Metadata </dt><dd><p>
The body of the PutMetadata message MUST contain one
mex:Metadata element as defined in
<a href="#web-services-metadata"><b>4 Web Services Metadata Collection</b></a>.
</p><p>
The mex:Metadata element contains one MetadataSection child for
each distinct unit of metadata to be updated. All resource
metadata (identified by the Dialect, Identifier and Content values)
specified by
each metadata section MUST be replaced in its entirety by the
metadata specified in the PutMetadata request message;
the service MUST treat the incoming MetadataSections as the
complete set of metadata for the specified Dialect, Identifier and
Content values and any metadata previously associated with that
triplet of values MUST be removed.
</p><p>
If there is no Metadata associated with the resource that
corresponds to a MetadataSection child contained within the
mex:Metadata element, the endpoint MUST create the Metadata if
the MetadataSection has a dialect that is supported by the
endpoint and if the creation of the Metadata will not invalidate
the endpoint.
</p><p>
When storing references, the endpoint
MUST NOT resolve the references in an attempt to persist the
actual metadata document itself.
</p></dd></dl><p>
An endpoint MUST reject a PutMetadata request if it is unable to
process all of the metadata updates requested. If the dialect,
identifier or content form specified in one or more MetadataSections
is unsupported
by the endpoint, the endpoint MUST generate a mex:UnsupportedMetadata
fault.
If the creation or update of the endpoint's Metadata will render the
endpoint invalid (either because the metadata is of an invalid syntax
for the dialect or because the metadata will cause a semantic conflict
with the endpoint's definition), the endpoint MUST generate an
mex:InvalidMetadata fault.
</p><p>
If an endpoint accepts a PutMetadata request, it MUST reply with a
PutMetadataResponse message. The normative outline for a
PutMetadataResponse is:
</p><div class="exampleOuter"><div class="exampleInner"><pre><b>[Action]</b>
http://www.w3.org/2011/03/ws-mex/PutMetadataResponse
<b>[Body]</b>
<mex:PutMetadataResponse>
<mex:Metadata ...> ... </mex:Metadata> ?
<em>xs:any</em>*
</mex:PutMetadataResponse></pre></div></div><p>
The following describes additional, normative constraints on the
outline listed above:
</p><dl><dt class="label"> <b>[Body]</b>/mex:PutMetadataResponse </dt><dd><p>
This REQUIRED element, if it contains any child elements, MUST have
as its first child element, a mex:Metadata element that comprises
the representation of the metadata that has been updated. Additional
extension elements MAY be included after the element representing
the metadata updates.
</p><p>
As an optimization and as a service to the requester, if there are
no extension elements this element SHOULD be empty if the updated
representation does not differ from the representation sent in
the PutMetadata request message; that is, if the service accepted
the new representation (including all Metadata updates) verbatim.
</p><p>
Such a response (an empty mex:PutMetadataResponse) implies that the
update request was successful in its entirety (assuming no
intervening mutating operations are performed). A service MAY return
the current representation of the resource as the child of the
mex:PutMetadataResponse element even in this case, however.
</p></dd><dt class="label"> <b>[Body]</b>/mex:PutMetadataResponse/mex:Metadata </dt><dd><p>
This OPTIONAL element comprises the representation of all the
metadata sections of the resource that have been updated during
the PutMetadata operation.
</p></dd></dl></div><div class="div2">
<h3><a name="DeleteMetadata" id="DeleteMetadata"></a>6.4 DeleteMetadata</h3><p>
A requester MAY send a DeleteMetadata request message to an endpoint
to delete the metadata associated with that endpoint. This operation
MAY be supported by WS-MetadataExchange compliant service endpoints.
Observe that, in the case where a service endpoint is also a
<a href="#WS-Transfer">[WS-Transfer]</a> resource, the <a href="#WS-Transfer">[WS-Transfer]</a>
Delete operation allows requesters to update the resource representation
associated with that endpoint (i.e. the "data"), while the
DeleteMetadata operation can be used to update that endpoint's metadata.
</p><p>
The normative outline for a DeleteMetadata request is:
</p><div class="exampleOuter"><div class="exampleInner"><pre><b>[Action]</b>
http://www.w3.org/2011/03/ws-mex/DeleteMetadata
<b>[Body]</b>
<mex:DeleteMetadata ...>
<mex:Dialect Type='<em>mex:QNameSerialization</em>'
Identifier='<em>xs:anyURI</em>'?
Content='<em>xs:anyURI</em>'? .../> +
<em>xs:any</em>*
</mex:DeleteMetadata></pre></div></div><p>
The following describes additional, normative constraints on the
outline listed above:
</p><dl><dt class="label"> <b>[Body]</b>/mex:DeleteMetadata </dt><dd><p>
This REQUIRED element MUST have as its first children elements one
or more elements that comprise the representation of the metadata
that is to be deleted. Additional extension elements MAY be
included after the element representing the metadata to be deleted.
</p></dd><dt class="label"> <b>[Body]</b>/mex:DeleteMetadata/mex:Dialect </dt><dd><p>
This REQUIRED (optionally repeating) element specifies the
metadata to be deleted.
</p></dd><dt class="label"> <b>[Body]</b>/mex:DeleteMetadata/mex:Dialect@Type </dt><dd><p>
This REQUIRED attribute specifies the Metadata Dialect of the
metadata to be deleted.
</p><p>
Note: the QName is serialized as {namespace-uri}localName.
</p></dd><dt class="label"> <b>[Body]</b>/mex:DeleteMetadata/mex:Dialect@Identifier </dt><dd><p>
When this OPTIONAL attribute is present, only metadata with the
indicated identifier is to be deleted.
Absence of this attribute indicates that all metadata matching the
specified Dialect and Content MUST be removed.
</p></dd><dt class="label"> <b>[Body]</b>/mex:DeleteMetadata/mex:Dialect@Content </dt><dd><p>
When this OPTIONAL attribute is present, only metadata of the
specific content form is to be deleted.
Absence of this attribute indicates that all metadata matching the
specified Dialetc and Identifier MUST be removed.
</p></dd></dl><p>
An endpoint MUST reject a DeleteMetadata request if it is unable to
process all of the metadata deletes requested. If the dialect,
identifier or content form
specified in one or more of the Dialect elements is
unsupported by the endpoint, the endpoint MUST generate a
mex:UnsupportedMetadata fault. If the deletion of the specified Metadata
will render the endpoint invalid, the endpoint MUST generate an
mex:InvalidMetadata fault.
Note that an otherwise valid request that refers to metadata that does not
exist is not considered an error condition. Rather, the service MUST
continue as if it had successfully processed that one delete request.
</p><p>
If an endpoint accepts a DeleteMetadata request, it MUST reply with a
DeleteMetadataResponse message. The normative outline for a
DeleteMetadataResponse is:
</p><div class="exampleOuter"><div class="exampleInner"><pre><b>[Action]</b>
http://www.w3.org/2011/03/ws-mex/DeleteMetadataResponse
<b>[Body]</b>
<mex:DeleteMetadataResponse>
<em>xs:any</em>*
</mex:DeleteMetadataResponse></pre></div></div><p>
There are no additional, normative constraints on the outline listed above.
</p></div></div><div class="div1">
<h2><a name="MetadataReferences" id="MetadataReferences"></a>7 Metadata References</h2><p>
While a service's metadata can be embedded in many different places
(for example, within an EPR, or within a feature's policy assertion),
it might be more convenient to include a reference to the metadata rather
than include the actual metadata itself. This might be simply for
brevity's sake or so the same copy of metadata can be used in many
different locations without the overhead of duplicating it.
</p><p>
This specification defines two mechanisms by which a metadata reference
can be used in place of metadata. These mechanisms do not modify any
semantic meaning that might be associated with the presence of the
metadata at any particular location - they are simply a syntactical
alternative to embedding the referenced metadata.
</p><div class="div2">
<h3><a name="mexLocation" id="mexLocation"></a>7.1 mex:Location</h3><p>
The mex:Location element MAY be used to specify a reference to an
HTTP metadata resource. A requester MAY use an HTTP GET to the indicated
URL to retrieve the metadata.
</p><p>
The outline for the mex:Location element is:
</p><div class="exampleOuter"><div class="exampleInner"><pre><mex:Location URL="<em>xs:anyURI</em>" Type="<em>mex:QNameSerialization</em>"
Identifier="<em>xs:anyURI</em>" ...>
<em>xs:any</em>*
<mex:Location> </pre></div></div><p>
The following describes additional constraints on the outline listed
above:
</p><dl><dt class="label"> /mex:Location </dt><dd><p>
This element contains a reference to an HTTP metadata resource.
</p></dd><dt class="label"> /mex:Location@URL </dt><dd><p>
This REQUIRED attribute contains the URL of an HTTP metadata
resource. This resource MUST support retrieval of the metadata via
an HTTP GET request.
</p></dd><dt class="label"> /mex:Location@Type </dt><dd><p>
This REQUIRED attribute indicates the QName of the referenced
metadata. This can be used in deciding whether or not to retrieve
the metadata.
</p><p>
Note: the QName is serialized as {namespace-uri}localName.
</p></dd><dt class="label"> /mex:Location@Identifier </dt><dd><p>
This REQUIRED attribute indicates the Identifier for the metadata
being referenced. Identifier is an absolute IRI.
</p></dd></dl></div><div class="div2">
<h3><a name="mexReference" id="mexReference"></a>7.2 mex:Reference</h3><p>
The mex:Reference element MAY be used to specify a reference to a
WS-Transfer metadata resource. A requester MAY use a WS-Transfer Get
to the indicated EPR to retrieve the metadata
</p><p>
The outline for the mex:Reference element is:
</p><div class="exampleOuter"><div class="exampleInner"><pre><mex:Reference Type="<em>mex:QNameSerialization</em>"
Identifier="<em>xs:anyURI</em>" ...>
<em>endpoint-reference-type</em>
<mex:Reference> </pre></div></div><p>
The following describes additional constraints on the outline listed
above:
</p><dl><dt class="label"> /mex:Reference </dt><dd><p>
This element is an endpoint reference to a metadata resource. This
resource MUST support retrieval of the metadata via a WS-Transfer
Get request.
</p></dd><dt class="label"> /mex:Reference@Type </dt><dd><p>
This REQUIRED attribute indicates the QName of the referenced
metadata. This can be used in deciding whether or not to retrieve
the metadata.
</p><p>
Note: the QName is serialized as {namespace-uri}localName.
</p></dd><dt class="label"> /mex:Reference@Identifier </dt><dd><p>
This REQUIRED attribute indicates the Identifier for the metadata
being referenced. Identifier is an absolute IRI.
</p></dd></dl></div><div class="div2">
<h3><a name="idp1568496" id="idp1568496"></a>7.3 Examples</h3><p>
The following examples show how metadata might appear in various
locations:
</p><div class="exampleOuter">
<div class="exampleHeader"><a name="WSDLinEPR" id="WSDLinEPR"></a>Example 7-1: WSDL in an Endpoint Reference</div><div class="exampleInner"><pre>(01) <wsa:Endpoint ...>
(02) <wsa:Address> http://example.com </wsa:Address>
(03) <wsa:Metadata>
(04) <wsdl:definitions>
(05) ...
(06) </wsdl:definitions>
(07) </wsa:Metadata>
(08) </wsa:Endpoint> </pre></div></div><p>
<a href="#WSDLinEPR">Example 7-1</a> shows an endpoint reference with the
endpoint's WSDL embedded. This saves the user of this EPR from having
to retrieve the WSDL. This same endpoint reference might have been
constructed by using a metadata reference instead, as shown in
<a href="#WSDLrefinEPR">Example 7-2</a>:
</p><div class="exampleOuter">
<div class="exampleHeader"><a name="WSDLrefinEPR" id="WSDLrefinEPR"></a>Example 7-2: WSDL reference in an Endpoint Reference</div><div class="exampleInner"><pre>(01) <wsa:Endpoint ...>
(02) <wsa:Address> http://example.com </wsa:Address>
(03) <wsa:Metadata>
(04) <mex:Location URL="http://example.com?wsdl"
(05) Type="{http://schemas.xmlsoap.org/wsdl/}definitions"
(06) Indentifier="..."/>
(07) </wsa:Metadata>
(08) </wsa:Endpoint> </pre></div></div><p>
<a href="#WSDLrefinEPR">Example 7-2</a> shows the same endpoint reference but
rather than embedding the endpoint's WSDL directly in the EPR a
mex:Location is used to indicate that if the user of the EPR needs the
service's WSDL then it can retrieve it from the specified URL.
</p><p>
The following example WSDL shows how support for a particular feature
might be indicated:
</p><div class="exampleOuter">
<div class="exampleHeader"><a name="idp1578208" id="idp1578208"></a>Example 7-3: Feature Metadata in a Policy Assertion</div><div class="exampleInner"><pre>(01) <wsdl:definitions>
(02) ...
(03) <wsdl:service name="stockQuote">
(04) <wsdl:port binding="..." name="...">
(05) <soap:address location="http://example.com"/>
(06) </wsdl:port>
(07) <wsp:Policy>
(08) <wse:EventSource>
(09) <wse:FormatName uri="http://www.w3.org/2011/03/ws-evt/DeliveryFormats/Unwrap"/>
(10) <wsdl:definitions>
(11) ...
(12) <wsdl:service ...>
(13) ...
(14) <wsp:Policy xmlns:wsp="..." wmlns:sp="...">
(15) <sp:SymmetricBinding>
(16) <wsp:Policy>
(17) <sp:ProtectionToken>
(18) <wsp:Policy>
(19) <sp:SecureConversationToken ...>
(20) ...
(21) </sp:SecureConversationToken>
(22) </wsp:Policy>
(23) </sp:ProtectionToken>
(24) </wsp:Policy>
(25) </sp:SymmetricBinding>
(26) </wsp:Policy>
(27) </service>
(28) </wsdl:definitions>
(29) </wse:EventSource>
(30) </wsp:Policy>
(31) </wsdl:service>
(32) </wsdl:definitions> </pre></div></div><p>
This example shows the WSDL for a stockQuote service. As indicated on
lines (08) through (29), this endpoint also acts as a WS-Eventing event
source. The endpoint supports sending notification in the "Unwrapped"
format - line (09). Line (10) through (28) provides the WSDL for the
WS-Eventing features. In particular, lines (14) through (26) indicates
that the WS-Eventing messages need to be protected using
WS-SecureConversation.
</p><p>
This example could have also been written by using metadata references:
</p><div class="exampleOuter"><div class="exampleInner"><pre>(01) <wsdl:definitions>
(02) ...
(03) <wsdl:service name="stockQuote">
(04) <wsdl:port binding="..." name="...">
(05) <soap:address location="http://example.com"/>
(06) </wsdl:port>
(07) <wsp:Policy>
(08) <wse:EventSource>
(09) <wse:FormatName uri="http://www.w3.org/2011/03/ws-evt/DeliveryFormats/Unwrap"/>
(10) <mex:Location URL="http://example.com/EventingWSDL"
(11) Type="{http://schemas.xmlsoap.org/wsdl/}definitions"
(12) Identifier="..." />
(13) </wse:EventSource>
(14) </wsp:Policy>
(15) </wsdl:service>
(16) </wsdl:definitions> </pre></div></div><p>
In this case the embedded WS-Eventing WSDL that is supported by the
stockQuote service has been replaced by a mex:Location element. The WSDL
can now be retrieved via an HTTP GET to the URL specified on line (10).
</p></div></div><div class="div1">
<h2><a name="Metadata-in-Endpoint-References" id="Metadata-in-Endpoint-References"></a>8 Metadata in Endpoint References</h2><div class="div2">
<h3><a name="EPRwithMEX" id="EPRwithMEX"></a>8.1 Endpoint References Containing Metadata</h3><p>
The issuer of a WS-Addressing endpoint
reference MAY include metadata for that service inside
the endpoint reference itself. This mechanism
simplifies the bootstrapping of the service interaction on the
requester side by avoiding additional calls to retrieve
the Web service metadata for the service endpoint.
</p><p>
Embedding the metadata (including a mex:Metadata element) inside an
endpoint reference's wsa:Metadata element allows
the issuer of the endpoint reference to include metadata by value
or by reference, according to the options described in
<a href="#web-services-metadata"><b>4 Web Services Metadata Collection</b></a> and
<a href="#MetadataReferences"><b>7 Metadata References</b></a>.
The outline of a <a href="#AddrCore">[WS-Addressing]</a> endpoint reference which
includes Web services metadata is as follows:
</p><div class="exampleOuter"><div class="exampleInner"><pre><wsa:EndpointReference ...>
<wsa:Address>xs:anyURI</wsa:Address>
<wsa:ReferenceParameters> <em>xs:any</em>* </wsa:ReferenceParameters> ?
<wsa:Metadata>
( <mex:Location .../> |
<mex:Reference ...> ... </mex:Reference> |
<mex:Metadata ...> ... </mex:Metadata> ) *
<em>xs:any</em>*
</wsa:Metadata> ?
<em>xs:any</em>*
</wsa:EndpointReference></pre></div></div><dl><dt class="label"> /wsa:EndpointReference/wsa:Metadata/mex:Location </dt><dd><p>
This repeating OPTIONAL element MAY appear as a direct child of
the wsa:Metadata endpoint reference element.
</p></dd><dt class="label"> /wsa:EndpointReference/wsa:Metadata/mex:Reference </dt><dd><p>
This repeating OPTIONAL element MAY appear as a direct child of
the wsa:Metadata endpoint reference element.
</p></dd><dt class="label"> /wsa:EndpointReference/wsa:Metadata/mex:Metadata </dt><dd><p>
This repeating OPTIONAL element MAY appear as a direct child of
the wsa:Metadata endpoint reference element.
Note: It MAY also be possible to combine multiple mex:Metadata
elements into one mex:Metadata element, however, it is RECOMMENDED
that multiple mex:Metadata elements be used.
</p></dd><dt class="label"> /wsa:EndpointReference/wsa:Metadata/xs:any </dt><dd><p>
This extensibility point, defined by WS-Addressing, can be used
for embedding additional metadata.
</p></dd></dl><p>
In example <a href="#EPRMEX">Example 8-1</a>, a <a href="#AddrCore">[WS-Addressing]</a>
endpoint reference contains WSDL metadata by value that identifies
the binding used to access the service endpoint:
</p><div class="exampleOuter">
<div class="exampleHeader"><a name="EPRMEX" id="EPRMEX"></a>Example 8-1: Endpoint reference with embedded WSDL metadata</div><div class="exampleInner"><pre>(01) <wsa:EndpointReference
(02) xmlns:wsa='http://www.w3.org/2005/08/addressing'>
(03) <wsa:Address>http://services.example.org/stockquote</wsa:Address>
(04) <wsa:Metadata>
(05) <wsdl:definitions
(06) name='StockQuote'
(07) targetNamespace='http://services.example.org/stockquote'
(08) xmlns:tns='http://services.example.org/stockquote'
(09) xmlns:wsoap='http://schemas.xmlsoap.org/wsdl/soap/'
(10) xmlns:wsdl='http://schemas.xmlsoap.org/wsdl/'
(11) xmlns:wsp='http://www.w3.org/ns/ws-policy'
(12) xmlns:msgs='http://services.example.org/stockquote/schemas
(13) xmlns:xs='http://www.w3.org/2001/XMLSchema'>
(14) <wsdl:import
(15) namespace='http://services.example.org/stockquote'
(16) location='http://services.example.org/stockquote/schemas'/>
(17) <wsdl:portType name='StockQuotePortType'>
(18) <wsdl:operation name='GetLastTradePrice'>
(19) <wsdl:input message='msgs:GetLastTradePriceInput'
(20) name='GetLastTradePriceInput'/>
(21) <wsdl:output message='msgs:GetLastTradePriceOutput'
(22) name='GetLastTradePriceOutput'/>
(23) </wsdl:operation>
(24) </wsdl:portType>
(25) <wsdl:binding name='StockQuoteBinding'
(26) type='tns:StockQuotePortType'>
(27) <wsp:PolicyReference
(28) URI='http://services.example.org/stockquote/policy' />
(29) <wsoap:binding style='document'
(30) transport='http://schemas.xmlsoap.org/soap/http'/>
(31) <wsdl:operation name='GetLastTradePrice'>
(32) <wsoap:operation soapAction='http://services.example.org/stockquote/GetLastTradePrice' />
(33) <wsdl:input name='GetLastTradePriceInput'>
(34) <wsoap:body use='literal'/>
(35) </wsdl:input>
(36) <wsdl:output name='GetLastTradePriceOutput'>
(37) <wsoap:body use='literal'/>
(38) </wsdl:output>
(39) </wsdl:operation>
(40) </wsdl:binding>
(41) <wsdl:service name='StockQuoteService'>
(42) <wsdl:port name='StockQuotePort'
(43) binding='tns:StockQuoteBinding' >
(44) <wsoap:address
(45) location='http://services.example.org/stockquote'/>
(46) </wsdl:port>
(47) </wsdl:service>
(48) </wsdl:definitions>
(49) </wsa:Metadata>
(50) </wsa:EndpointReference> </pre></div></div><p>
Lines 5-48 show the way the WSDL of the Web service endpoint is
included 'by value'.
</p><div class="exampleOuter">
<div class="exampleHeader"><a name="EPRMD" id="EPRMD"></a>Example 8-2: Endpoint reference with embedded metadata about the Metadata Reference</div><div class="exampleInner"><pre>(01) <wsa:EndpointReference ...>
(02) <wsa:Address>http://services.example.org/stockquote</wsa:Address>
(03) <wsa:Metadata>
(04) <mex:Reference Type="{http://www.w3.org/2011/03/ws-mex}Metadata" Identifier="">
(05) <wsa:Address>
(06) http://services.example.org/stockquote/metadata
(07) </wsa:Address>
(08) <wsa:Metadata>
(09) <wsdl:definitions ...>
(10) <!-- WS-Transfer WSDL portType plus binding -->
(11) </wsdl:definitions>
(12) </wsa:Metadata>
(13) </mex:Reference>
(14) </wsa:Metadata>
(15) </wsa:EndpointReference> </pre></div></div><p>
<a href="#EPRMD">Example 8-2</a> shows an example of a Web service endpoint
reference in which the Metadata element contains a single
mex:Reference element to a metadata resource (lines 4-13) the
representation of which is mex:Metadata as hinted by the value of
the Type attribute (line 4). The metadata reference contains a
Metadata element (lines 8-12) which contains the necessary metadata for
interacting with the metadata resource through
<a href="#WS-Transfer">[WS-Transfer]</a> operations. Since the mex:Reference
is an endpoint reference to a <a href="#WS-Transfer">[WS-Transfer]</a>
resource, the embedded metadata includes the <a href="#WS-Transfer">[WS-Transfer]</a>
WSDL portType and the necessary binding information for communicating
with that resource.
</p><div class="exampleOuter">
<div class="exampleHeader"><a name="EPRrefMDref" id="EPRrefMDref"></a>Example 8-3: Endpoint reference with a reference to metadata about the Metadata Reference</div><div class="exampleInner"><pre>(01) <wsa:EndpointReference ...>
(02) <wsa:Address>http://services.example.org/stockquote</wsa:Address>
(03) <wsa:Metadata>
(04) <mex:Reference Type='{http://www.w3.org/2011/03/ws-mex}Metadata' Identifier=''>
(05) <wsa:Address>
(06) http://services.example.org/stockquote/metadata
(07) </wsa:Address>
(08) <wsa:Metadata>
(09) <!-- Ref to the WS-Transfer WSDL -->
(10) <mex:Location URL='http://example.org/sq/TransferWSDL'
(11) Type='{http://schemas.xmlsoap.org/wsdl/}definitions' Identifier='...'/>
(12) </wsa:Metadata>
(13) </mex:Reference>
(14) </wsa:Metadata>
(15) </wsa:EndpointReference> </pre></div></div><p>
<a href="#EPRrefMDref">Example 8-3</a> shows an alternative way to represent
<a href="#EPRMD">Example 8-2</a>. It shows an example of a Web service endpoint
reference in which the Metadata element contains a single mex:Reference
element to a metadata resource (lines 4-13) the representation of which
is mex:Metadata as hinted by the value of the Type attribute (line 4).
The metadata reference contains a Metadata element (lines 8-12) which
contains the necessary metadata for interacting with the metadata
resource through <a href="#WS-Transfer">[WS-Transfer]</a> operations. Since the
mex:Reference is an endpoint reference to a <a href="#WS-Transfer">[WS-Transfer]</a>
resource, the mex:Location element is a reference to the
<a href="#WS-Transfer">[WS-Transfer]</a> WSDL which includes the portType and the
necessary binding information for communicating with that resource.
</p><p>
In example <a href="#EPR-PA">Example 8-4</a>, an endpoint reference to a service
endpoint contains the metadata to allow requesters to issue a GetWSDL
request against it.
</p><div class="exampleOuter">
<div class="exampleHeader"><a name="EPR-PA" id="EPR-PA"></a>Example 8-4: Endpoint reference containing Policy Attachment metadata for the GetWSDL operation</div><div class="exampleInner"><pre>(01) <wsa:EndpointReference ...>
(02) <wsa:Address>http://services.example.org/stockquote</wsa:Address>
(03) <wsa:Metadata>
(04) <wsp:PolicyAttachment>
(05) <wsp:AppliesTo>
(06) <!-- Following according to: http://www.w3.org/TR/ws-policy-attach/#uri-domain-expression -->
(07) <!-- with URI syntax from:
(08) http://www.w3.org/TR/wsdl11elementidentifiers/ -->
(09) <wsp:URI>
(10) http://www.w3.org/2011/03/ws-mex#wsdl1.PortTypeOperation(GetWSDL)
(11) </wsp:URI>
(12) </wsp:AppliesTo>
(13) <wsp:Policy> ... </wsp:Policy>
(14) </wsp:PolicyAttachment>
(15) </wsa:Metadata>
(16) </wsa:EndpointReference> </pre></div></div><p>
<a href="#EPR-PA">Example 8-4</a> shows an example of an endpoint reference to a
service endpoint. The endpoint reference contains metadata associated
with the service endpoint (lines 3-15) and the Policy metadata
(lines 4-14) which contains the necessary metadata for interacting
with the endpoint through WS-MetadataExchange. The metadata for
the WS-MetadataExchange interaction is of policy attachment (line 4).
The policy attachment (lines 4-14) defines the policy (line 13) and
the GetWSDL operation to which the policy applies (lines 5-12).
</p><p>
Alternatively, <a href="#EPR-PA">Example 8-4</a> could have been written with
the WS-MetadataExchange Policy Assertion embedded directly into the
EPR along with the necessary Policy Assertions, as shown in
<a href="#EPRmexAssertion">Example 8-5</a>:
</p><div class="exampleOuter">
<div class="exampleHeader"><a name="EPRmexAssertion" id="EPRmexAssertion"></a>Example 8-5: Endpoint reference containing the MetadataExchange policy assertion</div><div class="exampleInner"><pre>(01) <wsa:EndpointReference ...>
(02) <wsa:Address>http://services.example.org/stockquote</wsa:Address>
(03) <wsa:Metadata>
(04) <wsp:Policy>
(05) <mex:MetadataExchange>
(06) <wsp:Policy> ... </wsp:Policy>
(07) </mex:MetadataExchange>
(08) </wsp:Policy>
(09) </wsa:Metadata>
(10) </wsa:EndpointReference> </pre></div></div><p>
<a href="#EPRmexAssertion">Example 8-5</a> shows an example of a endpoint
reference to a service endpoint. The endpoint reference contains
Policy metadata that can be used to properly interact with the service.
In this case the Policy contains the mex:MetadataExchange Policy
Assertion (lines 5-7) indicating that it supports the WS-MetadataExchange
specification. Line 6 contains a Policy Assertion that further qualifies
how a requester would invoke the WS-MetadataExchange operations. For
example, the Policy Assertion on line 6 might contain
assertions to indicate how all WS-MetadataExchange messages are to
be consturcted.
</p></div><div class="div2">
<h3><a name="WSPAEPR" id="WSPAEPR"></a>8.2 Associating Policies with Endpoint References</h3><p>
It is desirable for components that provide EPRs to other components to
be able to efficiently communicate the effective policies of the
endpoints referenced by those EPRs. For example, a subscriber might wish
to indicate to an event source that the notification messages sent as
part of a subscription needs to be digitally signed. Although the
mechanisms described in <a href="#EPRwithMEX"><b>8.1 Endpoint References Containing Metadata</b></a> can be used to
communicate the complete set of policies associated with an endpoint,
the relationship of these policies to specific bindings, operations,
or messages cannot be determined without additional information such
as WSDL documents or wsp:PolicyAttachment elements.
</p><p>
A single wsp:Policy or wsp:PolicyReference element MAY appear as a
child of the /wsa:EndpointReference/wsa:Metadata element.
</p><div class="exampleOuter"><div class="exampleInner"><pre><wsa:EndpointReference>
<wsa:Address> xs:anyURI </wsa:Address>
<wsa:ReferenceParameters> xs:any* </wsa:ReferenceParameters>
<wsa:Metadata>
( <wsp:Policy ...> ... </wsp:Policy> |
<wsp:PolicyReference ...> ... </wsp:PolicyReference> ) ?
</wsa:Metadata>
</wsa:EndpointReference></pre></div></div><p>
If multiple alternatives are desired, the operators defined in
<a href="#wspolicy">[WS-Policy]</a> can be used to specify such alternatives
within the single wsp:Policy element or the element referenced by the
wsp:PolicyReference.
</p><p>
Policies that appear in an endpoint reference in this manner have
Endpoint Policy Subject. Endpoint Policy Subject is defined as follows:
</p><p>
The wsp:Policy or wsp:PolicyReference element, when present, represents
the capabilities and requirements of the endpoint referenced by the
EPR as defined by Section 3, "Policy Model", in the
<a href="#wspolicy">[WS-Policy]</a> specification. Policy attached to an EPR in
this manner MUST be applicable to all message exchanges using the
endpoint referenced by that EPR.
</p><div class="exampleOuter">
<div class="exampleHeader"><a name="EPRsecure" id="EPRsecure"></a>Example 8-6: Endpoint Reference with Associated Policy</div><div class="exampleInner"><pre>(01) <wse:NotifyTo xmlns:wsa="http://www.w3.org/2005/08/addressing"
(02) xmlns:wse="http://www.w3.org/2011/03/ws-evt">
(03) <wsa:Address>http://www.example.com/EventSink/OnPriceChange</wsa:Address>
(04) <wsa:ReferenceParameters>
(05) ...
(06) </wsa:ReferenceParameters>
(07) <wsa:Metadata>
(08) <wsp:Policy xmlns:wsp="..." wmlns:sp="...">
(09) <sp:SymmetricBinding>
(10) <wsp:Policy>
(11) <sp:ProtectionToken>
(12) <wsp:Policy>
(13) <sp:SecureConversationToken ...>
(14) ...
(15) </sp:SecureConversationToken>
(16) </wsp:Policy>
(17) </sp:ProtectionToken>
(18) </wsp:Policy>
(19) </sp:SymmetricBinding>
(20) </wsp:Policy>
(21) </wsa:Metadata>
(22) </wse:NotifyTo></pre></div></div><p>
<a href="#EPRsecure">Example 8-6</a> shows a WS-Eventing NotifyTo EPR that refers
to the endpoint to which an event source sends notification messages.
Attached to this EPR is a Policy (lines 8-20) that indicates that
WS-SecureConversation needs to be used when sending messages to
this endpoint.
</p><p>
Note that in some cases the context in which an EPR appears might
imply the version of SOAP that messages addressed to that EPR are to
use. In this example, without an explicit use of the SOAP assertion,
the Notifications will most likely be sent using the same version of
SOAP that was used to carry the Subscribe message.
</p><p>
The <a href="#AddrCore">[WS-Addressing]</a> specification discusses caveats to the
validity of Metadata information. These apply to policies contained
within the wsa:Metadata element as discussed in this section.
</p><p>
The relationship, if any, between policies contained within the
wsa:Metadata element and any other policies that might apply to the
endpoint referred to by the containing EPR (e.g. policies that might
appear in a WSDL document that describes one or more of the services
offered by that endpoint) is not defined by this specification.
</p></div></div><div class="div1">
<h2><a name="ImplicitWSDL" id="ImplicitWSDL"></a>9 Exposing Metadata for Implicitly Defined Features</h2><p>
An endpoint MAY indicate that it supports a specific feature by
including the feature's policy assertion within its WSDL. By doing so,
the endpoint is indicating that feature operations are
supported by that endpoint even though they are implicit
and do not explicitly appear in
its WSDL. An example of this is an endpoint that indicates the use
of WS-Transfer <a href="#WS-Transfer">[WS-Transfer]</a> by the use of the
wst:TransferResource WS-Policy <a href="#wspolicy">[WS-Policy]</a> assertion.
</p><p>
The Feature WSDL (the WSDL associated with these implicit operations)
MAY appear within a Feature Policy assertion and can be annotated to
indicate any endpoint specific metadata that might be needed by clients
interacting with this service. For example, the WSDL can have policy
assertions that indicate a particular security mechanism used to protect
the feature's operations supported by this endpoint. When a Feature WSDL
does not provide a concrete endpoint, the consumer MUST use the
concrete aspects of the endpoint's WSDL.
</p><p>
An endpoint MAY choose to expose additional metadata about the feature
by including the feature specific metadata within the feature's policy
assertion. For example, an endpoint that also supports WS-Eventing
might choose to have the following WS-Eventing Policy assertion defined:
</p><div class="exampleOuter">
<div class="exampleHeader"><a name="wseEventSourcePA" id="wseEventSourcePA"></a>Example 9-1: WS-Eventing EventSource Policy Assertion with Annotations</div><div class="exampleInner"><pre>(01) <wsp:Policy>
(02) <wse:EventSource>
(03) <wse:FormatName
(04) URI="http://www.w3.org/2011/03/ws-evt/DeliveryFormats/Unwrap">
(05) </wse:FormatName>
(06) <wsevd:EventDescriptions>
(07) <wsevd:types>
(08) <xs:schema targetNamespace="http://www.example.org/oceanwatch">
(09) <xs:include
(10) schemaLocation="http://www.example.org/schemas/oceanwatch.xsd"/>
(11) <xs:element name="WindReport" type="ow:WindReportType"/>
(12) </xs:schema>
(13) </wsevd:types>
(14) <wsevd:eventType name="WindReportEvent" element="ow:WindReport"
(15) actionURI="http://www.example.org/oceanwatch/2003/WindReport"/>
(16) </wsevd:EventDescriptions>
(17) <wsp:Policy> ...security policies... </wsp:Policy>
(18) </wse:EventSource>
(19) </wsp:Policy> </pre></div></div><p>
When this policy assertion appears in a service's WSDL it indicates that
the service supports WS-Eventing, it supports sending notifications using
the 'Unwrap' format, and that it generates exactly one type of event -
a <sq:Quote> event. The Policy Assertion on line 17 indicates that the
nested policy assertions apply to the WS-Eventing operations. For
example, if line 17 includes some security related assertions then the
WS-Eventing operations would need to be secured using those security
mechanisms.
</p><p>
When Feature Policy Assertions contain nested Policy Assertions (as
show above in line 17), those assertions have Endpoint Policy Subject
and apply to all message exchanges related to the feature.
</p><p>
If there were additional WS-Eventing metadata available, for example
a specialized Feature WSDL document, then they would appear as a child
of the wse:EventSource element as well.
</p><p>
The following shows the same WS-Eventing Policy Assertion from
<a href="#wseEventSourcePA">Example 9-1</a> with an embedded copy of the
WS-Eventing WSDL. As discussed above, this WSDL might be annotated to
specify additional constrains on the WS-Eventing message exchanges.
</p><div class="exampleOuter">
<div class="exampleHeader"><a name="idp1649120" id="idp1649120"></a>Example 9-2: Sample WS-Eventing Policy with Embedded WSDL </div><div class="exampleInner"><pre>(01) <wsp:Policy>
(02) <wse:EventSource>
(03) <wse:FormatName
(04) URI="http://www.w3.org/2011/03/ws-evt/DeliveryFormats/Unwrap">
(05) </wse:FormatName>
(06) <wsevd:EventDescriptions>
(07) <wsevd:types>
(08) <xs:schema targetNamespace="http://www.example.org/oceanwatch">
(09) <xs:include
(10) schemaLocation="http://www.example.org/schemas/oceanwatch.xsd"/>
(11) <xs:element name="WindReport" type="ow:WindReportType"/>
(12) </xs:schema>
(13) </wsevd:types>
(14) <wsevd:eventType name="WindReportEvent" element="ow:WindReport"
(15) actionURI="http://www.example.org/oceanwatch/2003/WindReport"/>
(16) </wsevd:EventDescriptions>
(17) <wsdl:definitions> ...ws-eventing wsdl... </wsdl:definitions>
(18) </wse:EventSource>
(19) </wsp:Polixy> </pre></div></div><p>
The following shows a sample WS-Eventing wse:NotifyTo endpoint
reference that might appear as part of a Subscribe request. Lines 05-08
indicate that WS-ReliableMessaging is required when sending notifications
to this endpoint. The mex:Location element, lines 06-07, is a reference
to the WS-ReliableMessaging WSDL that the event source will need to use
when transmitting the WS-ReliableMessaging protocol messages for those
notifications. For example, this WSDL might include security policy
assertions or perhaps binding information that indicates there is a
specific endpoint to which those protocol messages are to be sent - if
it is different from the address specified on line 02.
</p><div class="exampleOuter">
<div class="exampleHeader"><a name="idp1651216" id="idp1651216"></a>Example 9-3: Sample EndpointReference with Embedded Policy </div><div class="exampleInner"><pre>(01) <wse:NotifyTo>
(02) <wsa:Address> http://example.com </wsa:Address>
(03) <wsa:Metadata>
(04) <wsp:Policy>
(05) <wsrmp:RMAssertion>
(06) <mex:Location URL='http://example.com/RMWSDL'
(07) Type='{http://schemas.xmlsoap.org/wsdl/}definitions' Identifier='...'/>
(08) </wsrmp:RMAssertion>
(09) </wsp:Policy>
(10) </wsa:Metadata>
(11) </wse:NotifyTo> </pre></div></div></div><div class="div1">
<h2><a name="Faults" id="Faults"></a>10 Faults</h2><p>
All fault messages defined in this specification MUST be sent
according to the rules and usage described in
<a href="#WSABinding">[WS-Addressing 1.0 SOAP Binding]</a>
Section 6 for encoding SOAP 1.1 and SOAP 1.2 faults.
The <b>[Action]</b> property below MUST be used for faults
defined in this specification:
</p><div class="exampleOuter"><div class="exampleInner"><pre><a href="http://www.w3.org/2011/03/ws-mex/fault">http://www.w3.org/2011/03/ws-mex/fault</a></pre></div></div><p>
The definitions of faults in this section use the following properties:
</p><p>
<b>[Code]</b> The fault code.<br />
<b>[Subcode]</b> The fault subcode.<br />
<b>[Reason]</b> The English language reason element.<br />
<b>[Detail]</b> The detail element. If absent, no detail element
is defined for the fault.<br />
</p><p>The properties above bind to a SOAP 1.2 fault as follows:</p><div class="exampleOuter"><div class="exampleInner"><pre><s12:Envelope>
<s12:Header>
<wsa:Action> <b>[Action]</b> </wsa:Action>
<!-- Headers elided for brevity. -->
</s12:Header>
<s12:Body>
<s12:Fault>
<s12:Code>
<s12:Value><b>[Code]</b></s12:Value>
<s12:Subcode>
<s12:Value><b>[Subcode]</b></s12:Value>
</s12:Subcode>
</s12:Code>
<s12:Reason>
<s12:Text xml:lang="en"><b>[Reason]</b></s12:Text>
</s12:Reason>
<s12:Detail>
<b>[Detail]</b>
...
</s12:Detail>
</s12:Fault>
</s12:Body>
</s12:Envelope></pre></div></div><p>The properties bind to a SOAP 1.1 fault as follows:</p><div class="exampleOuter"><div class="exampleInner"><pre><s11:Envelope>
<s12:Header>
<wsa:Action> <b>[Action]</b> </wsa:Action>
<!-- Headers elided for brevity. -->
</s12:Header>
<s11:Body>
<s11:Fault>
<faultcode><b>[Subcode]</b></faultcode>
<faultstring xml:lang="en"><b>[Reason]</b></faultstring>
<detail>
<b>[Detail]</b>
...
</detail>
</s11:Fault>
</s11:Body>
</s11:Envelope></pre></div></div><div class="div2">
<h3><a name="UnsupportedMetadata" id="UnsupportedMetadata"></a>10.1 UnsupportedMetadata</h3><p>
This fault MUST be generated when one or more metadata dialect(s)
specified on the request message are unsupported by the endpoint.
</p><table border="1"><tbody><tr><th align="left"><b>[Code]</b></th><td>s:Sender</td></tr><tr><th align="left"><b>[Subcode]</b></th><td>mex:UnsupportedMetadata</td></tr><tr><th align="left"><b>[Reason]</b></th><td>
The metadata specified on the request message is not supported by
the endpoint
</td></tr><tr><th align="left"><b>[Detail]</b></th><td>
<em>One or more elements specifying the unsupported Metadata of the
following form:</em>
<br />
<Dialect Type='<em>mex:QNameSerialization</em>' Identifier='<em>xs:anyURI</em>'? .../> +
</td></tr></tbody></table></div><div class="div2">
<h3><a name="InvalidMetadata" id="InvalidMetadata"></a>10.2 InvalidMetadata</h3><p>
This fault MUST be generated when the metadata passed on the
PutMetadata request message is invalid or when the Metadata would
render the endpoint invalid.
</p><table border="1"><tbody><tr><th align="left"><b>[Code]</b></th><td>s:Sender</td></tr><tr><th align="left"><b>[Subcode]</b></th><td>mex:InvalidMetadata</td></tr><tr><th align="left"><b>[Reason]</b></th><td>
The metadata specified is invalid for this endpoint
</td></tr><tr><th align="left"><b>[Detail]</b></th><td>
<em>The invalid metadata specified by a mex:Metadata element.</em>
<br />
<mex:Metadata ...> ... </mex:Metadata>
</td></tr></tbody></table></div></div><div class="div1">
<h2><a name="Security" id="Security"></a>11 Security Considerations</h2><p>
This specification considers two sets of security requirements, those of
the applications that use the WS-MetadataExchange protocol and those of
the protocol itself.
</p><p>
This specification makes no assumptions about the security requirements
of the applications that use WS-MetadataExchange. However, once those
requirements have been satisfied within a given operational context,
the addition of WS-MetadataExchange to this operational context can
not undermine the fulfillment of those requirements; the use of
WS-MetadataExchange SHOULD NOT create additional attack vectors within
an otherwise secure system.
</p><p>
The material below is not a "check list". There are many other security
concerns that need to be considered when implementing or using this
protocol. Implementers and users of this protocol are urged to perform a
security analysis to determine their particular threat profile and the
appropriate responses to those threats.
</p><div class="div2">
<h3><a name="idp1702016" id="idp1702016"></a>11.1 Metadata and Security Bootstrapping</h3><p>
There are cases in which the metadata used to describe a service might
be considered sensitive information. In these cases it is advisable
for services to authenticate and authorize consumers as part of the
processing of any requests for this metadata. However, because the
security aspects of a service (e.g. supported protocols and token
formats, cipher suites, etc.) are usually described using metadata
(i.e. the constructs defined by WS-SecurityPolicy), there is an obvious
dilemma when attempting to protect metadata in this way. Services
wishing to protect access to their metadata are advised to use the
mechanisms described in <a href="#bootstrapping"><b>13 Bootstrapping Metadata Retrieval</b></a> to advertise
the security requirements for clients wishing to access metadata via
the mechanisms defined in this specification.
</p></div></div><div class="div1">
<h2><a name="metadata" id="metadata"></a>12 WS-MetadataExchange Metadata</h2><p>
An endpoint MAY indicate its support of WS-MetadataExchange, or its
features,
by including the MetadataExchange Policy assertion within its WSDL. By
doing so the endpoint is indicating that the corresponding
WS-MetadataExchange
operations are supported by that endpoint even though they are implicit
and do not explicitly appear in its WSDL
(i.e. the WS-MetadataExchange operations do not appear in the WSDL that
MAY be retrievable by using a WS-MetadataExchange GetWSDL to that endpoint).
</p><p>
The WS-MetadataExchange WSDL containing the operations indicated by the
MetadataExchange Assertion MAY be exposed by including the WSDL as a
child of the MetadataExchange Policy assertion or by including a
reference to it using the mex:Location or mex:Reference elements
(as described in <a href="#MetadataReferences"><b>7 Metadata References</b></a>).
</p><p>
The WS-MetadataExchange WSDL can be annotated to indicate any endpoint
specific metadata that might be needed by clients interacting with
the WS-MetadataExchange operations. For example, the WSDL
MAY have policy assertions that
indicate a particular security mechanism used to protect the
WS-MetadataExchange operations supported by this endpoint.
</p><div class="div2">
<h3><a name="idp1708960" id="idp1708960"></a>12.1 MetadataExchange Assertion</h3><p>
Services indicate support for the WS-MetadataExchange specification
through the use of the Web Services
Policy - Framework <a href="#wspolicy">[WS-Policy]</a> and Web Services Policy -
Attachment <a href="#WS-PolicyAttachment">[WS-PolicyAttachment]</a> specifications.
</p><p>
This specification defines a policy assertion (mex:MetadataExchange).
The normative outline of this assertion is:
</p><div class="exampleOuter"><div class="exampleInner"><pre><mex:MetadataExchange ...>
<mex:GetMetadataSupported ...>
<mex:MetadataExchangeDialect Type="<em>mex:QNameSerialization</em>" ...>
<mex:MetadataContent URI="<em>xs:anyURI</em>" ...>
<em>xs:any</em>*
</mex:MetadataContent> *
<em>xs:any</em>*
</mex:MetadataExchangeDialect> *
<em>xs:any</em>*
</mex:GetMetadataSupported> ?
<mex:PutMetadataSupported ...>
<mex:MetadataExchangeDialect Type="<em>mex:QNameSerialization</em>" ...>
<mex:MetadataContent URI="<em>xs:anyURI</em>" ...>
<em>xs:any</em>*
</mex:MetadataContent> *
<em>xs:any</em>*
</mex:MetadataExchangeDialect> *
<em>xs:any</em>*
</mex:PutMetadataSupported> ?
<mex:DeleteMetadataSupported ...>
<mex:MetadataExchangeDialect Type="<em>mex:QNameSerialization</em>" ...>
<mex:MetadataContent URI="<em>xs:anyURI</em>" ...>
<em>xs:any</em>*
</mex:MetadataContent> *
<em>xs:any</em>*
</mex:MetadataExchangeDialect> *
<em>xs:any</em>*
</mex:DeleteMetadataSupported> ?
<em>xs:any</em>*
</mex:MetadataExchange></pre></div></div><p>
The following describes additional, normative constraints on the
outline listed above:
</p><dl><dt class="label"> /mex:MetadataExchange </dt><dd><p>
This policy assertion has Endpoint Policy Subject. When present in a
policy alternative, it indicates that
the WS-MetadataExchange protocol MUST
be used when communicating with this endpoint.
</p></dd><dt class="label"> /mex:MetadataExchange/mex:GetMetadataSupported </dt><dd><p>
When present, this OPTIONAL parameter indicates that the
GetMetadata operation is supported by this endpoint.
</p></dd><dt class="label"> /mex:MetadataExchange/mex:GetMetadataSupported/mex:MetadataExchangeDialect@Type </dt><dd><p>
When present, this OPTIONAL parameter indicates support for the
specified MetadataExchange Dialect QName by the GetMetadata operation.
</p><p>
Note: the QName is serialized as {namespace-uri}localName.
</p></dd><dt class="label"> /mex:MetadataExchange/mex:GetMetadataSupported/mex:MetadataExchangeDialect/mex:MetadataContent </dt><dd><p>
When present, this OPTIONAL parameter indicates support for the
specified MetadataExchange content IRI by the GetMetadata
operation for the dialect indicated.
</p></dd><dt class="label"> /mex:MetadataExchange/mex:GetMetadataSupported/mex:MetadataExchangeDialect/mex:MetadataContent/xs:any </dt><dd><p>
This extensibility point allows for additional MetadataContent
specific metadata to be included within the policy assertion. Any
metadata that appears is scoped to the use of the specified
MetadataContent URI.
</p></dd><dt class="label"> /mex:MetadataExchange/mex:GetMetadataSupported/mex:MetadataExchangeDialect/xs:any </dt><dd><p>
This extensibility point allows for additional Metadata Dialect
specific metadata to be included within the policy assertion. Any
metadata that appears is scoped to the use of the specified
Metadata Dialect QName.
</p></dd><dt class="label"> /mex:MetadataExchange/mex:GetMetadataSupported/xs:any </dt><dd><p>
This extensibility point allows for additional metadata specific
to the GetMetadata operation to be included within the policy
assertion. Any metadata that appears is scoped to the use of the
GetMetadata operation.
</p></dd><dt class="label"> /mex:MetadataExchange/mex:PutMetadataSupported </dt><dd><p>
When present, this OPTIONAL parameter indicates that the PutMetadata
operation is supported by this endpoint.
</p></dd><dt class="label"> /mex:MetadataExchange/mex:PutMetadataSupported/mex:MetadataExchangeDialect@Type </dt><dd><p>
When present, this OPTIONAL parameter indicates support for the
specified MetadataExchange Dialect QName by the PutMetadata operation.
</p><p>
Note: the QName is serialized as {namespace-uri}localName.
</p></dd><dt class="label"> /mex:MetadataExchange/mex:PutMetadataSupported/mex:MetadataExchangeDialect/mex:MetadataContent </dt><dd><p>
When present, this OPTIONAL parameter indicates support for the
specified MetadataExchange content IRI by the PutMetadata
operation for the dialect indicated.
</p></dd><dt class="label"> /mex:MetadataExchange/mex:PutMetadataSupported/mex:MetadataExchangeDialect/mex:MetadataContent/xs:any </dt><dd><p>
This extensibility point allows for additional MetadataContent
specific metadata to be included within the policy assertion. Any
metadata that appears is scoped to the use of the specified
MetadataContent URI.
</p></dd><dt class="label"> /mex:MetadataExchange/mex:PutMetadataSupported/mex:MetadataExchangeDialect/xs:any </dt><dd><p>
This extensibility point allows for additional Metadata Dialect
specific metadata to be included within the policy assertion. Any
metadata that appears is scoped to the use of the specified
Metadata Dialect QName.
</p></dd><dt class="label"> /mex:MetadataExchange/mex:PutMetadataSupported/xs:any </dt><dd><p>
This extensibility point allows for additional metadata specific to
the PutMetadata operation to be included within the policy
assertion. Any metadata that appears is scoped to the use of the
PutMetadata operation.
</p></dd><dt class="label"> /mex:MetadataExchange/mex:DeleteMetadataSupported </dt><dd><p>
When present, this OPTIONAL parameter indicates that the
DeleteMetadata operation is supported by this endpoint.
</p></dd><dt class="label"> /mex:MetadataExchange/mex:DeleteMetadataSupported/mex:MetadataExchangeDialect@Type </dt><dd><p>
When present, this OPTIONAL parameter indicates support for the
specified MetadataExchange Dialect QName by the
DeleteMetadata operation.
</p><p>
Note: the QName is serialized as {namespace-uri}localName.
</p></dd><dt class="label"> /mex:MetadataExchange/mex:DeleteMetadataSupported/mex:MetadataExchangeDialect/mex:MetadataContent </dt><dd><p>
When present, this OPTIONAL parameter indicates support for the
specified MetadataExchange content IRI by the DeleteMetadata
operation for the dialect indicated.
</p></dd><dt class="label"> /mex:MetadataExchange/mex:DeleteMetadataSupported/mex:MetadataExchangeDialect/mex:MetadataContent/xs:any </dt><dd><p>
This extensibility point allows for additional MetadataContent
specific metadata to be included within the policy assertion. Any
metadata that appears is scoped to the use of the specified
MetadataContent URI.
</p></dd><dt class="label"> /mex:MetadataExchange/mex:DeleteMetadataSupported/mex:MetadataExchangeDialect/xs:any </dt><dd><p>
This extensibility point allows for additional Metadata Dialect
specific metadata to be included within the policy assertion. Any
metadata that appears is scoped to the use of the specified
Metadata Dialect QName.
</p></dd><dt class="label"> /mex:MetadataExchange/mex:DeleteMetadataSupported/xs:any </dt><dd><p>
This extensibility point allows for additional metadata specific to
the DeleteMetadata operation to be included within the policy
assertion. Any metadata that appears is scoped to the use of the
DeleteMetadata operation.
</p></dd><dt class="label"> /mex:MetadataExchange/xs:any </dt><dd><p>
This extensibility point allows for additional WS-MetadataExchange
specific metadata to be included within the policy assertion -
e.g. WS-MetadataExchange WSDL, or nested policy assertions related
to the WS-MetadataExchange message exchanges. Any metadata that
appears is scoped to the operations and features of the
WS-MetadataExchange specification.
</p></dd></dl></div></div><div class="div1">
<h2><a name="bootstrapping" id="bootstrapping"></a>13 Bootstrapping Metadata Retrieval</h2><p>
Although the operations described in <a href="#Retrieving-Metadata"><b>6 Retrieving Metadata about Service Endpoints</b></a>
can be used by a requester to obtain the metadata about a particular
Service Endpoint, there is the 'chicken and egg' problem of how the
requester knows whether or not these operations are supported in the first
place. The facilities described in
<a href="#Metadata-in-Endpoint-References"><b>8 Metadata in Endpoint References</b></a>,
<a href="#ImplicitWSDL"><b>9 Exposing Metadata for Implicitly Defined Features</b></a>, and
<a href="#metadata"><b>12 WS-MetadataExchange Metadata</b></a> can be used to address this problem.
</p><div class="exampleOuter">
<div class="exampleHeader"><a name="EPRgetwsdl" id="EPRgetwsdl"></a>Example 13-1: Endpoint reference to a Service Endpoint that supports mex:GetWSDL</div><div class="exampleInner"><pre>(01) <wsa:EndpointReference ...>
(02) <wsa:Address>http://services.example.org/stockquote</wsa:Address>
(03) <wsa:Metadata>
(04) <wsp:Policy>
(05) <mex:MetadataExchange/>
(06) <wssa:SOAP11/>
(07) </wsp:Policy>
(08) </wsa:Metadata>
(09) </wsa:EndpointReference> </pre></div></div><p>
The policy assertion at line 05 in <a href="#EPRgetwsdl">Example 13-1</a>
indicates to consumers of this EPR that the GetWSDL operation is
supported by the referenced Service Endpoint. The parameters described in
<a href="#metadata"><b>12 WS-MetadataExchange Metadata</b></a> could be added to the policy assertion at
line 05 to indicate additional capabilities such as support for the
mex:GetMetadata operation.
The assertion on line 06 indicates that SOAP 1.1 needs to be used
when sending the GetWSDL message.
</p><p>
Alternatively the EPR for a Service Endpoint can contain embedded
metadata or references to Metadata Resources that describe the
referenced service. <a href="#EPRMEX">Example 8-1</a> illustrated an EPR with
embedded WSDL metadata. <a href="#WSDLrefinEPR">Example 7-2</a> shows an EPR with a
reference to a Metadata Resource. The representation of this resource
(retrievable via HTTP GET) is a WSDL document that describes the
service at "http://example.com". <a href="#EPRrefMDref">Example 8-3</a> illustrates a
similar mechanism, except that the retrieval mechanism is WS-Transfer
and the representation will be a mex:Metadata document.
</p><p>
Extra binding information (such as SOAP version) could either be
implied by the context in which the EPR was provided or could be
conveyed as in <a href="#EPRwsdl">Example 13-2</a>.
</p><div class="exampleOuter">
<div class="exampleHeader"><a name="EPRwsdl" id="EPRwsdl"></a>Example 13-2: Endpoint reference to a Service Endpoint that supports mex:GetWSDL</div><div class="exampleInner"><pre>(01) <wsa:EndpointReference ...>
(02) <wsa:Address>http://services.example.org/stockquote</wsa:Address>
(03) <wsa:Metadata>
(04) <wsp:Policy>
(05) <mex:MetadataExchange>
{06) <wsdl:definitions ...>
(07) <!-- Binding information -->
(08) <wsdl:binding ...>
(09) ...
(10) </wsdl:binding>
(11) </wsdl:definitions>
(12) </mex:MetadataExchange>
(13) </wsp:Policy>
(14) </wsa:Metadata>
(15) </wsa:EndpointReference> </pre></div></div><p>
When information about the availability of metadata is not present in
an EPR, requesters can use contextual or out-of-band information to
choose the mechanism most appropriate for retrieving the metadata.
Furthermore, specific mechanisms for metadata retrieval can be defined
by communities within the context of particular application domains.
</p></div><div class="div1">
<h2><a name="acks" id="acks"></a>14 Acknowledgements</h2><p>
This specification has been developed as a result of joint
work with many individuals and teams, including:
Alessio Soldano (Red Hat),
Ashok Malhotra (Oracle Corp.),
Asir Vedamuthu (Microsoft Corp.),
Bob Freund (Hitachi, Ltd.),
Bob Natale (MITRE Corp.),
David Snelling (Fujitsu, Ltd.),
Doug Davis (IBM),
Fred Maciel (Hitachi, Ltd.),
Geoff Bullen (Microsoft Corp.),
Gilbert Pilz (Oracle Corp.),
Greg Carpenter (Microsoft Corp.),
Jeff Mischkinsky (Oracle Corp.),
Katy Warr (IBM),
Li Li (Avaya Communications),
Mark Little (Red Hat),
Martin Chapman (Oracle Corp.),
Paul Fremantle (WSO2),
Paul Nolan (IBM),
Prasad Yendluri (Software AG),
Ram Jeyaraman (Microsoft Corp.),
Sreedhara Narayanaswamy (CA),
Sumeet Vij (Software AG),
Tom Rutt (Fujitsu, Ltd.),
Vikas Varma (Software AG),
Wu Chou (Avaya Communications),
Yves Lafon (W3C/ERCIM).
</p></div><div class="div1">
<h2><a name="References" id="References"></a>15 References</h2><div class="div2">
<h3><a name="idp1780096" id="idp1780096"></a>15.1 Normative References</h3><dl><dt class="label"><a name="BP12" id="BP12"></a>BP12</dt><dd>
<a href="http://ws-i.org/profiles/BasicProfile-1.2-2010-11-09.html"><cite>
WS-I Profile, Basic Profile Version 1.2
</cite></a>
, R. Chumbley, et al, Editors.
Web Services Interoperability Organization (WS-I), 9 November 2010.
Available at <a href="http://ws-i.org/profiles/BasicProfile-1.2-2010-11-09.html">http://ws-i.org/profiles/BasicProfile-1.2-2010-11-09.html</a>.</dd><dt class="label"><a name="BP20" id="BP20"></a>BP20</dt><dd>
<a href="http://ws-i.org/profiles/BasicProfile-2.0-2010-11-09.html"><cite>
WS-I Profile, Basic Profile Version 2.0
</cite></a>
, R. Chumbley, et al, Editors.
Web Services Interoperability Organization (WS-I), 9 November 2010.
Available at <a href="http://ws-i.org/profiles/BasicProfile-2.0-2010-11-09.html">http://ws-i.org/profiles/BasicProfile-2.0-2010-11-09.html</a>.</dd><dt class="label"><a name="RFC2119" id="RFC2119"></a>RFC 2119</dt><dd>
<a href="http://www.ietf.org/rfc/rfc2119.txt"><cite>
Key words for use in RFCs to Indicate Requirement Levels
</cite></a>
, S. Bradner, Author.
Internet Engineering Task Force, March 1997.
Available at <a href="http://www.ietf.org/rfc/rfc2119.txt">http://www.ietf.org/rfc/rfc2119.txt</a>.</dd><dt class="label"><a name="RFC3987" id="RFC3987"></a>RFC 3987</dt><dd>
<a href="http://www.ietf.org/rfc/rfc3987.txt"><cite>
Internationalized Resource Identifiers (IRIs)
</cite></a>
, M. Duerst and M. Suignard, Authors.
Internet Engineering Task Force, January 2005.
Available at <a href="http://www.ietf.org/rfc/rfc3987.txt">http://www.ietf.org/rfc/rfc3987.txt</a>.</dd><dt class="label"><a name="SOAP11" id="SOAP11"></a>SOAP11</dt><dd>
<a href="http://www.w3.org/TR/2000/NOTE-SOAP-20000508/"><cite>
W3C Note, "Simple Object Access Protocol (SOAP) 1.1"
</cite></a>
, D. Box, et al, Editors.
World Wide Web Consortium (W3C), 8 May 2000.
Available at <a href="http://www.w3.org/TR/2000/NOTE-SOAP-20000508/">http://www.w3.org/TR/2000/NOTE-SOAP-20000508/</a>.</dd><dt class="label"><a name="SOAP12" id="SOAP12"></a>SOAP12</dt><dd>
<a href="http://www.w3.org/TR/soap12-part1/"><cite>
W3C Recommendation, "SOAP Version 1.2 Part 1: Messaging Framework"
</cite></a>
, M. Gudgin, M. Hadley, N. Mendelsohn, J-J. Moreau, H. Frystyk Nielson,
Editors.
World Wide Web Consortium (W3C), 27 April 2007.
Available at <a href="http://www.w3.org/TR/soap12-part1/">http://www.w3.org/TR/soap12-part1/</a>.</dd><dt class="label"><a name="AddrCore" id="AddrCore"></a>WS-Addressing</dt><dd>
<a href="http://www.w3.org/TR/ws-addr-core"><cite>
W3C Recommendation, "Web Services Addressing 1.0 (WS-Addressing)"
</cite></a>
, M. Gudgin, M. Hadley, T. Rogers, Editors.
World Wide Web Consortium (W3C), 9 May 2006.
Available at <a href="http://www.w3.org/TR/ws-addr-core">http://www.w3.org/TR/ws-addr-core</a>.</dd><dt class="label"><a name="WSABinding" id="WSABinding"></a>WS-Addressing 1.0 SOAP Binding</dt><dd>
<a href="http://www.w3.org/TR/ws-addr-soap"><cite>
W3C Recommendation, "Web Services Addressing 1.0 - SOAP Binding"
</cite></a>
, M. Gudgin, M. Hadley, T. Rogers, Editors.
World Wide Web Consortium (W3C), 9 May 2006.
Available at <a href="http://www.w3.org/TR/ws-addr-soap">http://www.w3.org/TR/ws-addr-soap</a>.</dd><dt class="label"><a name="WS-SOAPAssertions" id="WS-SOAPAssertions"></a>WS-SOAPAssertions</dt><dd>
<a href="http://www.w3.org/TR/ws-soap-assertions"><cite>
W3C Working Group Draft, "Web Services SOAP Assertions (WS-SOAPAssertions) 1.0"
</cite></a>
, D. Davis, et al., Editors.
World Wide Web Consortium (W3C), 15 September 2009.
Available at <a href="http://www.w3.org/TR/ws-soap-assertions">http://www.w3.org/TR/ws-soap-assertions</a>.</dd><dt class="label"><a name="wspolicy" id="wspolicy"></a>WS-Policy</dt><dd>
<a href="http://www.w3.org/TR/ws-policy/"><cite>
W3C Recommendation, "Web Services Policy (WS-Policy) 1.5 - Framework"
</cite></a>
, A. Vedamuthu, et al., Editors.
World Wide Web Consortium (W3C), 4 September 2007.
Available at <a href="http://www.w3.org/TR/ws-policy/">http://www.w3.org/TR/ws-policy/</a>.</dd><dt class="label"><a name="WS-PolicyAttachment" id="WS-PolicyAttachment"></a>WS-PolicyAttachment</dt><dd>
<a href="http://www.w3.org/TR/ws-policy-attach/"><cite>
W3C Recommendation, "Web Services Policy (WS-Policy) 1.5 - Attachment"
</cite></a>
, A. Vedamuthu, et al., Editors.
World Wide Web Consortium (W3C), 4 September 2007.
Available at <a href="http://www.w3.org/TR/ws-policy-attach/">http://www.w3.org/TR/ws-policy-attach/</a>.</dd><dt class="label"><a name="WS-Transfer" id="WS-Transfer"></a>WS-Transfer</dt><dd>
<a href="http://www.w3.org/TR/ws-transfer"><cite>
W3C Working Group Draft, "Web Services Transfer (WS-Transfer) 1.1"
</cite></a>
, D. Davis, et al., Editors.
World Wide Web Consortium (W3C), 15 September 2009.
Available at <a href="http://www.w3.org/TR/ws-transfer">http://www.w3.org/TR/ws-transfer</a>.</dd><dt class="label"><a name="WSDL11" id="WSDL11"></a>WSDL11</dt><dd>
<a href="http://www.w3.org/TR/2001/NOTE-wsdl-20010315"><cite>
W3C Note, "Web Services Description Language (WSDL) 1.1"
</cite></a>
, E. Christensen, et al., Editors.
World Wide Web Consortium (W3C), 15 March 2001
Available at <a href="http://www.w3.org/TR/2001/NOTE-wsdl-20010315">http://www.w3.org/TR/2001/NOTE-wsdl-20010315</a>.</dd><dt class="label"><a name="XMLInfoset" id="XMLInfoset"></a>XML Infoset</dt><dd>
<a href="http://www.w3.org/TR/xml-infoset"><cite>
W3C Recommendation, "XML Information Set (Second Edition)"
</cite></a>
, J. Cowan, R. Tobin, Editors.
World Wide Web Consortium (W3C), 4 February 2004.
Available at <a href="http://www.w3.org/TR/xml-infoset">http://www.w3.org/TR/xml-infoset</a>.</dd><dt class="label"><a name="XMLSchema1" id="XMLSchema1"></a>XMLSchema - Part 1</dt><dd>
<a href="http://www.w3.org/TR/xmlschema-1/"><cite>
W3C Recommendation, "XML Schema Part 1: Structures (Second Edition)"
</cite></a>
, H. Thompson, et al., Editors.
World Wide Web Consortium (W3C), 28 October 2004.
Available at <a href="http://www.w3.org/TR/xmlschema-1/">http://www.w3.org/TR/xmlschema-1/</a>.</dd><dt class="label"><a name="XMLSchema2" id="XMLSchema2"></a>XMLSchema - Part 2</dt><dd>
<a href="http://www.w3.org/TR/xmlschema-2/"><cite>
W3C Recommendation, "XML Schema Part 2: Datatypes (Second Edition)"
</cite></a>
, P. Biron, A. Malhotra, Editors.
World Wide Web Consortium (W3C), 28 October 2004.
Available at <a href="http://www.w3.org/TR/xmlschema-2/">http://www.w3.org/TR/xmlschema-2/</a>.</dd></dl></div></div></div><div class="back"><div class="div1">
<h2><a name="Appendix-A" id="Appendix-A"></a>A XML Schema</h2><p>
A normative copy of the XML Schema <a href="#XMLSchema1">[XMLSchema - Part 1]</a>,
<a href="#XMLSchema2">[XMLSchema - Part 2]</a> description for this specification can be
retrieved from the following address:
</p><div class="exampleOuter"><div class="exampleInner"><pre><a href="http://www.w3.org/2011/03/ws-mex/MetadataExchange.xsd">http://www.w3.org/2011/03/ws-mex/MetadataExchange.xsd</a></pre></div></div><p>
A non-normative copy of the XML schema is listed below for convenience.
</p><div class="exampleOuter"><div class="exampleInner"><pre><xs:schema
targetNamespace='http://www.w3.org/2011/03/ws-mex'
xmlns:tns='http://www.w3.org/2011/03/ws-mex'
xmlns:wsa='http://www.w3.org/2005/08/addressing'
xmlns:xs='http://www.w3.org/2001/XMLSchema'
elementFormDefault='qualified'
blockDefault='#all'>
<xs:import
namespace='http://www.w3.org/2005/08/addressing'
schemaLocation='http://www.w3.org/2006/03/addressing/ws-addr.xsd'/>
<xs:simpleType name='QNameSerialization'>
<xs:restriction base='xs:string'>
<xs:pattern value='\{.*\}.+'/>
</xs:restriction>
</xs:simpleType>
<!-- GetWSDL request -->
<xs:element name='GetWSDL'>
<xs:complexType>
<xs:sequence>
<xs:any namespace='##other' processContents='lax' minOccurs='0'
maxOccurs='unbounded'/>
</xs:sequence>
<xs:anyAttribute namespace='##other' processContents='lax'/>
</xs:complexType>
</xs:element>
<!-- GetWSDL response -->
<xs:element name='GetWSDLResponse'>
<xs:complexType>
<xs:sequence>
<xs:any namespace='##other' processContents='lax' minOccurs='0'
maxOccurs='unbounded'/>
</xs:sequence>
<xs:anyAttribute namespace='##other' processContents='lax'/>
</xs:complexType>
</xs:element>
<!-- Get Metadata request -->
<xs:element name='GetMetadata'>
<xs:complexType>
<xs:sequence>
<xs:element ref='tns:Dialect' minOccurs='0' maxOccurs='unbounded'/>
<xs:any namespace='##other' processContents='lax' minOccurs='0'
maxOccurs='unbounded'/>
</xs:sequence>
<xs:attribute name='Content' type='xs:anyURI'/>
<xs:anyAttribute namespace='##other' processContents='lax'/>
</xs:complexType>
</xs:element>
<!-- Get Metadata response -->
<xs:element name='GetMetadataResponse'>
<xs:complexType>
<xs:sequence>
<xs:element ref='tns:Metadata'/>
<xs:any namespace='##other' processContents='lax' minOccurs='0'
maxOccurs='unbounded'/>
</xs:sequence>
<xs:anyAttribute namespace='##other' processContents='lax'/>
</xs:complexType>
</xs:element>
<!-- Put Metadata request -->
<xs:element name='PutMetadata'>
<xs:complexType>
<xs:sequence>
<xs:element ref='tns:Metadata'/>
<xs:any namespace='##other' processContents='lax' minOccurs='0'
maxOccurs='unbounded'/>
</xs:sequence>
<xs:anyAttribute namespace='##other' processContents='lax'/>
</xs:complexType>
</xs:element>
<!-- Put Metadata response -->
<xs:element name='PutMetadataResponse'>
<xs:complexType>
<xs:sequence>
<xs:element ref='tns:Metadata' minOccurs='0'/>
<xs:any namespace='##other' processContents='lax' minOccurs='0'
maxOccurs='unbounded'/>
</xs:sequence>
<xs:anyAttribute namespace='##other' processContents='lax'/>
</xs:complexType>
</xs:element>
<!-- Delete Metadata request -->
<xs:element name='DeleteMetadata'>
<xs:complexType>
<xs:sequence>
<xs:element ref='tns:Dialect' minOccurs='0' maxOccurs='unbounded'/>
<xs:any namespace='##other' processContents='lax' minOccurs='0'
maxOccurs='unbounded'/>
</xs:sequence>
<xs:anyAttribute namespace='##other' processContents='lax'/>
</xs:complexType>
</xs:element>
<!-- Delete Metadata response -->
<xs:element name='DeleteMetadataResponse'>
<xs:complexType>
<xs:sequence>
<xs:any namespace='##other' processContents='lax' minOccurs='0'
maxOccurs='unbounded'/>
</xs:sequence>
<xs:anyAttribute namespace='##other' processContents='lax'/>
</xs:complexType>
</xs:element>
<xs:element name='Dialect'>
<xs:complexType>
<xs:attribute name='Type' type='tns:QNameSerialization' use='required'/>
<xs:attribute name='Identifier' type='xs:anyURI'/>
<xs:attribute name='Content' type='xs:anyURI'/>
<xs:anyAttribute namespace='##other' processContents='lax'/>
</xs:complexType>
</xs:element>
<!-- Metadata -->
<xs:element name='Metadata'>
<xs:complexType>
<xs:sequence>
<xs:element ref='tns:MetadataSection'
minOccurs='0'
maxOccurs='unbounded'/>
<xs:any namespace='##other' processContents='lax'
minOccurs='0'
maxOccurs='unbounded'/>
</xs:sequence>
<xs:anyAttribute namespace='##other' processContents='lax'/>
</xs:complexType>
</xs:element>
<xs:element name='MetadataSection'>
<xs:complexType>
<xs:choice>
<xs:any namespace='##other' processContents='lax'/>
<xs:element name='MetadataReference' type='wsa:EndpointReferenceType' />
<xs:element name='MetadataLocation' type='tns:URI'/>
</xs:choice>
<xs:attribute name='Dialect' type='tns:QNameSerialization' use='required'/>
<xs:attribute name='Identifier' type='xs:anyURI' use='required'/>
<xs:anyAttribute namespace='##other' processContents='lax'/>
</xs:complexType>
</xs:element>
<xs:complexType name='LocationType'>
<xs:sequence>
<xs:any namespace='##other' processContents='lax' minOccurs='0'
maxOccurs='unbounded'/>
</xs:sequence>
<xs:attribute name='URL' type='xs:anyURI' use='required'/>
<xs:attribute name='Type' type='tns:QNameSerialization' use='required'/>
<xs:attribute name='Identifier' type='xs:anyURI' use='required'/>
<xs:anyAttribute namespace='##other' processContents='lax'/>
</xs:complexType>
<xs:element name='Location' type='tns:LocationType'/>
<xs:complexType name='ReferenceType'>
<xs:complexContent>
<xs:extension base='wsa:EndpointReferenceType'>
<xs:attribute name='Type' type='tns:QNameSerialization' use='required'/>
<xs:attribute name='Identifier' type='xs:anyURI' use='required'/>
<xs:anyAttribute processContents='lax'/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:element name='Reference' type='tns:ReferenceType'/>
<!-- Policy -->
<xs:complexType name='URI'>
<xs:simpleContent>
<xs:extension base='xs:anyURI'>
<xs:anyAttribute namespace='##other' processContents='lax'/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<xs:element name='MetadataExchange'>
<xs:complexType>
<xs:sequence>
<xs:element name='GetMetadataSupported' minOccurs='0'>
<xs:complexType>
<xs:sequence>
<xs:element name='MetadataExchangeDialect'
minOccurs='0' maxOccurs='unbounded'>
<xs:complexType>
<xs:sequence>
<xs:element name='MetadataContent'
minOccurs='0' maxOccurs='unbounded'>
<xs:complexType>
<xs:sequence>
<xs:any namespace='##other' processContents='lax'
minOccurs='0' maxOccurs='0'/>
</xs:sequence>
<xs:attribute name='URI' type='xs:anyURI'
use='required' />
<xs:anyAttribute namespace="##other"
processContents='lax'/>
</xs:complexType>
</xs:element>
<xs:any namespace='##other' processContents='lax'
minOccurs='0' maxOccurs='unbounded'/>
</xs:sequence>
<xs:attribute name='URI' type='xs:anyURI'
use='required'/>
<xs:anyAttribute namespace='##other'
processContents='lax'/>
</xs:complexType>
</xs:element>
<xs:any namespace='##other' processContents='lax'
minOccurs='0' maxOccurs='unbounded'/>
</xs:sequence>
<xs:anyAttribute namespace='##other' processContents='lax' />
</xs:complexType>
</xs:element>
<xs:element name='PutMetadataSupported' minOccurs='0'>
<xs:complexType>
<xs:sequence>
<xs:element name='MetadataExchangeDialect'
minOccurs='0' maxOccurs='unbounded'>
<xs:complexType>
<xs:sequence>
<xs:element name='MetadataContent'
minOccurs='0' maxOccurs='unbounded'>
<xs:complexType>
<xs:sequence>
<xs:any namespace='##other' processContents='lax'
minOccurs='0' maxOccurs='0'/>
</xs:sequence>
<xs:attribute name='URI' type='xs:anyURI'
use='required' />
<xs:anyAttribute namespace="##other"
processContents='lax'/>
</xs:complexType>
</xs:element>
<xs:any namespace='##other' processContents='lax'
minOccurs='0' maxOccurs='unbounded'/>
</xs:sequence>
<xs:attribute name='URI' type='xs:anyURI'
use='required'/>
<xs:anyAttribute namespace='##other'
processContents='lax'/>
</xs:complexType>
</xs:element>
<xs:any namespace='##other' processContents='lax'
minOccurs='0' maxOccurs='unbounded'/>
</xs:sequence>
<xs:anyAttribute namespace='##other' processContents='lax' />
</xs:complexType>
</xs:element>
<xs:element name='DeleteMetadataSupported' minOccurs='0'>
<xs:complexType>
<xs:sequence>
<xs:element name='MetadataExchangeDialect'
minOccurs='0' maxOccurs='unbounded'>
<xs:complexType>
<xs:sequence>
<xs:element name='MetadataContent'
minOccurs='0' maxOccurs='unbounded'>
<xs:complexType>
<xs:sequence>
<xs:any namespace='##other' processContents='lax'
minOccurs='0' maxOccurs='0'/>
</xs:sequence>
<xs:attribute name='URI' type='xs:anyURI'
use='required' />
<xs:anyAttribute namespace="##other"
processContents='lax'/>
</xs:complexType>
</xs:element>
<xs:any namespace='##other' processContents='lax'
minOccurs='0' maxOccurs='unbounded'/>
</xs:sequence>
<xs:attribute name='URI' type='xs:anyURI'
use='required'/>
<xs:anyAttribute namespace='##other'
processContents='lax'/>
</xs:complexType>
</xs:element>
<xs:any namespace='##other' processContents='lax'
minOccurs='0' maxOccurs='unbounded'/>
</xs:sequence>
<xs:anyAttribute namespace='##other' processContents='lax' />
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema></pre></div></div></div><div class="div1">
<h2><a name="Appendix-B" id="Appendix-B"></a>B WSDL</h2><p>
A normative copy of the WSDL <a href="#WSDL11">[WSDL11]</a> description for
this specification can be retrieved from the following address:
</p><div class="exampleOuter"><div class="exampleInner"><pre><a href="http://www.w3.org/2011/03/ws-mex/metadataexchange.wsdl">http://www.w3.org/2011/03/ws-mex/metadataexchange.wsdl</a></pre></div></div><p>
A non-normative copy of the WSDL description is listed below for
convenience.
</p><div class="exampleOuter"><div class="exampleInner"><pre><wsdl:definitions
targetNamespace='http://www.w3.org/2011/03/ws-mex'
xmlns:tns='http://www.w3.org/2011/03/ws-mex'
xmlns:wsa='http://www.w3.org/2005/08/addressing'
xmlns:wsam='http://www.w3.org/2007/05/addressing/metadata'
xmlns:wsdl='http://schemas.xmlsoap.org/wsdl/'
xmlns:xs='http://www.w3.org/2001/XMLSchema' >
<wsdl:types>
<xs:schema
targetNamespace='http://www.w3.org/2011/03/ws-mex' >
<xs:include schemaLocation='metadataexchange.xsd' />
</xs:schema>
</wsdl:types>
<wsdl:message name='GetWSDLMsg'>
<wsdl:part name='body' element='tns:GetWSDL'/>
</wsdl:message>
<wsdl:message name='GetWSDLResponseMsg'>
<wsdl:part name='body' element='tns:GetWSDLResponse'/>
</wsdl:message>
<wsdl:message name='GetMetadataMsg' >
<wsdl:part name='body' element='tns:GetMetadata' />
</wsdl:message>
<wsdl:message name='GetMetadataResponseMsg' >
<wsdl:part name='body' element='tns:GetMetadataResponse' />
</wsdl:message>
<wsdl:message name='PutMetadataMsg' >
<wsdl:part name='body' element='tns:PutMetadata' />
</wsdl:message>
<wsdl:message name='PutMetadataResponseMsg' >
<wsdl:part name='body' element='tns:PutMetadataResponse' />
</wsdl:message>
<wsdl:message name='DeleteMetadataMsg' >
<wsdl:part name='body' element='tns:DeleteMetadata' />
</wsdl:message>
<wsdl:message name='DeleteMetadataResponseMsg' >
<wsdl:part name='body' element='tns:DeleteMetadataResponse' />
</wsdl:message>
<wsdl:portType name='MetadataExchange' >
<wsdl:operation name='GetWSDL'>
<wsdl:input
message='tns:GetWSDLMsg'
wsam:Action=
'http://www.w3.org/2011/03/ws-mex/GetWSDL'/>
<wsdl:output
message='tns:GetWSDLResponseMsg'
wsam:Action=
'http://www.w3.org/2011/03/ws-mex/GetWSDLResponse'/>
</wsdl:operation>
<wsdl:operation name='GetMetadata' >
<wsdl:input
message='tns:GetMetadataMsg'
wsam:Action=
'http://www.w3.org/2011/03/ws-mex/GetMetadata'/>
<wsdl:output
message='tns:GetMetadataResponseMsg'
wsam:Action=
'http://www.w3.org/2011/03/ws-mex/GetMetadataResponse'/>
</wsdl:operation>
<wsdl:operation name='PutMetadata' >
<wsdl:input
message='tns:PutMetadataMsg'
wsam:Action=
'http://www.w3.org/2011/03/ws-mex/PutMetadata'/>
<wsdl:output
message='tns:PutMetadataResponseMsg'
wsam:Action=
'http://www.w3.org/2011/03/ws-mex/PutMetadataResponse'/>
</wsdl:operation>
<wsdl:operation name='DeleteMetadata' >
<wsdl:input
message='tns:DeleteMetadataMsg'
wsam:Action=
'http://www.w3.org/2011/03/ws-mex/DeleteMetadata'/>
<wsdl:output
message='tns:DeleteMetadataResponseMsg'
wsam:Action=
'http://www.w3.org/2011/03/ws-mex/DeleteMetadataResponse'/>
</wsdl:operation>
</wsdl:portType>
</wsdl:definitions></pre></div></div></div><div class="div1">
<h2><a name="changelog" id="changelog"></a>C Change Log</h2><table border="1"><tbody><tr><th> Data </th><th> Author </th><th> Description </th></tr><tr><td> 2009/03/04 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=6391">6391</a>
</td></tr><tr><td> 2009/03/04 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=6519">6519</a>
</td></tr><tr><td> 2009/03/04 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=6442">6442</a>
</td></tr><tr><td> 2009/03/11 </td><td> DD </td><td> Added change log </td></tr><tr><td> 2009/03/11 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=6639">6639</a>
</td></tr><tr><td> 2009/03/11 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=6425">6425</a>
</td></tr><tr><td> 2009/03/16 </td><td> KW </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=6587">6587</a>
</td></tr><tr><td> 2009/03/17 </td><td> KW </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=6405">6405</a>
</td></tr><tr><td> 2009/03/17 </td><td> KW </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=6604">6604</a>
</td></tr><tr><td> 2009/03/18 </td><td> AM </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=6404">6404</a>
</td></tr><tr><td> 2009/03/23 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=6666">6666</a>
</td></tr><tr><td> 2009/03/24 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=6648">6648</a>
</td></tr><tr><td> 2009/04/07 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=6728">6728</a>
</td></tr><tr><td> 2009/04/22 </td><td> KW </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=6739">6739</a>
</td></tr><tr><td> 2009/04/28 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=6787">6787</a>
</td></tr><tr><td> 2009/05/12 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=6433">6433</a>
</td></tr><tr><td> 2009/05/21 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=6674">6674</a>
</td></tr><tr><td> 2009/05/27 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=6906">6906</a>
</td></tr><tr><td> 2009/07/21 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=7122">7122</a>
</td></tr><tr><td> 2009/07/21 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=6500">6500</a>
</td></tr><tr><td> 2009/08/04 </td><td> DD </td><td> Added resolution of issues
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=6719">6719</a>,
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=6720">6720</a>
</td></tr><tr><td> 2009/08/06 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=7194">7194</a>
</td></tr><tr><td> 2009/08/06 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=6679">6679</a>
</td></tr><tr><td> 2009/08/18 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=7206">7206</a>
</td></tr><tr><td> 2009/08/18 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=7195">7195</a>
</td></tr><tr><td> 2009/08/25 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=7365">7365</a>
</td></tr><tr><td> 2009/08/25 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=7270">7270</a>
</td></tr><tr><td> 2009/09/01 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=6702">6702</a>
</td></tr><tr><td> 2009/09/02 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=6694">6694</a>
</td></tr><tr><td> 2009/09/02 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=6533">6533</a>
</td></tr><tr><td> 2009/09/23 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=6570">6570</a>
</td></tr><tr><td> 2009/10/02 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=7426">7426</a>
</td></tr><tr><td> 2009/10/05 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=6406">6406</a>,
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=6721">6721</a>
</td></tr><tr><td> 2009/10/13 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=7827">7827</a>
</td></tr><tr><td> 2009/10/20 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=7068">7068</a>
</td></tr><tr><td> 2009/10/20 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=7207">7207</a>
</td></tr><tr><td> 2009/11/05 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=7912">7912</a>
</td></tr><tr><td> 2009/11/06 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=8204">8204</a>
</td></tr><tr><td> 2009/11/06 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=8168">8168</a>
</td></tr><tr><td> 2009/11/06 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=8199">8199</a>
</td></tr><tr><td> 2009/11/06 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=8214">8214</a>
</td></tr><tr><td> 2009/11/06 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=8124">8124</a>
</td></tr><tr><td> 2009/11/17 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=8280">8280</a>
</td></tr><tr><td> 2009/12/01 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=8291">8291</a>
</td></tr><tr><td> 2009/12/01 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=8203">8203</a>
</td></tr><tr><td> 2009/12/01 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=8201">8201</a>
</td></tr><tr><td> 2009/12/08 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=8227">8227</a>
</td></tr><tr><td> 2009/12/15 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=8200">8200</a>
</td></tr><tr><td> 2009/12/15 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=8297">8297</a>
</td></tr><tr><td> 2009/12/15 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=8202">8202</a>
</td></tr><tr><td> 2010/01/12 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=8293">8293</a>
</td></tr><tr><td> 2010/01/27 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=8294">8294</a>
</td></tr><tr><td> 2010/01/27 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=8292">8292</a>
</td></tr><tr><td> 2010/01/27 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=8290">8290</a>
</td></tr><tr><td> 2010/01/27 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=8205">8205</a>
</td></tr><tr><td> 2010/01/28 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=7728">7728</a>
</td></tr><tr><td> 2010/02/09 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=8160">8160</a>
</td></tr><tr><td> 2010/03/09 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=6463">6463</a>,
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=8031">8031</a>,
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=8198">8198</a>
</td></tr><tr><td> 2010/03/16 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=8289">8289</a>
</td></tr><tr><td> 2010/03/30 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=9031">9031</a>
</td></tr><tr><td> 2010/03/30 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=9266">9266</a>
</td></tr><tr><td> 2010/04/20 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=9250">9250</a>
</td></tr><tr><td> 2010/05/04 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=9087">9087</a>
</td></tr><tr><td> 2010/05/11 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=9570">9570</a>
</td></tr><tr><td> 2010/05/11 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=9699">9699</a>
</td></tr><tr><td> 2010/05/11 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=9671">9671</a>
</td></tr><tr><td> 2010/05/12 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=9709">9709</a>
</td></tr><tr><td> 2010/08/17 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=10339">10339</a>
</td></tr><tr><td> 2010/09/28 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=10768">10768</a>
</td></tr><tr><td> 2010/09/28 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=10785">10785</a>
</td></tr><tr><td> 2010/11/19 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=8284">8284</a>
</td></tr><tr><td> 2010/12/14 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=11189">11189</a>
</td></tr><tr><td> 2011/01/26 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=11625">11625</a>
</td></tr><tr><td> 2011/01/26 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=11849">11849</a>
</td></tr><tr><td> 2011/01/26 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=11867">11867</a>
</td></tr><tr><td> 2011/02/01 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=11850">11850</a>
</td></tr><tr><td> 2011/02/01 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=11882">11882</a>
</td></tr><tr><td> 2011/02/07 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=11899">11899</a>
</td></tr><tr><td> 2011/02/15 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=11865">11865</a>
</td></tr><tr><td> 2011/02/17 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=12113">12113</a>
</td></tr><tr><td> 2011/02/17 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=11790">11790</a>
</td></tr><tr><td> 2011/03/22 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=12093">12093</a>
</td></tr><tr><td> 2011/04/19 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=12457">12457</a>
</td></tr><tr><td> 2011/07/05 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=13148">13148</a>
</td></tr><tr><td> 2011/07/05 </td><td> DD </td><td> Added resolution of issue
<a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=13151">13151</a>
</td></tr></tbody></table></div></div></body></html>