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
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html lang="en-US" xmlns="http://www.w3.org/1999/xhtml" xml:lang=
"en-US">
<head>
<meta http-equiv="Content-Type" content=
"text/html; charset=utf-8" />
<title>2007-09-04 diff-marked version: Web Services Addressing 1.0
- Metadata</title>
<style type="text/css" xml:space="preserve">
/*<![CDATA[*/
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; }
dt.label { display: run-in; }
li, p { margin-top: 0.3em;
margin-bottom: 0.3em; }
.diff-chg { background-color: yellow; }
.diff-del { background-color: red; text-decoration: line-through;}
.diff-add { background-color: lime; }
table { empty-cells: show; }
table caption {
font-weight: normal;
font-style: italic;
text-align: left;
margin-bottom: .5em;
}
div.issue {
color: red;
}
.rfc2119 {
font-variant: small-caps;
}
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=
"../../../StyleSheets/TR/W3C-REC.css" />
<style type='text/css' xml:space="preserve">
/*<![CDATA[*/
.diff-old-a {
font-size: smaller;
color: red;
}
.diff-old {
color: red;
text-decoration: line-through;
}
.diff-new {
color: green;
text-decoration: underline;
}
/*]]>*/
</style>
</head>
<body>
<div class="head">
<p><a href="http://www.w3.org/"><img src=
"../../../Icons/w3c_home" alt="W3C" height="48" width=
"72" /></a></p>
<h1>2007-09-04 diff-marked version: <a name="title" id="title"></a>
Web Services Addressing 1.0 - Metadata</h1>
<h2><a name="w3c-doctype" id="w3c-doctype"></a> W3C <span class=
"diff-old-a">deleted text:</span> <span class=
"diff-old">Proposed</span> Recommendation <span class="diff-old">31
July</span> <span class="diff-new">4 September</span> 2007</h2>
<dl>
<dt>This version:</dt>
<dd><span class="diff-old"><a href=
"http://www.w3.org/TR/2007/PR-ws-addr-metadata-20070731">
http://www.w3.org/TR/2007/PR-ws-addr-metadata-20070731</span>
<a href=
"http://www.w3.org/TR/2007/REC-ws-addr-metadata-20070904"><span class="diff-new">
http://www.w3.org/TR/2007/REC-ws-addr-metadata-20070904</span></a></dd>
<dt>Latest version:</dt>
<dd><a href=
"http://www.w3.org/TR/ws-addr-metadata">http://www.w3.org/TR/ws-addr-metadata</a></dd>
<dt>Previous version:</dt>
<dd><span class="diff-old"><a href=
"http://www.w3.org/TR/2007/WD-ws-addr-metadata-20070627">
http://www.w3.org/TR/2007/WD-ws-addr-metadata-20070627</span>
<a href=
"http://www.w3.org/TR/2007/PR-ws-addr-metadata-20070731"><span class="diff-new">
http://www.w3.org/TR/2007/PR-ws-addr-metadata-20070731</span></a></dd>
<dt>Editors:</dt>
<dd>Martin Gudgin, Microsoft Corp</dd>
<dd>Marc Hadley, Sun Microsystems, Inc.</dd>
<dd>Tony Rogers, CA, Inc.</dd>
<dd>Ümit Yalçinalp, SAP AG</dd>
</dl>
<p><span class="diff-new">Please refer to the</span> <a href=
"http://www.w3.org/2006/05/ws-addr-errata.html"><strong><span class="diff-new">
errata</span></strong></a> <span class="diff-new">for this
document, which may include some normative corrections.</span></p>
<p>This document is also available in these non-normative formats:
<a href="http://www.w3.org/TR/2007/REC-ws-addr-metadata-20070904/ws-addr-metadata.pdf">PDF</a> , <a href=
"http://www.w3.org/TR/2007/REC-ws-addr-metadata-20070904/ws-addr-metadata.ps">PostScript</a> , <a href=
"ws-addr-metadata.xml">XML</a> , and  <a href=
"ws-addr-metadata.txt">plain text</a> .</p>
<p><span class="diff-new">See also</span> <a href=
"http://www.w3.org/2003/03/Translations/byTechnology?technology=ws-addr-metadata">
<strong><span class="diff-new">translations</span></strong></a>
.</p>
<p class="copyright"><a href=
"http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a>
 © 2007  <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>Web Services Addressing provides transport-neutral mechanisms to
address Web services and messages. Web Services Addressing 1.0 -
Metadata (this document) defines how the abstract properties
defined in Web Services Addressing 1.0 - Core are described using
WSDL, how to include WSDL metadata in endpoint references, and how
WS-Policy can be used to indicate the support of WS-Addressing by a
Web service.</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 <span class="diff-old">Proposed</span> <a href=
"http://www.w3.org/2005/10/Process-20051014/tr.html#RecsW3C"><span class="diff-new">
W3C</span> Recommendation</a> of <span class="diff-old-a">deleted
text:</span> <span class="diff-old">the</span> Web Services
Addressing 1.0 - Metadata specification for review by W3C members
and other interested parties. It has been produced by the <a href=
"http://www.w3.org/2002/ws/addr/">Web Services Addressing Working
Group</a> , which is part of the <a href=
"http://www.w3.org/2002/ws/Activity">W3C Web Services Activity</a>
. <span class="diff-old-a">deleted text:</span> <span class=
"diff-old">The W3C Membership and other interested parties are
invited to review the document through 30 August 2007. Advisory
Committee Representatives should consult their <a href=
"http://www.w3.org/2002/09/wbs/33280/addrme07/"> WBS
questionnaires </a>. </p> <p> The Working Group's
<a href=
"http://dev.w3.org/2004/ws/addressing/testsuitewsdl/report/Overview.html">
implementation report </a> demonstrates that the goals for
interoperable implementations, set in the <a href=
"http://www.w3.org/TR/2007/WD-ws-addr-metadata-20070627/#status">
Candidate Recommendation draft </a> of this document, were
achieved, with the exception of having only one implementation for
<a href= "#explicitaction"> <strong> 4.4.1 Explicit
Association </strong> </a> and <a
href="#defactionwsdl20"> <strong> 4.4.2 Default Action
Pattern for WSDL 2.0 </strong> </a>. However, those
sections are also supported in the interchange format of the <a
href= "http://dev.w3.org/2002/ws/desc/test-suite/index.html">
WSDL Test Suite </a>.</span></p>
<p><span class="diff-old">The section <a href=
"http://www.w3.org/TR/2007/WD-ws-addr-metadata-20070627/#refmetadatfromepr">
2.2 Embedding WSDL Metadata in an EPR </a>, defining how to
embed WSDL Metadata in an EPR, has been removed. </p>
<p> Comments</span> <span class="diff-new">Please send
comments</span> on this document <span class="diff-old-a">deleted
text:</span> <span class="diff-old">are invited and are to be
sent</span> to the public <a href=
"mailto:public-ws-addressing-comments@w3.org">public-ws-addressing-comments@w3.org</a>
mailing list ( <a href=
"http://lists.w3.org/Archives/Public/public-ws-addressing-comments/">
public archive</a> ).</p>
<p>The <span class="diff-old">detailed disposition of those
comments can be found in the <a href=
"http://www.w3.org/2002/ws/addr/lc-issues/Overview.html"> Last
Call issues list</span> <span class="diff-new">Working Group
released a test suite along with an</span> <a href=
"http://dev.w3.org/2004/ws/addressing/testsuitewsdl/report/Overview.html">
<span class="diff-new">implementation report</span></a> . A
<a href="diff.html">diff-marked version against the previous
version of this document</a> is available. <span class=
"diff-old-a">deleted text:</span> <span class="diff-old">For a
detailed list of changes since the last publication of this
document, please refer to appendix <a href="#changelog">
<strong> C. Change Log </strong> </a>.</span></p>
<p><span class="diff-old">Discussion of this</span> <span class=
"diff-new">This</span> document <span class="diff-old">takes place
on</span> <span class="diff-new">has been reviewed by W3C Members,
by software developers, and by other W3C groups and interested
parties, and is endorsed by</span> the <span class="diff-old"><a
href= "mailto:public-ws-addressing@w3.org">
public-ws-addressing@w3.org </a> mailing list ( <a href=
"http://lists.w3.org/Archives/Public/public-ws-addressing/">
public archive </a> ). </p> <p>
Publication</span> <span class="diff-new">Director</span> as a
<span class="diff-old-a">deleted text:</span> <span class=
"diff-old">Proposed Recommendation does not imply endorsement by
the</span> W3C <span class="diff-old">Membership. This</span>
<span class="diff-new">Recommendation. It</span> is a <span class=
"diff-old">draft</span> <span class="diff-new">stable</span>
document and may be <span class="diff-old">updated, replaced</span>
<span class="diff-new">used as reference material</span> or
<span class="diff-old">obsoleted by other documents at any time.
It</span> <span class="diff-new">cited from another document. W3C's
role in making the Recommendation</span> is <span class=
"diff-old-a">deleted text:</span> <span class=
"diff-old">inappropriate</span> to <span class="diff-old">cite this
document as other than work in progress. This</span> <span class=
"diff-new">draw attention to the</span> specification <span class=
"diff-old">will remain a Proposed Recommendation until at least 30
August 2007.</span> <span class="diff-new">and to promote its
widespread deployment. This enhances the functionality and
interoperability of the Web.</span></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 href=
"http://www.w3.org/2004/01/pp-impl/36696/status#specs">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="diff.html#tocRange">Introduction</a>
<br />
    1.1 <a href="diff.html#notation">Notational
Conventions</a>
<br />
    1.2 <a href="diff.html#namespaces">Namespaces</a>
<br />
2. <a href="diff.html#metadatinepr">Including WSDL Metadata in EPRs</a>
<br />
    2.1 <a href=
"diff.html#refmetadatfromepr">Referencing WSDL Metadata from an EPR</a>
<br />
3. <a href="diff.html#indicatinguse">Indicating Use of WS-Addressing</a>
<br />
    3.1 <a href="diff.html#wspolicyassertions">WS-Policy
Assertions</a>
<br />
        3.1.1 <a href=
"diff.html#wspolicyaddressing">Addressing Assertion</a>
<br />
        3.1.2 <a href=
"diff.html#wspolicyanonresponses">AnonymousResponses Assertion</a>
<br />
        3.1.3 <a href=
"diff.html#wspolicynonanonresponses">NonAnonymousResponses Assertion</a>
<br />
        3.1.4 <a href=
"diff.html#policyexamplesincompact">Examples (Compact Form)</a>
<br />
        3.1.5 <a href=
"diff.html#policyassertionsinnormal">Examples (Normal Form)</a>
<br />
        3.1.6 <a href=
"diff.html#usingintersection">Finding Compatible Policies</a>
<br />
4. <a href="diff.html#mapvaluesinwsdl">Specifying Message Addressing
Properties in WSDL</a>
<br />
    4.1 <a href="diff.html#eprinendpoint">Extending WSDL
Endpoints with an EPR</a>
<br />
        4.1.1 <a href=
"diff.html#id2273678">WSDL 2.0 Component Model Changes</a>
<br />
    4.2 <a href="diff.html#destinwsdl">Destination</a>
<br />
    4.3 <a href="diff.html#refpinwsdl">Reference
Parameters</a>
<br />
    4.4 <a href="diff.html#actioninwsdl">Action</a>
<br />
        4.4.1 <a href=
"diff.html#explicitaction">Explicit Association</a>
<br />
        4.4.2 <a href=
"diff.html#defactionwsdl20">Default Action Pattern for WSDL 2.0</a>
<br />
        4.4.3 <a href=
"diff.html#id2274552">WSDL 2.0 Component Model Changes</a>
<br />
        4.4.4 <a href=
"diff.html#defactionwsdl11">Default Action Pattern for WSDL 1.1</a>
<br />
5. <a href="diff.html#WSDLMEPS">WS-Addressing and WSDL Message Exchange
Patterns</a>
<br />
    5.1 <a href="diff.html#WSDL11MEPS">WSDL 1.1 Message
Exchange Patterns</a>
<br />
        5.1.1 <a href=
"diff.html#wsdl11oneway">One-way</a>
<br />
        5.1.2 <a href=
"diff.html#wsdl11requestresponse">Request-Response</a>
<br />
        5.1.3 <a href=
"diff.html#wsdl11notification">Notification</a>
<br />
        5.1.4 <a href=
"diff.html#wsdl11solicitresponse">Solicit-response</a>
<br />
    5.2 <a href="diff.html#WSDL20MEPS">WSDL 2.0 Message
Exchange Patterns</a>
<br />
        5.2.1 <a href=
"diff.html#wsdl20inonly">In-only</a>
<br />
        5.2.2 <a href=
"diff.html#wsdl20robustinonly">Robust In-only</a>
<br />
        5.2.3 <a href=
"diff.html#wsdl20inout">In-out</a>
<br />
        5.2.4 <a href=
"diff.html#wsdl20inoptionalout">In-optional-out</a>
<br />
        5.2.5 <a href=
"diff.html#wsdl20outonly">Out-only</a>
<br />
        5.2.6 <a href=
"diff.html#wsdl20robustoutonly">Robust Out-only</a>
<br />
        5.2.7 <a href=
"diff.html#wsdl20outin">Out-in</a>
<br />
        5.2.8 <a href=
"diff.html#wsdl20outoptionalin">Out-optional-in</a>
<br />
6. <a href="diff.html#conformance">Conformance</a>
<br />
7. <a href="diff.html#references">References</a>
<br />
    7.1 <a href="diff.html#id2278438">Normative</a>
<br />
    7.2 <a href="diff.html#id2279332">Informative</a>
<br /></p>
<h3><a name="appendices" id="appendices"></a> Appendices</h3>
<p class="toc">A. <a href="diff.html#acknowledgments">Acknowledgements</a>
(Non-Normative)
<br />
B. <a href="diff.html#actioncompatibility">Compatibility of [action] with
previous versions of WS-Addressing</a> (Non-Normative)
<br />
<span class="diff-old-a">deleted text:</span> <span class=
"diff-old">C. <a href="#changelog"> Change Log </a>
(Non-Normative) <br />     C.1 <a
href="#id2276545"> Changes Since Candidate Recommendation Draft
</a> <br />     C.2 <a
href="#id2276559"> Changes Since Last Call Working Draft
</a> <br />     C.3 <a
href="#id2276574"> Changes Since Third Working Draft </a>
<br />     C.4 <a
href="#id2276588"> Changes Since Second Working Draft </a>
<br />     C.5 <a
href="#id2276602"> Changes Since First Working Draft </a>
<br />     C.6 <a
href="#id2276616"> Changes Since Submission </a> <br
/></span></p>
</div>
<hr />
<div class="body">
<div class="div1">
<h2><a name="tocRange" id="tocRange"></a> 1. Introduction</h2>
<p>Web Services Addressing 1.0 - Core [ <cite><a href=
"diff.html#WSADDR-CORE">WS-Addressing Core</a></cite> ] defines a set of
abstract properties and an XML Infoset [ <cite><a href=
"diff.html#XMLInfoSet">XML Information Set</a></cite> ] representation of
Web service endpoint references (EPRs) and to facilitate end-to-end
addressing of endpoints in messages. Web Services Addressing 1.0 -
Metadata (this document) defines how the abstract properties
defined in Web Services Addressing 1.0 - Core are described using
WSDL and how WS-Policy can be used to indicate the support of
WS-Addressing by a Web service. WS-Addressing is designed to be
able to work with WS-Policy 1.5 [ <cite><a href="diff.html#WSPolicy">WS
Policy 1.5</a></cite> ], WSDL 2.0 [ <cite><a href="diff.html#WSDL20">WSDL
2.0</a></cite> ] and also (for backwards compatibility) with WSDL
1.1 [ <cite><a href="diff.html#WSDL11">WSDL 1.1</a></cite> ] described
services.</p>
<div class="div2">
<h3><a name="notation" id="notation"></a> 1.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 [
<cite><a href="diff.html#RFC2119">IETF RFC 2119</a></cite> ].</p>
<p>When describing abstract data models, this specification uses
the notational convention used by the XML Infoset [ <cite><a href=
"diff.html#XMLInfoSet">XML Information Set</a></cite> ]. Specifically,
abstract property names always appear in square brackets (e.g.,
[some property]).</p>
<p>When describing concrete XML schemas [ <cite><a href=
"diff.html#XMLSchemaP1">XML Schema Structures</a></cite> , <cite><a href=
"diff.html#XMLSchemaP2">XML Schema Datatypes</a></cite> ], this
specification uses the notational convention of WS-Security [
<cite><a href="diff.html#WS-Security">WS-Security</a></cite> ].
Specifically, each member of an element's [children] or
[attributes] property is described using an XPath-like notation
(e.g., /x:MyHeader/x:SomeProperty/@value1). The use of {any}
indicates the presence of an element wildcard (<xs:any/>).
The use of @{any} indicates the presence of an attribute wildcard
(<xs:anyAttribute/>).</p>
</div>
<div class="div2">
<h3><a name="namespaces" id="namespaces"></a> 1.2 Namespaces</h3>
<p>This specification uses a number of namespace prefixes
throughout; they are listed in <a href="diff.html#nsprefs">Table 1-1</a> .
Note that the choice of any namespace prefix is arbitrary and not
semantically significant (see [ <cite><a href="diff.html#XMLNS">XML
Namespaces</a></cite> ]).</p>
<a name="nsprefs" id="nsprefs"></a>
<table summary="Namespace prefixes usage in this specification"
border="1">
<caption>Table 1-1. Prefixes and Namespaces used in this
specification</caption>
<tbody>
<tr>
<th align="left" rowspan="1" colspan="1">Prefix</th>
<th align="left" rowspan="1" colspan="1">Namespace</th>
</tr>
<tr>
<td rowspan="1" colspan="1">S</td>
<td rowspan="1" colspan="1">
http://www.w3.org/2003/05/soap-envelope</td>
</tr>
<tr>
<td rowspan="1" colspan="1">S11</td>
<td rowspan="1" colspan="1">
http://schemas.xmlsoap.org/soap/envelope</td>
</tr>
<tr>
<td rowspan="1" colspan="1">wsa</td>
<td rowspan="1" colspan="1">
http://www.w3.org/2005/08/addressing</td>
</tr>
<tr>
<td rowspan="1" colspan="1">wsam</td>
<td rowspan="1" colspan="1">
http://www.w3.org/2007/05/addressing/metadata</td>
</tr>
<tr>
<td rowspan="1" colspan="1">wsoap</td>
<td rowspan="1" colspan="1">http://www.w3.org/ns/wsdl/soap</td>
</tr>
<tr>
<td rowspan="1" colspan="1">xs</td>
<td rowspan="1" colspan="1">http://www.w3.org/2001/XMLSchema</td>
</tr>
<tr>
<td rowspan="1" colspan="1">wsdl</td>
<td rowspan="1" colspan="1">Either http://www.w3.org/ns/wsdl or
http://schemas.xmlsoap.org/wsdl/ depending on context</td>
</tr>
<tr>
<td rowspan="1" colspan="1">wsdl20</td>
<td rowspan="1" colspan="1">http://www.w3.org/ns/wsdl</td>
</tr>
<tr>
<td rowspan="1" colspan="1">wsdl11</td>
<td rowspan="1" colspan="1">http://schemas.xmlsoap.org/wsdl/</td>
</tr>
<tr>
<td rowspan="1" colspan="1">soap11</td>
<td rowspan="1" colspan="1">
http://schemas.xmlsoap.org/wsdl/soap/</td>
</tr>
<tr>
<td rowspan="1" colspan="1">wsp</td>
<td rowspan="1" colspan="1">http://www.w3.org/ns/ws-policy</td>
</tr>
</tbody>
</table>
<br />
<p>The working group intends to update the value of the Web
Services Addressing 1.0 - Metadata 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 Addressing 1.0 - Metadata
namespace URI that was assigned in the Candidate Recommendation
unless significant changes are made that impact the implementation
of the specification.</p>
<p>WS-Addressing is defined in terms of the XML Information Set [
<cite><a href="diff.html#XMLInfoSet">XML Information Set</a></cite> ].
WS-Addressing can be used with SOAP [ <cite><a href=
"diff.html#SOAP12-PART1">SOAP 1.2</a></cite> , <cite><a href="diff.html#SOAP11">SOAP
1.1</a></cite> ] as described in Web Services Addressing 1.0 - SOAP
Binding [ <cite><a href="diff.html#WSADDR-SOAP">WS-Addressing SOAP
Binding</a></cite> ]. The examples in this specification use an XML
1.0 [ <cite><a href="diff.html#XML10">XML 1.0</a></cite> ] representation
but this is not a requirement.</p>
<p>All information items defined by this specification are
identified by the XML namespace URI [ <cite><a href="diff.html#XMLNS">XML
Namespaces</a></cite> ]
"http://www.w3.org/2007/05/addressing/metadata". A normative XML
Schema [ <cite><a href="diff.html#XMLSchemaP1">XML Schema
Structures</a></cite> , <cite><a href="diff.html#XMLSchemaP2">XML Schema
Datatypes</a></cite> ] document can be obtained by dereferencing
the XML namespace URI.</p>
</div>
</div>
<div class="div1">
<h2><a name="metadatinepr" id="metadatinepr"></a> 2. Including WSDL
Metadata in EPRs</h2>
<p>An EPR's metadata section can contain a reference to WSDL
metadata, can include embedded WSDL metadata, or both.</p>
<div class="div2">
<h3><a name="refmetadatfromepr" id="refmetadatfromepr"></a> 2.1
Referencing WSDL Metadata from an EPR</h3>
<p>The WSDL binding of Web Services Addressing introduces the
following element and attribute information items for referencing
WSDL metadata from an EPR's metadata section:</p>
<dl>
<dt class="label">wsam:InterfaceName (0..1)</dt>
<dd>
<p>A QName identifying a description of the sequences of messages
that a service sends and/or receives. This corresponds to a WSDL
2.0 interface or, for backwards compatibility, a WSDL 1.1 port
type. When this element is included in an EPR, the EPR is
considered to be specific to the interface or port type it
identifies.</p>
</dd>
<dt class="label">wsam:ServiceName (0..1)</dt>
<dd>
<p>A QName that identifies the set of endpoints at which a
particular Web service is deployed. The set of endpoints is
represented by a service in WSDL 2.0 or, for backwards
compatibility, a WSDL 1.1 service.</p>
</dd>
<dt class="label">wsam:ServiceName/@EndpointName (0..1)</dt>
<dd>
<p>An NCName that identifies one endpoint amongst the set
identified by the service name above. An endpoint is represented by
an endpoint in WSDL 2.0 or, for backwards compatibility, a port in
WSDL 1.1. When this attribute is specified, the EPR is considered
to be specific to the endpoint or port it identifies.</p>
</dd>
</dl>
<p>The element information items defined above are used in an EPR's
metadata section. The following shows an example endpoint
reference. This references the interface named
"ghns:reservationInterface" at the endpoint IRI
"http://greath.example.com/2004/reservation". Note the use of the
WSDL[ <cite><a href="diff.html#WSDL20">WSDL 2.0</a></cite> ] wsdlLocation
attribute.</p>
<div class="exampleOuter">
<p style="text-align: left" class="exampleHead"><em><span>Example
2-1.</span> Example endpoint reference.</em></p>
<div class="exampleInner">
<pre xml:space="preserve">
<wsa:EndpointReference
xmlns:wsa="http://www.w3.org/2005/08/addressing"
xmlns:ghns="http://greath.example.com/2004/wsdl/resSvc">
<wsa:Address>http://greath.example.com/2004/reservation</wsa:Address>
<wsa:Metadata
xmlns:wsdli="http://www.w3.org/ns/wsdl-instance"
wsdli:wsdlLocation="http://greath.example.com/2004/wsdl/resSvc http://greath.example.com/2004/reservation.wsdl">
<wsam:InterfaceName>ghns:reservationInterface</wsam:InterfaceName>
</wsa:Metadata>
</wsa:EndpointReference>
</pre></div>
</div>
</div>
</div>
<div class="div1">
<h2><a name="indicatinguse" id="indicatinguse"></a> 3. Indicating
Use of WS-Addressing</h2>
<p>This specification supports a mechanism for indicating, in a
WSDL description, that the endpoint conforms to the WS-Addressing
specification. That mechanism uses WS-Policy Framework [
<cite><a href="diff.html#WSPolicy">WS Policy 1.5</a></cite> ].</p>
<div class="div2">
<h3><a name="wspolicyassertions" id="wspolicyassertions"></a> 3.1
WS-Policy Assertions</h3>
<p>The mechanism for indicating that a binding or endpoint conforms
to the WS-Addressing specification is through the use of the Web
Services Policy - Framework [ <cite><a href="diff.html#WSPolicy">WS Policy
1.5</a></cite> ] and Web Services Policy - Attachment [
<cite><a href="diff.html#WSPolicyAttachment">WS Policy 1.5 -
Attachment</a></cite> ] specifications. This specification defines
three policy assertions.</p>
<p>The <code>wsam:Addressing</code> policy assertion applies to the
endpoint policy subject.</p>
<p>For WSDL 1.1, these assertions may be attached to
<code>wsdl11:port</code> or <code>wsdl11:binding</code> . For WSDL
2.0, they may be attached to <code>wsdl20:endpoint</code> or
<code>wsdl20:binding</code> . A policy expression containing the
wsam:Addressing policy assertion MUST NOT be attached to a
<code>wsdl:portType</code> or <code>wsdl20:interface</code> . The
<code>wsam:Addressing</code> policy assertion specifies a concrete
behavior whereas the <code>wsdl:portType</code> or
<code>wsdl20:interface</code> is an abstract construct.</p>
<div class="div3">
<h4><a name="wspolicyaddressing" id="wspolicyaddressing"></a> 3.1.1
Addressing Assertion</h4>
<p>The <code>wsam:Addressing</code> policy assertion is a nested
policy container assertion. The meaning of this assertion, when
present in a policy alternative, is that WS-Addressing is required
to communicate with the subject. The <code>wsam:Addressing</code>
assertion indicates that there are no restrictions on the use of
WS-Addressing unless otherwise qualified by assertions in its
nested policy expression. In order to indicate that the subject
supports WS-Addressing but does not require its use, an additional
policy alternative should be provided which does not contain this
assertion; the compact authoring style for an optional policy
assertion provided by WS-Policy V1.5 [ <cite><a href="diff.html#WSPolicy">WS
Policy 1.5</a></cite> ] may be used. The <code>wsp:Optional</code>
attribute, as a syntactic shortcut, can be used with the
<code>wsam:Addressing</code> assertion. This indicates two policy
alternatives, one which contains the policy assertion, and another
which does not.</p>
<p>The inclusion of this assertion implies support for the Web
Services Addressing 1.0 - Core [ <cite><a href=
"diff.html#WSADDR-CORE">WS-Addressing Core</a></cite> ] and Web Services
Addressing 1.0 - SOAP Binding [ <cite><a href=
"diff.html#WSADDR-SOAP">WS-Addressing SOAP Binding</a></cite> ].</p>
</div>
<div class="div3">
<h4><a name="wspolicyanonresponses" id="wspolicyanonresponses"></a>
3.1.2 AnonymousResponses Assertion</h4>
<p>The <code>wsam:AnonymousResponses</code> element MAY be used as
a policy assertion nested within the <code>wsam:Addressing</code>
assertion in accordance with the rules laid down by <a href=
"http://www.w3.org/TR/2007/CR-ws-policy-20070330/#Policy_Assertion_Nesting">
policy assertion nesting</a> ([ <cite><a href="diff.html#WSPolicy">WS Policy
1.5</a></cite> ], section 4.3.2).</p>
<p>The appearance of this element within the
<code>wsam:Addressing</code> policy assertion indicates that the
endpoint requires request messages to use response endpoint EPRs
that contain the anonymous URI ("
<code>http://www.w3.org/2005/08/addressing/anonymous</code> ") as
the value of [address]. In other words, the endpoint requires the
use of anonymous responses.</p>
<p>The None URI ("
<code>http://www.w3.org/2005/08/addressing/none</code> ") may
appear as the value of [address] in place of the anonymous URI;
this value MUST be accepted.</p>
</div>
<div class="div3">
<h4><a name="wspolicynonanonresponses" id=
"wspolicynonanonresponses"></a> 3.1.3 NonAnonymousResponses
Assertion</h4>
<p>The <code>wsam:NonAnonymousResponses</code> element MAY be used
as a policy assertion nested within the Addressing assertion in
accordance with the rules laid down by <a href=
"http://www.w3.org/TR/2007/CR-ws-policy-20070330/#Policy_Assertion_Nesting">
policy assertion nesting</a> ([ <cite><a href="diff.html#WSPolicy">WS Policy
1.5</a></cite> ], section 4.3.2). The
<code>wsam:NonAnonymousResponses</code> policy assertion MUST NOT
be used in the same policy alternative as the
<code>wsam:AnonymousResponses</code> policy assertion.</p>
<p>The appearance of this element within the
<code>wsam:Addressing</code> assertion indicates that the endpoint
expresses requires request messages to use response endpoint EPRs
that contain something other than the anonymous URI as the value of
[address]. In other words, the endpoint requires the use of
non-anonymous responses. This assertion is deliberately vague; its
presence indicates that some non-anonymous addresses will be
accepted but doesn't constrain what such an address might look
like. A receiver can still reject a request that contains an
address that it doesn't understand or that requires a binding it
doesn't support.</p>
<p>The None URI ("
<code>http://www.w3.org/2005/08/addressing/none</code> ") may
appear as the value of [address] in place of a non-anonymous
address; this value MUST be accepted.</p>
</div>
<div class="div3">
<h4><a name="policyexamplesincompact" id=
"policyexamplesincompact"></a> 3.1.4 Examples (Compact Form)</h4>
<div class="exampleOuter">
<p style="text-align: left" class="exampleHead"><em><span>Example
3-1.</span> Subject supports WS-Addressing</em></p>
<div class="exampleInner">
<pre xml:space="preserve">
<wsp:Policy>
<wsam:Addressing wsp:Optional="true">
<wsp:Policy/>
</wsam:Addressing>
</wsp:Policy>
</pre></div>
</div>
<div class="exampleOuter">
<p style="text-align: left" class="exampleHead"><em><span>Example
3-2.</span> Subject requires WS-Addressing</em></p>
<div class="exampleInner">
<pre xml:space="preserve">
<wsp:Policy>
<wsam:Addressing>
<wsp:Policy/>
</wsam:Addressing>
</wsp:Policy>
</pre></div>
</div>
<div class="exampleOuter">
<p style="text-align: left" class="exampleHead"><em><span>Example
3-3.</span> Subject requires WS-Addressing and requires the use of
non-anonymous response EPRs</em></p>
<div class="exampleInner">
<pre xml:space="preserve">
<wsp:Policy>
<wsam:Addressing>
<wsp:Policy>
<wsam:NonAnonymousResponses/>
</wsp:Policy>
</wsam:Addressing>
</wsp:Policy>
</pre></div>
</div>
</div>
<div class="div3">
<h4><a name="policyassertionsinnormal" id=
"policyassertionsinnormal"></a> 3.1.5 Examples (Normal Form)</h4>
<div class="exampleOuter">
<p style="text-align: left" class="exampleHead"><em><span>Example
3-4.</span> Subject supports WS-Addressing</em></p>
<div class="exampleInner">
<pre xml:space="preserve">
<wsp:Policy>
<wsp:ExactlyOne>
<wsp:All/>
<wsp:All>
<wsam:Addressing>
<wsp:Policy>
<wsp:ExactlyOne>
<wsp:All/>
</wsp:ExactlyOne>
</wsp:Policy>
</wsam:Addressing>
</wsp:All>
</wsp:ExactlyOne>
</wsp:Policy>
</pre></div>
</div>
<div class="exampleOuter">
<p style="text-align: left" class="exampleHead"><em><span>Example
3-5.</span> Subject requires WS-Addressing</em></p>
<div class="exampleInner">
<pre xml:space="preserve">
<wsp:Policy>
<wsp:ExactlyOne>
<wsp:All>
<wsam:Addressing>
<wsp:Policy>
<wsp:ExactlyOne>
<wsp:All/>
</wsp:ExactlyOne>
</wsp:Policy>
</wsam:Addressing>
</wsp:All>
</wsp:ExactlyOne>
</wsp:Policy>
</pre></div>
</div>
<div class="exampleOuter">
<p style="text-align: left" class="exampleHead"><em><span>Example
3-6.</span> Subject requires WS-Addressing and requires the use of
non-anonymous response EPRs</em></p>
<div class="exampleInner">
<pre xml:space="preserve">
<wsp:Policy>
<wsp:ExactlyOne>
<wsp:All>
<wsam:Addressing>
<wsp:Policy>
<wsp:ExactlyOne>
<wsp:All>
<wsam:NonAnonymousResponses/>
</wsp:All>
</wsp:ExactlyOne>
</wsp:Policy>
</wsam:Addressing>
</wsp:All>
</wsp:ExactlyOne>
</wsp:Policy>
</pre></div>
</div>
</div>
<div class="div3">
<h4><a name="usingintersection" id="usingintersection"></a> 3.1.6
Finding Compatible Policies</h4>
<p>When a client is looking for an endpoint with compatible policy,
one common method used is to take the policy intersection between
the policy which the client is looking for, and the policy asserted
in the WSDL document; a non-empty intersection is sought. The
policy used by the client must be written carefully to avoid
unexpected results. This is most obvious when the client is not
looking for explicit support of a particular kind of response;
failing to take care could mean missing a compatible policy.</p>
<div class="exampleOuter">
<p style="text-align: left" class="exampleHead"><em><span>Example
3-7.</span> Client looking for an endpoint which supports
Addressing, and which supports anonymous responses</em></p>
<div class="exampleInner">
<pre xml:space="preserve">
<wsp:Policy>
<wsp:ExactlyOne>
<wsp:All>
<wsam:Addressing>
<wsp:Policy>
<wsp:ExactlyOne>
<wsp:All>
<AnonymousResponses Optional=”true”/>
</wsp:All>
</wsp:ExactlyOne>
</wsp:Policy>
</wsam:Addressing>
</wsp:All>
</wsp:ExactlyOne>
</wsp:Policy>
</pre></div>
</div>
<div class="exampleOuter">
<p style="text-align: left" class="exampleHead"><em><span>Example
3-8.</span> Client looking for an endpoint which supports
Addressing, and does not require support for responses (will
intersect with anything)</em></p>
<div class="exampleInner">
<pre xml:space="preserve">
<wsp:Policy>
<wsp:ExactlyOne>
<wsp:All>
<wsam:Addressing> <-- supports all response types -->
<wsp:Policy>
</wsp:Policy>
</wsam:Addressing>
</wsp:All>
<wsp:All>
<wsam:Addressing> <-- requires Anonymous responses -->
<wsp:Policy>
<wsp:ExactlyOne>
<wsp:All>
<AnonymousResponses />
</wsp:All>
</wsp:ExactlyOne>
</wsp:Policy>
</wsam:Addressing>
</wsp:All>
<wsp:All>
<wsam:Addressing> <- requires nonAnonymous responses -->
<wsp:Policy>
<wsp:ExactlyOne>
<wsp:All>
<NonAnonymousResponses />
</wsp:All>
</wsp:ExactlyOne>
</wsp:Policy>
</wsam:Addressing>
</wsp:All>
</wsp:ExactlyOne>
</wsp:Policy>
</pre></div>
</div>
<p>For more detailed descriptions of the use of wsp:Optional,
wsp:Ignorable, and strict and lax intersection, please refer to the
WS-Policy Primer [ <cite><a href="diff.html#WSPolicyPrimer">WS Policy 1.5 -
Primer</a></cite> ].</p>
</div>
</div>
</div>
<div class="div1">
<h2><a name="mapvaluesinwsdl" id="mapvaluesinwsdl"></a> 4.
Specifying Message Addressing Properties in WSDL</h2>
<p>This section describes how the values of certain message
addressing properties can be specified in WSDL. In some cases the
values of message addressing properties are specified using
existing WSDL constructs, in other cases new WSDL extensions are
defined for that purpose.</p>
<div class="div2">
<h3><a name="eprinendpoint" id="eprinendpoint"></a> 4.1 Extending
WSDL Endpoints with an EPR</h3>
<p>A wsdl20:endpoint or wsdl11:port element MAY be extended using a
child wsa:EndpointReference element. When extended this way, the
[address] property of the child EPR MUST match the {address}
property of the endpoint component (WSDL 2.0) or the address value
provided by the relevant port extension (WSDL 1.1). For example, in
a SOAP 1.1 port described using WSDL 1.1, the location attribute of
a soap11:address element (if present) would have the same value as
the wsa:Address child element of the wsa:EndpointReference
element.</p>
<div class="div3">
<h4><a name="id2273678" id="id2273678"></a>
4.1.1 WSDL 2.0 Component Model Changes</h4>
<p>Use of WS-Addressing adds the following OPTIONAL properties to
the WSDL 2.0 component model:</p>
<ul>
<li>
<p>A property of the Endpoint component, named {endpoint
reference}. This property is of type wsa:EndpointReference, with a
cardinality of 1. The property has the value of the
wsa:EndpointReference element used as a child of wsdl20:endpoint,
if any. If no such extension exists, this property is absent.</p>
</li>
</ul>
</div>
</div>
<div class="div2">
<h3><a name="destinwsdl" id="destinwsdl"></a> 4.2 Destination</h3>
<p>The value of the [destination] message addressing property for a
message sent to an endpoint typically matches the value of the
{address} property of the endpoint component (WSDL 2.0) or the
address value (if any) provided by the relevant port extension
(WSDL 1.1). For a SOAP 1.1 port described using WSDL 1.1, the value
is provided by the location attribute of the soap11:address
extension element. For an endpoint or port extended with an EPR
(see <a href="diff.html#eprinendpoint"><strong>4.1 Extending WSDL Endpoints
with an EPR</strong></a> ), the value is provided by the [address]
property of the EPR.</p>
<p>Additional runtime information could override the value of the
[destination] message addressing property for messages sent to an
endpoint, e.g. a runtime exchange might result in a redirection to
a different EPR. Note that WS-Addressing does not define any
normative mechanism for such redirection.</p>
</div>
<div class="div2">
<h3><a name="refpinwsdl" id="refpinwsdl"></a> 4.3 Reference
Parameters</h3>
<p>When a wsa:EndpointReference element is present in a
wsdl20:endpoint or a wsdl11:port element (see <a href=
"diff.html#eprinendpoint"><strong>4.1 Extending WSDL Endpoints with an
EPR</strong></a> ), the value of the [reference parameters] message
addressing property for a message sent to an endpoint MUST include
the contents of the wsa:ReferenceParameters element, if one exists
within that EPR.</p>
</div>
<div class="div2">
<h3><a name="actioninwsdl" id="actioninwsdl"></a> 4.4 Action</h3>
<p>WS-Addressing defines two mechanisms to associate a value of the
[action] property with input, output and fault elements within a
WSDL description: explicit and defaulting. Explicit association is
described in section <a href="diff.html#explicitaction"><strong>4.4.1
Explicit Association</strong></a> ; action defaulting (where a
unique value for the [action] property is automatically generated)
is described in section <a href="diff.html#defactionwsdl11"><strong>4.4.4
Default Action Pattern for WSDL 1.1</strong></a> for WSDL 1.1 and
section <a href="diff.html#defactionwsdl20"><strong>4.4.2 Default Action
Pattern for WSDL 2.0</strong></a> for WSDL 2.0.</p>
<p>Ensuring that there is sufficient information within a message
to distinguish which WSDL operation it is associated with is
specified as a best practice in WSDL 2.0 <cite><a href=
"diff.html#WSDL20">WSDL 2.0</a></cite> . The [action] property provides a
mechanism to fulfill that best practice.</p>
<div class="div3">
<h4><a name="explicitaction" id="explicitaction"></a> 4.4.1
Explicit Association</h4>
<p>WS-Addressing defines a global attribute, wsam:Action, that can
be used to explicitly define the value of the [action] property for
messages in a WSDL description. The type of the attribute is
xs:anyURI and it is used as an extension on the WSDL input, output
and fault elements. A SOAP binding can specify SOAPAction values
for the input messages of operations. In the absence of a
wsam:Action attribute on a WSDL input element where a non-empty
SOAPAction value is specified, the value of the [action] property
for the input message is the value of the SOAPAction specified. If
the wsam:Action attribute is absent, and SOAPAction is not
specified, or is empty, then the default pattern is used. Note that
the SOAPAction value is not required to be an absolute IRI, but the
[action] property is required to be an absolute IRI; if
WS-Addressing is required (the wsam:Addressing assertion is
present), wsam:Action is not specified, and the SOAPAction value is
not empty or an absolute IRI, then the document MUST be considered
invalid. Web Services Addressing 1.0 - SOAP Binding[ <cite><a href=
"diff.html#WSADDR-SOAP">WS-Addressing SOAP Binding</a></cite> ] specifies
restrictions on the relationship between the values of [action] and
SOAPAction for SOAP 1.1 and SOAP 1.2.</p>
<p>The inclusion of wsam:Action without the inclusion of the
wsam:Addressing assertion has no normative intent and is only
informational. In other words, the inclusion of wsam:Action
attributes in WSDL alone does not imply a requirement on clients to
use Message Addressing Properties in messages it sends to the
service. A client, however, MAY include Message Addressing
Properties in the messages it sends, either on its own initiative
or as described by other elements of the service contract,
regardless of the presence or absence of the wsam:Addressing
assertion. Other specifications defining the value of [action] are
under no constraint to be consistent with wsam:Action.</p>
<p>For example consider the following WSDL excerpt:</p>
<div class="exampleOuter">
<p style="text-align: left" class="exampleHead"><em><span>Example
4-1.</span> Explicit specification of wsa:Action value in a WSDL
2.0 description.</em></p>
<div class="exampleInner">
<pre xml:space="preserve">
<description targetNamespace="http://greath.example.com/2004/schemas/resSvc" ...>
...
<interface name="reservationInterface">
<operation name="opCheckAvailability" pattern="http://www.w3.org/ns/wsdl/in-out">
<input element="tns:checkAvailability" messageLabel="In"
wsam:Action="http://greath.example.com/2004/wsdl/resSvc/opCheckAvailability"/>
<output element="tns:checkAvailabilityResponse" messageLabel="Out"
wsam:Action="http://greath.example.com/2004/wsdl/resSvc/opCheckAvailabilityResponse"/>
</operation>
</interface>
...
</description>
</pre></div>
</div>
<p>The action for the input of the opCheckAvailability operation
within the reservationInterface is explicitly defined to be
http://greath.example.com/2004/wsdl/resSvc/opCheckAvailability. The
action for the output of this same operation is
http://greath.example.com/2004/wsdl/resSvc/opCheckAvailabilityResponse.</p>
<div class="exampleOuter">
<p style="text-align: left" class="exampleHead"><em><span>Example
4-2.</span> Explicit specification of wsa:Action value in a WSDL
1.1 description.</em></p>
<div class="exampleInner">
<pre xml:space="preserve">
<definitions targetNamespace="http://greath.example.com/2004/schemas/resSvc" ...>
...
<portType name="reservationInterface">
<operation name="opCheckAvailability">
<input message="tns:checkAvailability"
wsam:Action="http://greath.example.com/2004/wsdl/resSvc/opCheckAvailability"/>
<output message="tns:checkAvailabilityResponse"
wsam:Action="http://greath.example.com/2004/wsdl/resSvc/opCheckAvailabilityResponse"/>
</operation>
</portType>
...
</definitions>
</pre></div>
</div>
<p>The action for the input of the opCheckAvailability operation
within the reservationInterface port type is explicitly defined to
be http://greath.example.com/2004/wsdl/resSvc/opCheckAvailability.
The action for the output of this same operation is
http://greath.example.com/2004/wsdl/resSvc/opCheckAvailabilityResponse.</p>
</div>
<div class="div3">
<h4><a name="defactionwsdl20" id="defactionwsdl20"></a> 4.4.2
Default Action Pattern for WSDL 2.0</h4>
<p>In the absence of an explicitly specified value for the [action]
property (see section <a href="diff.html#explicitaction"><strong>4.4.1
Explicit Association</strong></a> ), the following pattern is used
in WSDL 2.0 documents to construct a default action for inputs and
outputs. The general form of an action URI is as follows:</p>
<div class="exampleOuter">
<p style="text-align: left" class="exampleHead"><em><span>Example
4-3.</span> Structure of defaulted wsa:Action IRI in WSDL
2.0.</em></p>
<div class="exampleInner">
<pre xml:space="preserve">
[target namespace][delimiter][interface name][delimiter][operation name][direction token]
</pre></div>
</div>
<p>For fault messages, the general form of an action IRI is as
follows:</p>
<div class="exampleOuter">
<p style="text-align: left" class="exampleHead"><em><span>Example
4-4.</span> Structure of default wsa:Action IRI for faults</em></p>
<div class="exampleInner">
<pre xml:space="preserve">
[target namespace][delimiter][interface name][delimiter][operation name][direction token][delimiter][fault name]
</pre></div>
</div>
<p>Where:</p>
<dl>
<dt class="label">[delimiter]</dt>
<dd>
<p>is ":" when the [target namespace] is a URN, otherwise "/". Note
that for IRI schemes other than URNs which aren't path-based (i.e.
those that outlaw the "/" character), the default action value
might not conform to the rules of the IRI scheme. Authors are
advised to specify explicit values in the WSDL in this case.</p>
</dd>
<dt class="label">[target namespace]</dt>
<dd>
<p>is the {target namespace} of the interface. If [target
namespace] ends with a "/" an additional "/" is not added.</p>
</dd>
<dt class="label">[interface name]</dt>
<dd>
<p>is the {name} of the interface.</p>
</dd>
<dt class="label">[operation name]</dt>
<dd>
<p>is the {name} of the operation.</p>
</dd>
<dt class="label">[fault name]</dt>
<dd>
<p>is the {name} of the fault.</p>
</dd>
<dt class="label">[direction token]</dt>
<dd>
<ul>
<li>
<p>Empty ("") where the operation's {message exchange pattern} is
"http://www.w3.org/ns/wsdl/in-only",
"http://www.w3.org/ns/wsdl/robust-in-only",
"http://www.w3.org/ns/wsdl/out-only", or
"http://www.w3.org/ns/wsdl/robust-out-only".</p>
</li>
<li>
<p>"Request" where the operation's {message exchange pattern} is
"http://www.w3.org/ns/wsdl/in-out" or
"http://www.w3.org/ns/wsdl/in-opt-out" and the message reference's
{message label} = 'In'.</p>
</li>
<li>
<p>"Solicit" where the operation's {message exchange pattern} is
"http://www.w3.org/ns/wsdl/out-in" or
"http://www.w3.org/ns/wsdl/out-opt-in" and the message reference's
{message label} = 'Out'.</p>
</li>
<li>
<p>"Response" where the operation's {message exchange pattern} is
"http://www.w3.org/ns/wsdl/in-out" or
"http://www.w3.org/ns/wsdl/in-opt-out" and the message reference's
{message label} = 'Out'.</p>
</li>
<li>
<p>"Response" where the operation's {message exchange pattern} is
"http://www.w3.org/ns/wsdl/out-in", or
"http://www.w3.org/ns/wsdl/out-opt-in" and the message reference's
{message label} = 'In'.</p>
</li>
<li>
<p>{message label} where the {message exchange pattern} is not one
of the MEP IRIs defined in WSDL 2.0 Part 2.</p>
</li>
</ul>
</dd>
</dl>
<p>For example consider the following WSDL excerpt:</p>
<div class="exampleOuter">
<p style="text-align: left" class="exampleHead"><em><span>Example
4-5.</span> Example WSDL without explicit wsa:Action
values.</em></p>
<div class="exampleInner">
<pre xml:space="preserve">
<description targetNamespace="http://greath.example.com/2004/wsdl/resSvc" ...>
...
<interface name="reservationInterface">
<operation name="opCheckAvailability" pattern="http://www.w3.org/ns/wsdl/in-out">
<input element="tns:checkAvailability" messageLabel="In"/>
<output element="tns:checkAvailabilityResponse" messageLabel="Out"/>
</operation>
</interface>
...
</definitions>
</pre></div>
<p>[targetNamespace] =
http://greath.example.com/2004/wsdl/resSvc</p>
<p>[interface name] = reservationInterface</p>
<p>[operation name] = opCheckAvailability</p>
<p>[direction token] for input is Request</p>
<p>[direction token] for output is Response</p>
<p>Applying the patterns above with these values we have:</p>
<p>input action =
http://greath.example.com/2004/wsdl/resSvc/reservationInterface/opCheckAvailabilityRequest</p>
<p>output action =
http://greath.example.com/2004/wsdl/resSvc/reservationInterface/opCheckAvailabilityResponse</p>
<p>fault action for a fault named AvailabilityNotAvailableFault =
http://greath.example.com/2004/wsdl/resSvc/reservationInterface/opCheckAvailabilityResponse/AvailabilityNotAvailableFault</p>
</div>
</div>
<div class="div3">
<h4><a name="id2274552" id="id2274552"></a>
4.4.3 WSDL 2.0 Component Model Changes</h4>
<p>Use of WS-Addressing adds the following REQUIRED properties to
the WSDL 2.0 component model:</p>
<ul>
<li>
<p>A property of the Interface Message Reference and Interface
Operation InFault/OutFault components named {action}. The property
is of type xs:anyURI. The property value is either explicitly
specified, as described in section <a href=
"diff.html#explicitaction"><strong>4.4.1 Explicit Association</strong></a> ,
or the default value computed following the rules from section
<a href="diff.html#defactionwsdl20"><strong>4.4.2 Default Action Pattern for
WSDL 2.0</strong></a> .</p>
</li>
</ul>
</div>
<div class="div3">
<h4><a name="defactionwsdl11" id="defactionwsdl11"></a> 4.4.4
Default Action Pattern for WSDL 1.1</h4>
<p>A default pattern is also defined for backwards compatibility
with WSDL 1.1. In the absence of an explicitly specified value for
the [action] property (see section <a href=
"diff.html#explicitaction"><strong>4.4.1 Explicit Association</strong></a>
), the following pattern is used to construct a default action for
inputs and outputs. The general form of an action IRI is as
follows:</p>
<div class="exampleOuter">
<p style="text-align: left" class="exampleHead"><em><span>Example
4-6.</span> Structure of defaulted wsa:Action IRI.</em></p>
<div class="exampleInner">
<pre xml:space="preserve">
[target namespace][delimiter][port type name][delimiter][input|output name]
</pre></div>
</div>
<p>For fault messages, the general form of an action IRI is as
follows:</p>
<div class="exampleOuter">
<p style="text-align: left" class="exampleHead"><em><span>Example
4-7.</span> Structure of default wsa:Action IRI for faults</em></p>
<div class="exampleInner">
<pre xml:space="preserve">
[target namespace][delimiter][port type name][delimiter][operation name][delimiter]Fault[delimiter][fault name]
</pre></div>
</div>
<p>Where:</p>
<dl>
<dt class="label">[delimiter]</dt>
<dd>
<p>is ":" when the [target namespace] is a URN, otherwise "/". Note
that for IRI schemes other than URNs which aren't path-based (i.e.
those that outlaw the "/" character), the default action value
might not conform to the rules of the IRI scheme. Authors are
advised to specify explicit values in the WSDL in this case.</p>
</dd>
<dt class="label">"Fault"</dt>
<dd>
<p>is a literal character string to be included in the action.</p>
</dd>
<dt class="label">[target namespace]</dt>
<dd>
<p>is the target namespace (/definition/@targetNamespace). If
[target namespace] ends with a "/" an additional "/" is not
added.</p>
</dd>
<dt class="label">[port type name]</dt>
<dd>
<p>is the name of the port type (/definition/portType/@name).</p>
</dd>
<dt class="label">[operation name]</dt>
<dd>
<p>is the {name} of the operation.</p>
</dd>
<dt class="label">[input|output name]</dt>
<dd>
<p>is the name of the element as defined in <a href=
"http://www.w3.org/TR/wsdl#_names">Section 2.4.5</a> of WSDL
1.1.</p>
</dd>
<dt class="label">[fault name]</dt>
<dd>
<p>is the name of the fault
(/definition/porttype/operation/fault/@name).</p>
</dd>
</dl>
<p>For example consider the following WSDL excerpt:</p>
<div class="exampleOuter">
<p style="text-align: left" class="exampleHead"><em><span>Example
4-8.</span> Example WSDL without explicit wsa:Action values with
explicit message names.</em></p>
<div class="exampleInner">
<pre xml:space="preserve">
<definitions targetNamespace="http://greath.example.com/2004/wsdl/resSvc" ...>
...
<portType name="reservationInterface">
<operation name="opCheckAvailability">
<input message="tns:checkAvailability" name="CheckAvailability"/>
<output message="tns:checkAvailabilityResponse" name="Availability"/>
<fault message="tns:InvalidDate" name="InvalidDate"/>
</operation>
</portType>
...
</definitions>
</pre></div>
<p>[targetNamespace] =
http://greath.example.com/2004/wsdl/resSvc</p>
<p>[port type name] = reservationInterface</p>
<p>[input name] = CheckAvailability</p>
<p>[output name] = CheckAvailabilityResponse</p>
<p>[fault name] = InvalidDate</p>
<p>Applying the pattern above with these values we have:</p>
<p>input action =
http://greath.example.com/2004/wsdl/resSvc/reservationInterface/CheckAvailability</p>
<p>output action =
http://greath.example.com/2004/wsdl/resSvc/reservationInterface/Availability</p>
<p>fault action =
http://greath.example.com/2004/wsdl/resSvc/reservationInterface/opCheckAvailability/Fault/InvalidDate</p>
</div>
<p>WSDL defines rules for a default input or output name if the
name attribute is not present. Consider the following example:</p>
<div class="exampleOuter">
<p style="text-align: left" class="exampleHead"><em><span>Example
4-9.</span> Example WSDL without explicit wsa:Action values or
explicit message names.</em></p>
<div class="exampleInner">
<pre xml:space="preserve">
<definitions targetNamespace="http://greath.example.com/2004/wsdl/resSvc" ...>
...
<portType name="reservationInterface">
<operation name="opCheckAvailability">
<input message="tns:checkAvailability"/>
<output message="tns:checkAvailabilityResponse"/>
</operation>
</portType>
...
</definitions>
</pre></div>
<p>[targetNamespace] =
http://greath.example.com/2004/wsdl/resSvc</p>
<p>[port type name] = reservationInterface</p>
<p>According to the rules defined in <a href=
"http://www.w3.org/TR/wsdl#_names">Section 2.4.5</a> of WSDL 1.1,
if the name attribute is absent for the input of a request response
operation the default value is the name of the operation with
"Request" appended.</p>
<p>[input name] = opCheckAvailabilityRequest</p>
<p>Likewise, the output defaults to the operation name with
"Response" appended.</p>
<p>[output name] = opCheckAvailabilityResponse</p>
<p>Applying the pattern above with these values we have:</p>
<p>input action =
http://greath.example.com/2004/wsdl/resSvc/reservationInterface/opCheckAvailabilityRequest</p>
<p>output action =
http://greath.example.com/2004/wsdl/resSvc/reservationInterface/opCheckAvailabilityResponse</p>
</div>
</div>
</div>
</div>
<div class="div1">
<h2><a name="WSDLMEPS" id="WSDLMEPS"></a> 5. WS-Addressing and WSDL
Message Exchange Patterns</h2>
<p>This section describes which of the core message properties are
mandatory for messages in the various MEPs defined by WSDL.</p>
<div class="div2">
<h3><a name="WSDL11MEPS" id="WSDL11MEPS"></a> 5.1 WSDL 1.1 Message
Exchange Patterns</h3>
<p>For backwards compatibility, this section describes which of the
core message properties are mandatory for messages in the various
MEPs defined by WSDL 1.1.</p>
<div class="div3">
<h4><a name="wsdl11oneway" id="wsdl11oneway"></a> 5.1.1
One-way</h4>
<p>This is a straightforward one-way message. No responses are
expected but related messages could be sent as part of other
message exchanges.</p>
<table border="1">
<caption>Table 5-1. Message addressing properties for one way
message.</caption>
<tbody>
<tr>
<th align="left" rowspan="1" colspan="1">Property</th>
<th align="center" rowspan="1" colspan="1">Mandatory</th>
<th align="left" rowspan="1" colspan="1">Description</th>
</tr>
<tr>
<td rowspan="1" colspan="1">[destination]</td>
<td align="center" rowspan="1" colspan="1">Y</td>
<td rowspan="1" colspan="1">Provides the address of the intended
receiver of this message</td>
</tr>
<tr>
<td rowspan="1" colspan="1">[action]</td>
<td align="center" rowspan="1" colspan="1">Y</td>
<td rowspan="1" colspan="1">Identifies the semantics implied by
this message</td>
</tr>
<tr>
<td rowspan="1" colspan="1">[source endpoint]</td>
<td align="center" rowspan="1" colspan="1">N</td>
<td rowspan="1" colspan="1">Message origin. Unused in this MEP, but
could be included to facilitate longer running message
exchanges.</td>
</tr>
<tr>
<td rowspan="1" colspan="1">[reply endpoint]</td>
<td align="center" rowspan="1" colspan="1">N</td>
<td rowspan="1" colspan="1">Intended receiver for replies to this
message. Unused in this MEP, but could be included to facilitate
longer running message exchanges.</td>
</tr>
<tr>
<td rowspan="1" colspan="1">[fault endpoint]</td>
<td align="center" rowspan="1" colspan="1">N</td>
<td rowspan="1" colspan="1">Intended receiver for faults related to
this message. Unused in this MEP, but could be included to
facilitate longer running message exchanges.</td>
</tr>
<tr>
<td rowspan="1" colspan="1">[message id]</td>
<td align="center" rowspan="1" colspan="1">N</td>
<td rowspan="1" colspan="1">Unique identifier for this message.
Unused in this MEP, but may be included to facilitate longer
running message exchanges.</td>
</tr>
<tr>
<td rowspan="1" colspan="1">[relationship]</td>
<td align="center" rowspan="1" colspan="1">N</td>
<td rowspan="1" colspan="1">Indicates relationship to a prior
message. Unused in this MEP, but could be included to facilitate
longer running message exchanges.</td>
</tr>
</tbody>
</table>
<br /></div>
<div class="div3">
<h4><a name="wsdl11requestresponse" id="wsdl11requestresponse"></a>
5.1.2 Request-Response</h4>
<p>This is request-response. A reply is expected hence mandating
[reply endpoint] in the request message. The response message might
be a fault.</p>
<table border="1">
<caption>Table 5-2. Message addressing properties for request
message.</caption>
<tbody>
<tr>
<th align="left" rowspan="1" colspan="1">Property</th>
<th align="center" rowspan="1" colspan="1">Mandatory</th>
<th align="left" rowspan="1" colspan="1">Description</th>
</tr>
<tr>
<td rowspan="1" colspan="1">[destination]</td>
<td align="center" rowspan="1" colspan="1">Y</td>
<td rowspan="1" colspan="1">Provides the address of the intended
receiver of this message</td>
</tr>
<tr>
<td rowspan="1" colspan="1">[action]</td>
<td align="center" rowspan="1" colspan="1">Y</td>
<td rowspan="1" colspan="1">Identifies the semantics implied by
this message</td>
</tr>
<tr>
<td rowspan="1" colspan="1">[source endpoint]</td>
<td align="center" rowspan="1" colspan="1">N</td>
<td rowspan="1" colspan="1">Message origin. Unused in this MEP, but
could be included to facilitate longer running message
exchanges.</td>
</tr>
<tr>
<td rowspan="1" colspan="1">[reply endpoint]</td>
<td align="center" rowspan="1" colspan="1">Y</td>
<td rowspan="1" colspan="1">Intended receiver for the reply to this
message.</td>
</tr>
<tr>
<td rowspan="1" colspan="1">[fault endpoint]</td>
<td align="center" rowspan="1" colspan="1">N</td>
<td rowspan="1" colspan="1">Intended receiver for faults related to
this message. May be included to direct fault messages to a
different endpoint than [reply endpoint].</td>
</tr>
<tr>
<td rowspan="1" colspan="1">[message id]</td>
<td align="center" rowspan="1" colspan="1">Y</td>
<td rowspan="1" colspan="1">Unique identifier for this message.
Used in the [relationship] property of the reply message.</td>
</tr>
<tr>
<td rowspan="1" colspan="1">[relationship]</td>
<td align="center" rowspan="1" colspan="1">N</td>
<td rowspan="1" colspan="1">Indicates relationship to a prior
message. Unused in this MEP, but could be included to facilitate
longer running message exchanges.</td>
</tr>
</tbody>
</table>
<br />
<table border="1">
<caption>Table 5-3. Message addressing properties for response
message.</caption>
<tbody>
<tr>
<th align="left" rowspan="1" colspan="1">Property</th>
<th align="center" rowspan="1" colspan="1">Mandatory</th>
<th align="left" rowspan="1" colspan="1">Description</th>
</tr>
<tr>
<td rowspan="1" colspan="1">[destination]</td>
<td align="center" rowspan="1" colspan="1">Y</td>
<td rowspan="1" colspan="1">Provides the address of the intended
receiver of this message</td>
</tr>
<tr>
<td rowspan="1" colspan="1">[action]</td>
<td align="center" rowspan="1" colspan="1">Y</td>
<td rowspan="1" colspan="1">Identifies the semantics implied by
this message</td>
</tr>
<tr>
<td rowspan="1" colspan="1">[source endpoint]</td>
<td align="center" rowspan="1" colspan="1">N</td>
<td rowspan="1" colspan="1">Message origin. Unused in this MEP, but
could be included to facilitate longer running message
exchanges.</td>
</tr>
<tr>
<td rowspan="1" colspan="1">[reply endpoint]</td>
<td align="center" rowspan="1" colspan="1">N</td>
<td rowspan="1" colspan="1">Intended receiver for replies to this
message. Unused in this MEP, but could be included to facilitate
longer running message exchanges.</td>
</tr>
<tr>
<td rowspan="1" colspan="1">[fault endpoint]</td>
<td align="center" rowspan="1" colspan="1">N</td>
<td rowspan="1" colspan="1">Intended receiver for faults related to
this message. Unused in this MEP, but could be included to
facilitate longer running message exchanges.</td>
</tr>
<tr>
<td rowspan="1" colspan="1">[message id]</td>
<td align="center" rowspan="1" colspan="1">N</td>
<td rowspan="1" colspan="1">Unique identifier for this message.
Unused in this MEP, but may be included to facilitate longer
running message exchanges.</td>
</tr>
<tr>
<td rowspan="1" colspan="1">[relationship]</td>
<td align="center" rowspan="1" colspan="1">Y</td>
<td rowspan="1" colspan="1">Indicates that this message is a reply
to the request message using the request message [message id] value
and the predefined
<code>http://www.w3.org/2005/08/addressing/reply</code> IRI.</td>
</tr>
</tbody>
</table>
<br /></div>
<div class="div3">
<h4><a name="wsdl11notification" id="wsdl11notification"></a> 5.1.3
Notification</h4>
<p>From the WS-Addressing perspective this MEP is the same as
One-way. The properties defined in <a href=
"diff.html#wsdl11oneway"><strong>5.1.1 One-way</strong></a> apply to this
MEP also.</p>
</div>
<div class="div3">
<h4><a name="wsdl11solicitresponse" id="wsdl11solicitresponse"></a>
5.1.4 Solicit-response</h4>
<p>From the WS-Addressing perspective this MEP is the same as
Request-response. The properties defined in <a href=
"diff.html#wsdl11requestresponse"><strong>5.1.2
Request-Response</strong></a> apply to this MEP also.</p>
</div>
</div>
<div class="div2">
<h3><a name="WSDL20MEPS" id="WSDL20MEPS"></a> 5.2 WSDL 2.0 Message
Exchange Patterns</h3>
<p>This section describes which of the core message properties are
mandatory for messages in the various MEPs defined by WSDL 2.0 [
<cite><a href="diff.html#WSDL20Adj">WSDL 2.0 Adjuncts</a></cite> ].</p>
<div class="div3">
<h4><a name="wsdl20inonly" id="wsdl20inonly"></a> 5.2.1
In-only</h4>
<p>This is a straightforward one-way message. No responses are
expected but related messages could be sent as part of other
message exchanges.</p>
<table border="1">
<caption>Table 5-4. Message addressing properties for in
message.</caption>
<tbody>
<tr>
<th align="left" rowspan="1" colspan="1">Property</th>
<th align="center" rowspan="1" colspan="1">Mandatory</th>
<th align="left" rowspan="1" colspan="1">Description</th>
</tr>
<tr>
<td rowspan="1" colspan="1">[destination]</td>
<td align="center" rowspan="1" colspan="1">Y</td>
<td rowspan="1" colspan="1">Provides the address of the intended
receiver of this message</td>
</tr>
<tr>
<td rowspan="1" colspan="1">[action]</td>
<td align="center" rowspan="1" colspan="1">Y</td>
<td rowspan="1" colspan="1">Identifies the semantics implied by
this message</td>
</tr>
<tr>
<td rowspan="1" colspan="1">[source endpoint]</td>
<td align="center" rowspan="1" colspan="1">N</td>
<td rowspan="1" colspan="1">Message origin. Unused in this MEP, but
could be included to facilitate longer running message
exchanges.</td>
</tr>
<tr>
<td rowspan="1" colspan="1">[reply endpoint]</td>
<td align="center" rowspan="1" colspan="1">N</td>
<td rowspan="1" colspan="1">Intended receiver for replies to this
message. Unused in this MEP, but could be included to facilitate
longer running message exchanges.</td>
</tr>
<tr>
<td rowspan="1" colspan="1">[fault endpoint]</td>
<td align="center" rowspan="1" colspan="1">N</td>
<td rowspan="1" colspan="1">Intended receiver for faults related to
this message. Unused in this MEP, but could be included to
facilitate longer running message exchanges.</td>
</tr>
<tr>
<td rowspan="1" colspan="1">[message id]</td>
<td align="center" rowspan="1" colspan="1">N</td>
<td rowspan="1" colspan="1">Unique identifier for this message.
Unused in this MEP, but may be included to facilitate longer
running message exchanges.</td>
</tr>
<tr>
<td rowspan="1" colspan="1">[relationship]</td>
<td align="center" rowspan="1" colspan="1">N</td>
<td rowspan="1" colspan="1">Indicates relationship to a prior
message. Unused in this MEP, but could be included to facilitate
longer running message exchanges.</td>
</tr>
</tbody>
</table>
<br /></div>
<div class="div3">
<h4><a name="wsdl20robustinonly" id="wsdl20robustinonly"></a> 5.2.2
Robust In-only</h4>
<p>This one-way MEP allows fault messages. The [message id]
property is needed in the initial message in order to be able to
correlate any fault with that message.</p>
<table border="1">
<caption>Table 5-5. Message addressing properties for in
message.</caption>
<tbody>
<tr>
<th align="left" rowspan="1" colspan="1">Property</th>
<th align="center" rowspan="1" colspan="1">Mandatory</th>
<th align="left" rowspan="1" colspan="1">Description</th>
</tr>
<tr>
<td rowspan="1" colspan="1">[destination]</td>
<td align="center" rowspan="1" colspan="1">Y</td>
<td rowspan="1" colspan="1">Provides the address of the intended
receiver of this message</td>
</tr>
<tr>
<td rowspan="1" colspan="1">[action]</td>
<td align="center" rowspan="1" colspan="1">Y</td>
<td rowspan="1" colspan="1">Identifies the semantics implied by
this message</td>
</tr>
<tr>
<td rowspan="1" colspan="1">[source endpoint]</td>
<td align="center" rowspan="1" colspan="1">N</td>
<td rowspan="1" colspan="1">Message origin. Unused in this MEP, but
could be included to facilitate longer running message
exchanges.</td>
</tr>
<tr>
<td rowspan="1" colspan="1">[reply endpoint]</td>
<td align="center" rowspan="1" colspan="1">N*</td>
<td rowspan="1" colspan="1">Intended receiver for replies to this
message. Unused in this MEP, but could be included to facilitate
longer running message exchanges.</td>
</tr>
<tr>
<td rowspan="1" colspan="1">[fault endpoint]</td>
<td align="center" rowspan="1" colspan="1">N*</td>
<td rowspan="1" colspan="1">Intended receiver for faults related to
this message.</td>
</tr>
<tr>
<td rowspan="1" colspan="1">[message id]</td>
<td align="center" rowspan="1" colspan="1">Y</td>
<td rowspan="1" colspan="1">Unique identifier for this message.
Used in the [relationship] property of any resulting fault
message.</td>
</tr>
<tr>
<td rowspan="1" colspan="1">[relationship]</td>
<td align="center" rowspan="1" colspan="1">N</td>
<td rowspan="1" colspan="1">Indicates relationship to a prior
message. Unused in this MEP, but could be included to facilitate
longer running message exchanges.</td>
</tr>
</tbody>
</table>
<br />
<p>* Note that at least one of [fault endpoint] or [reply endpoint]
is required for this MEP, so that a fault can be sent if
necessary.</p>
<table border="1">
<caption>Table 5-6. Message addressing properties for fault
message.</caption>
<tbody>
<tr>
<th align="left" rowspan="1" colspan="1">Property</th>
<th align="center" rowspan="1" colspan="1">Mandatory</th>
<th align="left" rowspan="1" colspan="1">Description</th>
</tr>
<tr>
<td rowspan="1" colspan="1">[destination]</td>
<td align="center" rowspan="1" colspan="1">Y</td>
<td rowspan="1" colspan="1">Provides the address of the intended
receiver of this message</td>
</tr>
<tr>
<td rowspan="1" colspan="1">[action]</td>
<td align="center" rowspan="1" colspan="1">Y</td>
<td rowspan="1" colspan="1">Identifies the semantics implied by
this message</td>
</tr>
<tr>
<td rowspan="1" colspan="1">[source endpoint]</td>
<td align="center" rowspan="1" colspan="1">N</td>
<td rowspan="1" colspan="1">Message origin. Unused in this MEP, but
could be included to facilitate longer running message
exchanges.</td>
</tr>
<tr>
<td rowspan="1" colspan="1">[reply endpoint]</td>
<td align="center" rowspan="1" colspan="1">N</td>
<td rowspan="1" colspan="1">Intended receiver for replies to this
message. Unused in this MEP, but could be included to facilitate
longer running message exchanges.</td>
</tr>
<tr>
<td rowspan="1" colspan="1">[fault endpoint]</td>
<td align="center" rowspan="1" colspan="1">N</td>
<td rowspan="1" colspan="1">Intended receiver for faults related to
this message. Unused in this MEP, but could be included to
facilitate longer running message exchanges.</td>
</tr>
<tr>
<td rowspan="1" colspan="1">[message id]</td>
<td align="center" rowspan="1" colspan="1">N</td>
<td rowspan="1" colspan="1">Unique identifier for this message.
Unused in this MEP, but may be included to facilitate longer
running message exchanges.</td>
</tr>
<tr>
<td rowspan="1" colspan="1">[relationship]</td>
<td align="center" rowspan="1" colspan="1">Y</td>
<td rowspan="1" colspan="1">Indicates that this message is a
response to the in message using the in message [message id] value
and the predefined
<code>http://www.w3.org/2005/08/addressing/reply</code> IRI.</td>
</tr>
</tbody>
</table>
<br /></div>
<div class="div3">
<h4><a name="wsdl20inout" id="wsdl20inout"></a> 5.2.3 In-out</h4>
<p>This is a two-way MEP. A reply is expected hence mandating
[reply endpoint] in the request message. The response message might
be a fault.</p>
<table border="1">
<caption>Table 5-7. Message addressing properties for in
message.</caption>
<tbody>
<tr>
<th align="left" rowspan="1" colspan="1">Property</th>
<th align="center" rowspan="1" colspan="1">Mandatory</th>
<th align="left" rowspan="1" colspan="1">Description</th>
</tr>
<tr>
<td rowspan="1" colspan="1">[destination]</td>
<td align="center" rowspan="1" colspan="1">Y</td>
<td rowspan="1" colspan="1">Provides the address of the intended
receiver of this message</td>
</tr>
<tr>
<td rowspan="1" colspan="1">[action]</td>
<td align="center" rowspan="1" colspan="1">Y</td>
<td rowspan="1" colspan="1">Identifies the semantics implied by
this message</td>
</tr>
<tr>
<td rowspan="1" colspan="1">[source endpoint]</td>
<td align="center" rowspan="1" colspan="1">N</td>
<td rowspan="1" colspan="1">Message origin. Unused in this MEP, but
could be included to facilitate longer running message
exchanges.</td>
</tr>
<tr>
<td rowspan="1" colspan="1">[reply endpoint]</td>
<td align="center" rowspan="1" colspan="1">Y</td>
<td rowspan="1" colspan="1">Intended receiver for the reply to this
message.</td>
</tr>
<tr>
<td rowspan="1" colspan="1">[fault endpoint]</td>
<td align="center" rowspan="1" colspan="1">N</td>
<td rowspan="1" colspan="1">Intended receiver for faults related to
this message. May be included to direct fault messages to a
different endpoint than [reply endpoint].</td>
</tr>
<tr>
<td rowspan="1" colspan="1">[message id]</td>
<td align="center" rowspan="1" colspan="1">Y</td>
<td rowspan="1" colspan="1">Unique identifier for this message.
Used in the [relationship] property of the out message.</td>
</tr>
<tr>
<td rowspan="1" colspan="1">[relationship]</td>
<td align="center" rowspan="1" colspan="1">N</td>
<td rowspan="1" colspan="1">Indicates relationship to a prior
message. Unused in this MEP, but could be included to facilitate
longer running message exchanges.</td>
</tr>
</tbody>
</table>
<br />
<table border="1">
<caption>Table 5-8. Message addressing properties for out
message.</caption>
<tbody>
<tr>
<th align="left" rowspan="1" colspan="1">Property</th>
<th align="center" rowspan="1" colspan="1">Mandatory</th>
<th align="left" rowspan="1" colspan="1">Description</th>
</tr>
<tr>
<td rowspan="1" colspan="1">[destination]</td>
<td align="center" rowspan="1" colspan="1">Y</td>
<td rowspan="1" colspan="1">Provides the address of the intended
receiver of this message</td>
</tr>
<tr>
<td rowspan="1" colspan="1">[action]</td>
<td align="center" rowspan="1" colspan="1">Y</td>
<td rowspan="1" colspan="1">Identifies the semantics implied by
this message</td>
</tr>
<tr>
<td rowspan="1" colspan="1">[source endpoint]</td>
<td align="center" rowspan="1" colspan="1">N</td>
<td rowspan="1" colspan="1">Message origin. Unused in this MEP, but
could be included to facilitate longer running message
exchanges.</td>
</tr>
<tr>
<td rowspan="1" colspan="1">[reply endpoint]</td>
<td align="center" rowspan="1" colspan="1">N</td>
<td rowspan="1" colspan="1">Intended receiver for replies to this
message. Unused in this MEP, but could be included to facilitate
longer running message exchanges.</td>
</tr>
<tr>
<td rowspan="1" colspan="1">[fault endpoint]</td>
<td align="center" rowspan="1" colspan="1">N</td>
<td rowspan="1" colspan="1">Intended receiver for faults related to
this message. Unused in this MEP, but could be included to
facilitate longer running message exchanges.</td>
</tr>
<tr>
<td rowspan="1" colspan="1">[message id]</td>
<td align="center" rowspan="1" colspan="1">N</td>
<td rowspan="1" colspan="1">Unique identifier for this message.
Unused in this MEP, but may be included to facilitate longer
running message exchanges.</td>
</tr>
<tr>
<td rowspan="1" colspan="1">[relationship]</td>
<td align="center" rowspan="1" colspan="1">Y</td>
<td rowspan="1" colspan="1">Indicates that this message is a
response to the in message using the in message [message id] value
and the predefined
<code>http://www.w3.org/2005/08/addressing/reply</code> IRI.</td>
</tr>
</tbody>
</table>
<br /></div>
<div class="div3">
<h4><a name="wsdl20inoptionalout" id="wsdl20inoptionalout"></a>
5.2.4 In-optional-out</h4>
<p>This MEP differs from the In-out MEP in that the subsequent
message is optional. This difference doesn't affect the message
properties so the properties defined in <a href=
"diff.html#wsdl20inout"><strong>5.2.3 In-out</strong></a> apply to this MEP
also</p>
</div>
<div class="div3">
<h4><a name="wsdl20outonly" id="wsdl20outonly"></a> 5.2.5
Out-only</h4>
<p>From the WS-Addressing perspective this MEP is the same as
In-only. The properties defined in <a href=
"diff.html#wsdl20inonly"><strong>5.2.1 In-only</strong></a> apply to this
MEP also.</p>
</div>
<div class="div3">
<h4><a name="wsdl20robustoutonly" id="wsdl20robustoutonly"></a>
5.2.6 Robust Out-only</h4>
<p>From the WS-Addressing perspective this MEP is the same as
Robust In-only. The properties defined in <a href=
"diff.html#wsdl20robustinonly"><strong>5.2.2 Robust In-only</strong></a>
apply to this MEP also.</p>
</div>
<div class="div3">
<h4><a name="wsdl20outin" id="wsdl20outin"></a> 5.2.7 Out-in</h4>
<p>From the WS-Addressing perspective this MEP is the same as
In-out. The properties defined in <a href=
"diff.html#wsdl20inout"><strong>5.2.3 In-out</strong></a> apply to this MEP
also.</p>
</div>
<div class="div3">
<h4><a name="wsdl20outoptionalin" id="wsdl20outoptionalin"></a>
5.2.8 Out-optional-in</h4>
<p>This MEP differs from the Out-in MEP in that the subsequent
message is optional. This difference doesn't affect the message
properties so the properties defined in <a href=
"diff.html#wsdl20inout"><strong>5.2.3 In-out</strong></a> apply to this MEP
also</p>
</div>
</div>
</div>
<div class="div1">
<h2><a name="conformance" id="conformance"></a> 6. Conformance</h2>
<p>An endpoint reference whose wsa:Metadata element has among its
children the elements defined in <a href=
"diff.html#refmetadatfromepr"><strong>2.1 Referencing WSDL Metadata from an
EPR</strong></a> conforms to this specification if it obeys the
structural constraints defined in that section.</p>
<p>A WSDL description conforms to this specification when it
incorporates directly or indirectly the <a href=
"diff.html#wspolicyassertions"><strong>3.1 WS-Policy Assertions</strong></a>
marker, and obeys the structural constraints defined in section
<a href="diff.html#indicatinguse"><strong>3. Indicating Use of
WS-Addressing</strong></a> appropriate to that marker, and those
defined in section <a href="diff.html#actioninwsdl"><strong>4.4
Action</strong></a> .</p>
<p>An endpoint conforms to this specification if it has a
conformant WSDL description associated with it, and receives and
emits messages in accordance with the constraints defined in
sections <a href="diff.html#mapvaluesinwsdl"><strong>4. Specifying Message
Addressing Properties in WSDL</strong></a> and <a href=
"diff.html#WSDLMEPS"><strong>5. WS-Addressing and WSDL Message Exchange
Patterns</strong></a> .</p>
</div>
<div class="div1">
<h2><a name="references" id="references"></a> 7. References</h2>
<div class="div2">
<h3><a name="id2278438" id="id2278438"></a>
7.1 Normative</h3>
<dl>
<dt class="label"><a name="RFC2119" id="RFC2119"></a> [IETF RFC
2119]</dt>
<dd><cite><a href="http://www.ietf.org/rfc/rfc2119.txt">Key words
for use in RFCs to Indicate Requirement Levels</a></cite> , S.
Bradner, Author. Internet Engineering Task Force, March 1997.
Available at http://www.ietf.org/rfc/rfc2119.txt</dd>
<dt class="label"><a name="RFC3987" id="RFC3987"></a> [IETF RFC
3987]</dt>
<dd>M. Duerst, M. Suignard, "Internationalized Resource Identifiers
(IRIs)", January 2005. (See <cite><a href=
"http://www.ietf.org/rfc/rfc3987.txt">http://www.ietf.org/rfc/rfc3987.txt</a></cite>
.)</dd>
<dt class="label"><a name="SOAP11" id="SOAP11"></a> [SOAP 1.1]</dt>
<dd><cite><a href=
"http://www.w3.org/TR/2000/NOTE-SOAP-20000508/">Simple Object
Access Protocol (SOAP) 1.1</a></cite> , D. Box, D. Ehnebuske, G.
Kakivaya, A. Layman, N. Mendelsohn, H Frystyk Nielsen, S. Thatte,
D. Winer, Editors. W3C Member Submission, 8 May 2000.</dd>
<dt class="label"><a name="SOAP12-PART1" id="SOAP12-PART1"></a>
[SOAP 1.2]</dt>
<dd><cite><a href=
"../REC-soap12-part1-20070427/index.html">SOAP Version
1.2 Part 1: Messaging Framework (Second Edition)</a></cite> , M.
Gudgin, et al., Editors. World Wide Web Consortium, 24 June 2003,
revised 27 April 2007. This version of the "SOAP Version 1.2 Part
1: Messaging Framework" Recommendation is
http://www.w3.org/TR/2007/REC-soap12-part1-20070427/. The <a href=
"http://www.w3.org/TR/soap12-part1/">latest version of "SOAP
Version 1.2 Part 1: Messaging Framework"</a> is available at
http://www.w3.org/TR/soap12-part1/.</dd>
<dt class="label"><a name="WSADDR-CORE" id="WSADDR-CORE"></a>
[WS-Addressing Core]</dt>
<dd><cite><a href=
"http://www.w3.org/TR/2006/REC-ws-addr-core-20060509">Web Services
Addressing 1.0 - Core</a></cite> , M. Gudgin, M. Hadley, and T.
Rogers, Editors. World Wide Web Consortium, 9 May 2006. This
version of the WS-Addressing Core Recommendation is
http://www.w3.org/TR/2006/REC-ws-addr-core-20060509. The <a href=
"http://www.w3.org/TR/ws-addr-core">latest version of WS-Addressing
Core</a> is available at http://www.w3.org/TR/ws-addr-core.</dd>
<dt class="label"><a name="WSADDR-SOAP" id="WSADDR-SOAP"></a>
[WS-Addressing SOAP Binding]</dt>
<dd><cite><a href=
"http://www.w3.org/TR/2006/REC-ws-addr-soap-20060509">Web Services
Addressing 1.0 - SOAP Binding</a></cite> , M. Gudgin, M. Hadley,
and T. Rogers, Editors. World Wide Web Consortium, 9 May 2006. This
version of the WS-Addressing Core Recommendation is
http://www.w3.org/TR/2006/REC-ws-addr-soap-20060509. The <a href=
"http://www.w3.org/TR/ws-addr-soap">latest version of WS-Addressing
SOAP Binding</a> is available at
http://www.w3.org/TR/ws-addr-soap.</dd>
<dt class="label"><a name="WSDL11" id="WSDL11"></a> [WSDL 1.1]</dt>
<dd>E. Christensen, et al, <cite><a href=
"http://www.w3.org/TR/2001/NOTE-wsdl-20010315">Web Services
Description Language (WSDL) 1.1</a></cite> , March 2001.</dd>
<dt class="label"><a name="WSDL20" id="WSDL20"></a> [WSDL 2.0]</dt>
<dd><cite><a href=
"http://www.w3.org/TR/2007/REC-wsdl20-20070626">Web Services
Description Language (WSDL) Version 2.0 Part 1: Core
Language</a></cite> , R. Chinnici, J-J. Moreau, A. Ryman, S.
Weerawarana, Editors. World Wide Web Consortium, 26 June 2007. This
version of the "Web Services Description Language (WSDL) Version
2.0 Part 1: Core Language" Recommendation is available is available
at http://www.w3.org/TR/2007/REC-wsdl20-20070626. The <a href=
"http://www.w3.org/TR/wsdl20">latest version of "Web Services
Description Language (WSDL) Version 2.0 Part 1: Core Language"</a>
is available at http://www.w3.org/TR/wsdl20.</dd>
<dt class="label"><a name="WSDL20Adj" id="WSDL20Adj"></a> [WSDL 2.0
Adjuncts]</dt>
<dd><cite><a href=
"http://www.w3.org/TR/2007/REC-wsdl20-adjuncts-20070626">Web
Services Description Language (WSDL) Version 2.0 Part 2:
Adjuncts</a></cite> , R. Chinnici, H. Haas, A. Lewis, J-J. Moreau,
D. Orchard, S. Weerawarana, Editors. World Wide Web Consortium, 26
June 2007. This version of the "Web Services Description Language
(WSDL) Version 2.0 Part 2: Adjuncts" Recommendation is available at
http://www.w3.org/TR/2007/REC-wsdl20-adjuncts-20070626. The
<a href="http://www.w3.org/TR/wsdl20-adjuncts">latest version of
"Web Services Description Language (WSDL) Version 2.0 Part 2:
Adjuncts"</a> is available at
http://www.w3.org/TR/wsdl20-adjuncts.</dd>
<dt class="label"><a name="WSPolicy" id="WSPolicy"></a> [WS Policy
1.5]</dt>
<dd><cite><span class="diff-old"><a href=
"http://www.w3.org/TR/2007/PR-ws-policy-20070706"></span>
<a href="http://www.w3.org/TR/2007/REC-ws-policy-20070904">Web
Services Policy 1.5 - Framework</a></cite> , Asir S Vedamuthu, et
al., Editors. World Wide Web Consortium, <span class="diff-old">6
July</span> <span class="diff-new">4 September</span> 2007. This
version of the WS-Policy Framework is <span class=
"diff-old">http://www.w3.org/TR/2007/PR-ws-policy-20070706.</span>
<span class=
"diff-new">http://www.w3.org/TR/2007/REC-ws-policy-20070904.</span>
The <a href="http://www.w3.org/TR/ws-policy">latest version of WS
Policy Framework</a> is available at
http://www.w3.org/TR/ws-policy</dd>
<dt class="label"><a name="WSPolicyAttachment" id=
"WSPolicyAttachment"></a> [WS Policy 1.5 - Attachment]</dt>
<dd><cite><span class="diff-old"><a href=
"http://www.w3.org/TR/2007/PR-ws-policy-attach-20070706"></span>
<a href=
"http://www.w3.org/TR/2007/REC-ws-policy-attach-20070904">Web
Services Policy 1.5 - Attachment</a></cite> , Asir S Vedamuthu, et
al., Editors. World Wide Web Consortium, <span class="diff-old">6
July</span> <span class="diff-new">4 September</span> 2007. This
version of the WS-Policy Attachment is <span class=
"diff-old">http://www.w3.org/TR/2007/PR-ws-policy-attach-20070706.</span>
<span class=
"diff-new">http://www.w3.org/TR/2007/REC-ws-policy-attach-20070904.</span>
The <a href="http://www.w3.org/TR/ws-policy-attach">latest version
of WS Policy Attachment</a> is available at
http://www.w3.org/TR/ws-policy-attach</dd>
<dt class="label"><a name="XML10" id="XML10"></a> [XML 1.0]</dt>
<dd><cite><a href=
"http://www.w3.org/TR/2006/REC-xml-20060816">Extensible Markup
Language (XML) 1.0 (Fourth Edition)</a></cite> , T. Bray, J. Paoli,
C. M. Sperberg-McQueen, and E. Maler, Editors. World Wide Web
Consortium, 10 February 1998, revised 16 August 2006. This version
of the XML 1.0 Recommendation is
http://www.w3.org/TR/2006/REC-xml-20060816. The <a href=
"http://www.w3.org/TR/xml">latest version of XML 1.0</a> is
available at http://www.w3.org/TR/xml.</dd>
<dt class="label"><a name="XMLNS" id="XMLNS"></a> [XML
Namespaces]</dt>
<dd><cite><a href=
"http://www.w3.org/TR/2006/REC-xml-names-20060816/">Namespaces in
XML 1.0 (Second Edition)</a></cite> , T. Bray, D. Hollander, A.
Layman, and R. Tobin, Editors. World Wide Web Consortium, 14
January 1999, revised 16 August 2006. This version of Namespaces in
XML 1.0 Recommendation is
http://www.w3.org/TR/2006/REC-xml-names-20060816/. The <a href=
"http://www.w3.org/TR/xml-names">latest version of Namespaces in
XML</a> is available at http://www.w3.org/TR/xml-names.</dd>
<dt class="label"><a name="XMLInfoSet" id="XMLInfoSet"></a> [XML
Information Set]</dt>
<dd><cite><a href=
"../../2004/REC-xml-infoset-20040204/index.html">XML
Information Set (Second Edition)</a></cite> , J. Cowan and R.
Tobin, Editors. World Wide Web Consortium, 24 October 2001, revised
4 February 2004. This version of the XML Information Set
Recommendation is
http://www.w3.org/TR/2004/REC-xml-infoset-20040204/. The <a href=
"http://www.w3.org/TR/xml-infoset">latest version of XML
Information Set</a> is available at
http://www.w3.org/TR/xml-infoset.</dd>
<dt class="label"><a name="XMLSchemaP1" id="XMLSchemaP1"></a> [XML
Schema Structures]</dt>
<dd><cite><a href=
"../../2004/REC-xmlschema-1-20041028/index.html">XML Schema
Part 1: Structures Second Edition</a></cite> , H. Thompson, D.
Beech, M. Maloney, and N. Mendelsohn, Editors. World Wide Web
Consortium, 2 May 2001, revised 28 October 2004. This version of
the XML Schema Part 1 Recommendation is
http://www.w3.org/TR/2004/REC-xmlschema-1-20041028. The <a href=
"http://www.w3.org/TR/xmlschema-1/">latest version of XML Schema
Part 1</a> is available at http://www.w3.org/TR/xmlschema-1.</dd>
<dt class="label"><a name="XMLSchemaP2" id="XMLSchemaP2"></a> [XML
Schema Datatypes]</dt>
<dd><cite><a href=
"../../2004/REC-xmlschema-2-20041028/index.html">XML Schema
Part 2: Datatypes Second Edition</a></cite> , P. Byron and A.
Malhotra, Editors. World Wide Web Consortium, 2 May 2001, revised
28 October 2004. This version of the XML Schema Part 2
Recommendation is
http://www.w3.org/TR/2004/REC-xmlschema-2-20041028. The <a href=
"http://www.w3.org/TR/xmlschema-2/">latest version of XML Schema
Part 2</a> is available at http://www.w3.org/TR/xmlschema-2.</dd>
</dl>
</div>
<div class="div2">
<h3><a name="id2279332" id="id2279332"></a>
7.2 Informative</h3>
<dl>
<dt class="label"><a name="WSPolicyPrimer" id="WSPolicyPrimer"></a>
[WS Policy 1.5 - Primer]</dt>
<dd><cite><span class="diff-old"><a href=
"http://www.w3.org/TR/2007/WD-ws-policy-primer-20070605"></span>
<a href=
"http://www.w3.org/TR/2007/WD-ws-policy-primer-20070810">Web
Services Policy 1.5 - Primer</a></cite> , Asir S Vedamuthu, et al.,
Editors. World Wide Web Consortium, <span class="diff-old">5
June</span> <span class="diff-new">10 August</span> 2007. This
version of the WS-Policy Primer is <span class=
"diff-old">http://www.w3.org/TR/2007/WD-ws-policy-primer-20070605.</span>
<span class=
"diff-new">http://www.w3.org/TR/2007/WD-ws-policy-primer-20070810.</span>
The <a href="http://www.w3.org/TR/ws-policy-primer">latest version
of WS Policy Primer</a> is available at
http://www.w3.org/TR/ws-policy-primer</dd>
<dt class="label"><a name="WS-Security" id="WS-Security"></a>
[WS-Security]</dt>
<dd>OASIS, <cite><a href=
"http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0.pdf">
Web Services Security: SOAP Message Security</a></cite> , March
2004.</dd>
</dl>
</div>
</div>
</div>
<div class="back">
<div class="div1">
<h2><a name="acknowledgments" id="acknowledgments"></a> A.
Acknowledgements (Non-Normative)</h2>
<p>This document is the work of the <a href=
"http://www.w3.org/2002/ws/addr/">W3C Web Service Addressing
Working Group</a> .</p>
<p>Members of the Working Group are (at the time of writing, and by
alphabetical order): Abbie Barbir (Nortel Networks), Andreas
Bjärlestam (ERICSSON), Eran Chinthaka (WSO2), Francisco Curbera
(IBM Corporation), Glen Daniels (Sonic Software), Vikas Deolaliker
(Sonoa Systems, Inc.), Paul Downey (BT), Jacques Durand (Fujitsu
Limited), Robert Freund (Hitachi, Ltd.), Marc Goodner (Microsoft
Corporation), David Hull (TIBCO Software, Inc.), Yin-Leng Husband
(HP), David Illsley (IBM Corporation), Ram Jeyaraman (Microsoft
Corporation), Anish Karmarkar (Oracle Corporation), Paul Knight
(Nortel Networks), Philippe Le Hégaret (W3C/MIT), Amelia Lewis
(TIBCO Software, Inc.), Bozhong Lin (IONA Technologies, Inc.), Mark
Little (JBoss Inc.), Jeganathan Markandu (Nortel Networks), Jeff
Mischkinsky (Oracle Corporation), Nilo Mitra (ERICSSON), Eisaku
Nishiyama (Hitachi, Ltd.), Ales Novy (Systinet Inc.), David Orchard
(BEA Systems, Inc.), Gilbert Pilz (BEA Systems, Inc.), Rama
Pulavarthi (Sun Microsystems, Inc.), Alain Regnier (Ricoh Company,
Ltd.), Tony Rogers (CA), Tom Rutt (Fujitsu Limited), Davanum
Srinivas (WSO2), Jiri Tejkl (Systinet Inc.), Katy Warr (IBM
Corporation), Steve Winkler (SAP AG), Ümit Yalçinalp (SAP AG),
Prasad Yendluri (webMethods, Inc.).</p>
<p>Previous members of the Working Group were: Lisa Bahler (SAIC -
Telcordia Technologies), Rebecca Bergersen (IONA Technologies,
Inc.), Vladislav Bezrukov (SAP AG), Dave Chappell (Sonic Software),
Ugo Corda (Sun Microsystems, Inc.), Michael Eder (Nokia), Yaron
Goland (BEA Systems, Inc.), Martin Gudgin (Microsoft Corporation),
Arun Gupta (Sun Microsystems, Inc.), Hugo Haas (W3C), Marc Hadley
(Sun Microsystems, Inc), Jonathan Marsh (Microsoft Corporation),
Mark Nottingham (BEA Systems, Inc.), Mark Peel (Novell, Inc.),
Harris Reynolds (webMethods, Inc.), Rich Salz (IBM Corporation),
Davanum Srinivas (Computer Associates), Greg Truty (IBM
Corporation), Mike Vernal (Microsoft Corporation), Steve Vinoski
(IONA Technologies, Inc.), Pete Wenzel (Sun Microsystems,
Inc.).</p>
<p>The people who have contributed to <a href=
"http://lists.w3.org/Archives/Public/public-ws-addressing/">discussions
on public-ws-addressing@w3.org</a> are also gratefully
acknowledged.</p>
</div>
<div class="div1">
<h2><a name="actioncompatibility" id="actioncompatibility"></a> B.
Compatibility of [action] with previous versions of WS-Addressing
(Non-Normative)</h2>
<p>This section describes strategies for choosing [action] values
consistent between this specification and the WS-Addressing Member
Submission published 10 August 2004 (hereafter called "2004-08").
The wsa200408 namespace prefix below refers to the
"http://schemas.xmlsoap.org/ws/2004/08/addressing" namespace
defined in the 2004-08 version.</p>
<p>The WS-Addressing 1.0 [action] property, which identifies the
semantics implied by a message, is semantically equivalent to the
[action] message information header defined in the 2004-08 version.
Authors are therefore advised to use the same value for 1.0
[action] and 2004-08 [action].</p>
<p>However, when describing services in WSDL, the namespace of the
Action attribute used to associate values with WSDL operations
differs in the two versions (wsam:Action versus wsa200408:Action),
and the default action pattern in WS-Addressing 1.0 differs in two
respects from that in the 2004-08 version: the [delimiter] can be
either "/" or ":" in 1.0 while in 2004-08 it is always "/", and the
default action pattern for faults is closer to that of other
messages instead of a constant URI.</p>
<p>If a default action pattern is desired, this specification
recommends the 1.0 default action pattern. The 200408 [action] can
be made consistent with the 1.0 default by:</p>
<ol class="enumar">
<li>
<p>specifying wsa200408:Action explicitly when the targetNamespace
is a URN, and</p>
</li>
<li>
<p>specifying wsa200408:Action explicitly when the message is a
fault.</p>
</li>
</ol>
<p>If the targetNamespace is a URN, it is not advisable to use the
2004-08 default action pattern, as it leads to malformed IRIs. If
the targetNamespace is not a URN, and the 2004-08 default action
pattern is in use, the 1.0 [action] value can be made consistent
by:</p>
<ol class="enumar">
<li>
<p>specifying wsam:Action explicitly when the message is a
fault.</p>
</li>
</ol>
</div>
<span class="diff-old-a">deleted text:</span> <span class=
"diff-old"><div class="div1"> <h2> <a
name="changelog" id="changelog"> </a> C. Change Log
(Non-Normative) </h2> <div class="div2"> <h3>
<a name="id2276545" id="id2276545"> </a> C.1 Changes
Since Candidate Recommendation Draft </h3> <table
border="1"> <tr> <th> Date </th> <th>
Editor </th> <th> Description </th> </tr>
<tr> <td> 2007-07-26 @ 12:54 </td> <td>
plehegar </td> <td> Removed section 2.2 Updated policy
references </td> </tr> <tr> <td> 2007-06-19
@ 14:18 </td> <td> plehegar </td> <td>
Fixed [operation name] in default action pattern for WSDL 1.1
</td> </tr> <tr> <td> 2007-06-19 @ 14:13
</td> <td> plehegar </td> <td> Updatd
references </td> </tr> <tr> <td> 2007-06-19
@ 04:22 </td> <td> trogers </td> <td>
LC141: change default action pattern for faults in WSDL 2.0
</td> </tr> <tr> <td> 2007-06-19 @ 00:03
</td> <td> trogers </td> <td> LC143: change
statement of how Policy's optional attribute works to a reference
to WS-Policy </td> </tr> <tr> <td>
2007-06-18 @ 23:40 </td> <td> trogers </td>
<td> Included [operation name] in the definitions in default
action pattern for WSDL 1.1 </td> </tr> <tr>
<td> 2007-05-17 @ 21:08 </td> <td> plehegar
</td> <td> Updated prevloc following the publication
</td> </tr> <tr> <td> 2007-05-16 @ 19:29
</td> <td> plehegar </td> <td> Updated
latest versions links for XML and Namespaces </td>
</tr> <tr> <td> 2007-05-15 @ 15:13 </td>
<td> plehegar </td> <td> Updated Tony's
affiliation and references </td> </tr> <tr>
<td> 2007-05-14 @ 20:52 </td> <td> plehegar
</td> <td> New namespace for the specification, policy,
and WSDL </td> </tr> <tr> <td> 2007-04-26 @
12:34 </td> <td> plehegar </td> <td> lc134
with "Add to Section 3 the language " This assertion implies
support for ws-addr core and soap binding." </td> </tr>
<tr> <td> 2007-01-31 @ 15:23 </td> <td>
plehegar </td> <td> Minor tweaks in the abstract
</td> </tr> <tr> <td> 2007-01-31 @ 13:18
</td> <td> plehegar </td> <td> Removed
extra whitespaces, added missing whitespaces, fixed introduction to
include mention of WS-Policy, changed prefix from "ws-addr-wsdl" to
"ws-addr-metadata", latest version is CR of May 29, changed status
back to WD, updated references (new editions of XML 1.0 and XML
Namespaces, new versions of WSDL 2.0, new policy primer)
</td> </tr> <tr> <td> 2007-01-31 @ 10:57
</td> <td> trogers </td> <td> Removed the
last traces of UsingAddressing </td> </tr> <tr>
<td> 2007-01-30 @ 10:44 </td> <td> trogers
</td> <td> Adjusted definitions of response assertions,
Replaced section 3.1.4 (moved to 3.1.6 and changed content)
</td> </tr> <tr> <td> 2007-01-29 @ 09:37
</td> <td> trogers </td> <td> Corrected the
captions on examples 3-5 and 3-10 </td> </tr>
<tr> <td> 2007-01-22 @ 22:58 </td> <td>
trogers </td> <td> Corrected message label case in
example 4-5 - editorial </td> </tr> <tr>
<td> 2007-01-22 @ 22:45 </td> <td> trogers
</td> <td> Implemented editorial changes resulting from
23Jan telecon. Implemented CR40 and CR42. </td> </tr>
<tr> <td> 2007-01-14 @ 20:31 </td> <td>
trogers </td> <td> removed UsingAddressing and SOAP
module, updated conformance to suit, added None URI as acceptable
</td> </tr> <tr> <td> 2007-01-10 @ 11:26
</td> <td> trogers </td> <td> Changed the
namespace and namespace prefix for this document Corrected
introduction and conformance section </td> </tr>
<tr> <td> 2007-01-05 @ 14:20 </td> <td>
trogers </td> <td> Implemented the resolutions of CR33
and CR44: policy assertions for using addressing and anon/non-anon
responses </td> </tr> <tr> <td> 2007-01-03
@ 12:28 </td> <td> trogers </td> <td>
Implemented the resolution of CR30 - SOAPAction not empty or
absolute IRI makes the document invalid </td> </tr>
<tr> <td> 2007-01-03 @ 11:38 </td> <td>
trogers </td> <td> Implemented CR26 and CR28 about the
rules for populating the [action] property. </td> </tr>
</table> </div> <div class="div2"> <h3>
<a name="id2276559" id="id2276559"> </a> C.2 Changes
Since Last Call Working Draft </h3> <table border="1">
<tr> <th> Date </th> <th> Editor
</th> <th> Description </th> </tr>
<tr> <td> 2006-05-04 @ 12:33 </td> <td>
mhadley </td> <td> Split the references into normative
and informative, fixed a few editorial glitches </td>
</tr> <tr> <td> 2006-04-28 @ 15:09 </td>
<td> mhadley </td> <td> Added new change log
section for LC issues </td> </tr> <tr> <td>
2006-04-28 @ 15:04 </td> <td> mhadley </td>
<td> Incorporated resolution to issue lc132 - reworked
section 4 to allow use of EPRs as WSDL endpoint/port extensions
</td> </tr> <tr> <td> 2006-04-28 @ 13:40
</td> <td> trogers </td> <td> Implemented
the resolution of LC131, simplifying table 3.1 to remove discussion
of UsingAddressing not present. </td> </tr> <tr>
<td> 2006-04-28 @ 13:25 </td> <td> trogers
</td> <td> Implemented the resolution of LC129,
removing the default for wsaw:Anonymous </td> </tr>
<tr> <td> 2006-04-28 @ 13:09 </td> <td>
trogers </td> <td> Implemented LC124, adding
Conformance section. </td> </tr> <tr> <td>
2006-04-26 @ 15:34 </td> <td> mhadley </td>
<td> Added resolution of issue lc122 - added (n..m) notation
to wsaw:InterfaceName, wsaw:ServiceName and
wsaw:ServiceName/@EndpointName descriptions </td> </tr>
<tr> <td> 2006-04-26 @ 15:28 </td> <td>
mhadley </td> <td> Added resolution of issue lc123 -
changed all the examples to be based on the one used in the WSDL
2.0 primer </td> </tr> <tr> <td> 2006-04-17
@ 10:27 </td> <td> trogers </td> <td>
Removed MUST from section 4.1 concerning the value of [destination]
(LC130) </td> </tr> <tr> <td> 2006-04-17 @
10:14 </td> <td> trogers </td> <td> Marking
UsingAddressing using <el> tag to show that it is not a typo
in heading 3.1 (LC126) </td> </tr> <tr>
<td> 2006-04-17 @ 10:05 </td> <td> trogers
</td> <td> Added the class of product specification to
the Abstract (LC125) </td> </tr> <tr> <td>
2006-04-17 @ 09:46 </td> <td> trogers </td>
<td> Applied the changes required for LC120 - typo in intro
and correcting wsa:Action/wsaw:Action. </td> </tr>
<tr> <td> 2006-04-17 @ 09:34 </td> <td>
trogers </td> <td> Applied the changes required for
LC119. </td> </tr> <tr> <td> 2006-04-17 @
08:42 </td> <td> trogers </td> <td> Changed
the {reference parameters} property from REQUIRED to OPTIONAL in
the component model. This completes LC116. </td> </tr>
<tr> <td> 2006-03-27 @ 19:48 </td> <td>
mhadley </td> <td> Used alternate words instead of
lowercase RFC2119 terms </td> </tr> <tr>
<td> 2006-03-20 @ 15:05 </td> <td> mhadley
</td> <td> Fixed a typo in example generated fault
action </td> </tr> <tr> <td> 2006-03-15 @
22:56 </td> <td> trogers </td> <td>
Implemented the resolution of LC116: added section describing the
{reference parameters} property. </td> </tr> <tr>
<td> 2006-03-13 @ 13:30 </td> <td> trogers
</td> <td> Added the resolution of LC113: clarifying
section 3.3 WSDL SOAP module. </td> </tr> <tr>
<td> 2006-03-13 @ 13:19 </td> <td> trogers
</td> <td> Added the resolution of LC111: clarifying
the {addressing required} property. </td> </tr>
<tr> <td> 2006-03-13 @ 13:03 </td> <td>
trogers </td> <td> Altered changelog limit from start
of 2006 to end of 2006. </td> </tr> <tr>
<td> 2006-03-13 @ 12:59 </td> <td> trogers
</td> <td> Added resolution of LC109: specify that at
least one of reply or fault endpoint is required on Robust In-Only
</td> </tr> <tr> <td> 2006-03-03 @ 14:10
</td> <td> mhadley </td> <td> Fixed editor
list in references </td> </tr> <tr> <td>
2006-03-03 @ 13:48 </td> <td> mhadley </td>
<td> Added resolution to LC115 - definition to description
for WSDL 2.0 </td> </tr> <tr> <td>
2006-03-03 @ 13:45 </td> <td> mhadley </td>
<td> Added resolution to LC114 - typos </td>
</tr> <tr> <td> 2006-02-22 @ 14:22 </td>
<td> mhadley </td> <td> Fixed a typo: 'by by' to
'by' </td> </tr> </table> </div> <div
class="div2"> <h3> <a name="id2276574"
id="id2276574"> </a> C.3 Changes Since Third Working Draft
</h3> <table border="1"> <tr> <th> Date
</th> <th> Editor </th> <th> Description
</th> </tr> <tr> <td> 2006-02-13 @ 20:15
</td> <td> mhadley </td> <td> Removed ed
notes </td> </tr> <tr> <td> 2006-02-13 @
16:56 </td> <td> mhadley </td> <td> A few
grammar fixes and noted that wsaw:Anonymous with a value of
optional is equivalent to the default. </td> </tr>
<tr> <td> 2006-02-13 @ 16:45 </td> <td>
mhadley </td> <td> Added resolution to issue 70, soften
language on defining value of [destination] to allow runtime
override. </td> </tr> <tr> <td> 2006-02-13
@ 15:50 </td> <td> mhadley </td> <td> Added
resolution to issue 66, explicit note that wsaw:UsingAddressing
could be used outside WSDL, e.g. in a policy framework </td>
</tr> <tr> <td> 2006-01-19 @ 20:37 </td>
<td> mhadley </td> <td> Fixed some grammar errors
</td> </tr> <tr> <td> 2006-01-08 @ 23:14
</td> <td> trogers </td> <td> Umit's
description of the Anonymous element added; Umit added to editor
list. </td> </tr> <tr> <td> 2005-11-22 @
21:29 </td> <td> mhadley </td> <td> Added
resolution to issue 63, new subsections describing impacts of
extension elements on WSDL 2.0 component model </td>
</tr> <tr> <td> 2005-11-07 @ 07:08 </td>
<td> mhadley </td> <td> Added resolution to issue
65, [action] defaults to same as SOAPAction in absence of
wsaw:Action </td> </tr> <tr> <td>
2005-11-07 @ 06:44 </td> <td> mhadley </td>
<td> Updated resolution to issues 56, 57 </td>
</tr> <tr> <td> 2005-10-31 @ 20:35 </td>
<td> mhadley </td> <td> Updated UsingAddressing
section to move some dense text into a simpler tabular form
</td> </tr> <tr> <td> 2005-10-31 @ 20:12
</td> <td> mhadley </td> <td> Added
resolution to issues 56 and 57, added new top level section that
describes how MAP values are derived from WSDL for [destination],
[action] and [reference properties] </td> </tr>
<tr> <td> 2005-10-24 @ 01:50 </td> <td>
trogers </td> <td> Added appendix on action
compatibility with 200408 version (resolving i64) </td>
</tr> <tr> <td> 2005-10-17 @ 18:44 </td>
<td> mhadley </td> <td> Added namesapce change
policy </td> </tr> <tr> <td> 2005-10-11 @
03:16 </td> <td> trogers </td> <td>
Incorporated the resolution of i61. </td> </tr>
<tr> <td> 2005-10-10 @ 20:20 </td> <td>
mhadley </td> <td> Fixed type in example fault action
URI. Added clarification that WSDL 1.1 material is included for
backwards compatibility only </td> </tr> <tr>
<td> 2005-09-15 @ 19:16 </td> <td> mhadley
</td> <td> Added resolution to issue 62 - changed
Fault: to [delimiter]Fault[delimiter] in default action for WSDL
1.1 faults </td> </tr> <tr> <td> 2005-09-15
@ 19:09 </td> <td> mhadley </td> <td> Added
resolution to issue 20 - noted that inclusion of InterfaceName or
@EndpointName in an EPR makes the EPR specific to the identified
interface or endpoint respectively </td> </tr>
<tr> <td> 2005-09-15 @ 18:47 </td> <td>
mhadley </td> <td> Added resolution to issue 17 - noted
that action fulfils WSDL best practice for unique message
signatures </td> </tr> <tr> <td> 2005-05-25
@ 21:40 </td> <td> mhadley </td> <td> Added
new section in changelog to account for previous draft publication
</td> </tr> <tr> <td> 2005-05-18 @ 19:42
</td> <td> mhadley </td> <td> Added lc53
resolution - expanded MAP to message addressing property and fixed
editorial glitch </td> </tr> <tr> <td>
2005-05-18 @ 19:22 </td> <td> mhadley </td>
<td> Added lc47 resolution - fixed URL in WSDL 2.0 biblio
entry </td> </tr> <tr> <td> 2005-04-22 @
22:37 </td> <td> mhadley </td> <td> Added
issue 21 resolution </td> </tr> </table>
</div> <div class="div2"> <h3> <a
name="id2276588" id="id2276588"> </a> C.4 Changes Since
Second Working Draft </h3> <table border="1">
<tr> <th> Date </th> <th> Editor
</th> <th> Description </th> </tr>
<tr> <td> 2005-03-21 @ 23:15 </td> <td>
mgudgin </td> <td> Moved sentence on WSDL 2.0/WSDL 1.1
from Section 1.2 to Section 1 </td> </tr> <tr>
<td> 2005-03-10 @ 03:40 </td> <td> mhadley
</td> <td> Incorporated additional editorial fixes from
J. Marsh. </td> </tr> <tr> <td> 2005-03-10
@ 02:06 </td> <td> mhadley </td> <td>
Incorporated editorial fixes from J. Marsh. </td> </tr>
<tr> <td> 2005-03-02 @ 21:22 </td> <td>
mhadley </td> <td> Fixed some problems with use of
wsdli:wsdlLocation. </td> </tr> <tr> <td>
2005-03-01 @ 13:33 </td> <td> mhadley </td>
<td> Changed MUST to SHOULD in section 2.2 wrt matching port
name </td> </tr> <tr> <td> 2005-02-28 @
22:08 </td> <td> mhadley </td> <td> Added
resolution to issues 24 and 26 </td> </tr> <tr>
<td> 2005-02-27 @ 19:42 </td> <td> mhadley
</td> <td> Changed URI to IRI where appropriate.
</td> </tr> <tr> <td> 2005-02-23 @ 16:11
</td> <td> mhadley </td> <td> Incorporated
resolution to issue 17b </td> </tr> <tr>
<td> 2005-02-15 @ 23:19 </td> <td> mhadley
</td> <td> Added resolution to issue 45 </td>
</tr> </table> </div> <div class="div2">
<h3> <a name="id2276602" id="id2276602"> </a> C.5
Changes Since First Working Draft </h3> <table
border="1"> <tr> <th> Date </th> <th>
Editor </th> <th> Description </th> </tr>
<tr> <td> 2005-02-01 @ 19:49 </td> <td>
mhadley </td> <td> Removed several occurances of the
word 'identify' when used with endpoint references. Replaced with
'reference' or 'address' as appropriate. </td> </tr>
<tr> <td> 2005-01-25 @ 22:23 </td> <td>
mhadley </td> <td> Added descriptive text for
wsa:Action attribute. Fixed references to WSDL 1.1 to be more
explicit version-wise. </td> </tr> <tr>
<td> 2005-01-24 @ 10:12 </td> <td> mgudgin
</td> <td> Incorporated resolution of i034 and i035;
default action URI for WSDL 2.0 and default action URI for faults.
All edits in section 3 </td> </tr> <tr>
<td> 2005-01-18 @ 04:01 </td> <td> mgudgin
</td> <td> Modified text in Section 2 WRT closing issue
i020 </td> </tr> <tr> <td> 2004-12-16 @
18:20 </td> <td> mhadley </td> <td> Added
resolution to issue 19 - WSDL version neutrality </td>
</tr> <tr> <td> 2004-12-16 @ 16:50 </td>
<td> mhadley </td> <td> Added issue 33 resolution
</td> </tr> <tr> <td> 2004-12-14 @ 20:10
</td> <td> mhadley </td> <td> Switched back
to edcopy formatting </td> </tr> <tr> <td>
2004-12-14 @ 20:02 </td> <td> mhadley </td>
<td> Enhanced auto-changelog generation to allow
specification of data ranges for logs. Split change log to show
changes between early draft and first working draft and changes
since first working draft. </td> </tr> <tr>
<td> 2004-12-14 @ 18:13 </td> <td> mhadley
</td> <td> Added resolutions for issues 12 (EPR
lifecycle), 37 (relationship from QName to URI) and 39 (spec name
versioning) </td> </tr> </table> </div>
<div class="div2"> <h3> <a name="id2276616"
id="id2276616"> </a> C.6 Changes Since Submission
</h3> <table border="1"> <tr> <th> Date
</th> <th> Editor </th> <th> Description
</th> </tr> <tr> <td> 2004-12-04 @ 02:04
</td> <td> mgudgin </td> <td> Added text to
section on WSDL MEPs per resolution of Issue i003 </td>
</tr> <tr> <td> 2004-11-23 @ 21:38 </td>
<td> mhadley </td> <td> Updated titles of
examples. Fixed table formatting and references. Replaced uuid URIs
with http URIs in examples. Added document status. </td>
</tr> <tr> <td> 2004-11-11 @ 18:31 </td>
<td> mgudgin </td> <td> Added some TBD sections
</td> </tr> <tr> <td> 2004-11-07 @ 02:03
</td> <td> mhadley </td> <td> Second more
detailed run through to separate core, SOAP and WSDL document
contents. Removed dependency on WS-Policy. Removed references to
WS-Trust and WS-SecurityPolicy </td> </tr> <tr>
<td> 2004-11-02 @ 21:45 </td> <td> mhadley
</td> <td> Replaced hardcoded change log with one
generated dynamically from CVS </td> </tr> <tr>
<td> 2004-10-28 @ 18:09 </td> <td> mhadley
</td> <td> Fixed typo in abstract </td>
</tr> <tr> <td> 2004-10-28 @ 17:05 </td>
<td> mhadley </td> <td> Initial cut of separating
specification into core, soap and wsdl </td> </tr>
</table> </div> </div></span></div>
</body>
</html>
|