index.html
136 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Web Services Description Language (WSDL) Version 2.0: RDF Mapping</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style type="text/css">
/*<![CDATA[*/
pre.example { overflow: auto; border: 1px; border-style: solid; padding: 2px }
pre.urilist { overflow: auto; border: 1px; border-style: solid; padding: 2px }
pre.urilist a { text-decoration: none; color: black; }
.mappingtable { margin-left: 2em }
@media print {
body { font-size: 12pt }
tt { font-size: 11pt }
.mappingtable { font-size: 9pt }
.mappingtable tt { font-size: 8pt }
pre { font-size: 9pt }
}
/*]]>*/
</style>
<link rel="stylesheet" type="text/css" href="http://www.w3.org/StyleSheets/TR/W3C-WG-NOTE.css" />
</head>
<body>
<div class="head">
<p><a href="http://www.w3.org/"><img src="http://www.w3.org/Icons/w3c_home" alt="W3C" height="48" width="72"/></a></p>
<h1>Web Services Description Language (WSDL) Version 2.0: RDF Mapping</h1>
<h2>W3C Working Group Note 26 June 2007</h2>
<dl>
<dt>This version:</dt>
<dd><a href='http://www.w3.org/TR/2007/NOTE-wsdl20-rdf-20070626/'>http://www.w3.org/TR/2007/NOTE-wsdl20-rdf-20070626/</a></dd>
<dt>Latest version:</dt>
<dd><a href='http://www.w3.org/TR/wsdl20-rdf'>http://www.w3.org/TR/wsdl20-rdf</a></dd>
<dt>Previous version:</dt>
<dd><a href='http://www.w3.org/TR/2007/WD-wsdl20-rdf-20070523/'>http://www.w3.org/TR/2007/WD-wsdl20-rdf-20070523/</a></dd>
<dt>Editor:</dt>
<dd>Jacek Kopecký, DERI Innsbruck</dd>
</dl>
<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 />
<h2><a id="abstract">Abstract</a></h2>
<p>Web Services Description Language (WSDL) provides a model and an XML
format for describing Web services. This document describes a
representation of that model in the Resource Description Language (RDF) and
in the Web Ontology Language (OWL), and a mapping procedure for transforming
particular WSDL descriptions into their RDF form.
</p>
<h2><a id="status">Status of this Document</a></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 a <a href=
"http://www.w3.org/2005/10/Process-20051014/tr.html#WGNote">W3C
Working Group Note</a> of Web Services Description Language (WSDL)
Version 2.0 RDF Mapping. It has been produced by the <a href=
"http://www.w3.org/2002/ws/desc/">Web Services Description Working
Group</a>, which is part of the <a href=
"http://www.w3.org/2002/ws/Activity">W3C Web Services
Activity</a>.</p>
<p>Please send comments about this document to the public <a href=
"mailto:public-ws-desc-comments@w3.org">public-ws-desc-comments@w3.org</a>
mailing list (<a href=
"http://lists.w3.org/Archives/Public/public-ws-desc-comments/">public
archive</a>).</p>
<p>A <a href="wsdl20-rdf-diff.html">diff-marked version
against the previous version of this document</a> is available.</p>
<p>Implementers are invited to send feedback to the public <a href=
"mailto:public-ws-desc-comments@w3.org">public-ws-desc-comments@w3.org</a>
mailing list (<a href=
"http://lists.w3.org/Archives/Public/public-ws-desc-comments/">public
archive</a>).</p>
<p>Publication as a Working Group Note does not imply endorsement by
the W3C Membership. However, this Working group Note reflects the
consensus of the Working Group, who provide it for the convenience of
the community.</p>
<p>This document is governed by the <a href=
"http://www.w3.org/TR/2002/NOTE-patent-practice-20020124">24
January 2002 CPP</a> as amended by the <a href=
"http://www.w3.org/2004/02/05-pp-transition">W3C Patent Policy
Transition Procedure</a>. W3C maintains a <a href=
"http://www.w3.org/2002/ws/desc/2/04/24-IPR-statements.html">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>
<hr />
<div class="toc">
<h2><a id="contents">Table of Contents</a></h2>
<p class="toc">
1. <a href="#intro">Introduction</a><br />
1.1 <a href="#naming-conventions">Naming and Notation Conventions</a><br />
1.2 <a href="#overview">Organization of this specification</a><br />
1.3 <a href="#conformance">Conformance</a><br />
2. <a href="#ontology">WSDL Ontology</a><br />
2.1 <a href="#core">Core WSDL Components</a><br />
2.1.1 <a href="#description">Description component</a><br />
2.1.2 <a href="#interface">Interface classes</a><br />
2.1.3 <a href="#binding">Binding classes</a><br />
2.1.4 <a href="#service">Service classes</a><br />
2.2 <a href="#extensions">Handling Extensions and Documentation</a><br />
2.3 <a href="#meps">Message Exchange Patterns</a><br />
2.4 <a href="#predefined_extensions">Predefined Extensions</a><br />
2.5 <a href="#opstyles">Operation Styles</a><br />
2.6 <a href="#soapbinding">SOAP Binding</a><br />
2.7 <a href="#httpbinding">HTTP Binding</a><br />
3. <a href="#example">Example WSDL document in RDF form</a><br />
4. <a href="#modelingdiffs">Differences from the WSDL Component Model (Non-Normative)</a><br />
4.1 <a href="#diff-naming">Component naming</a><br />
4.2 <a href="#diff-doc">Documents, imports and includes</a><br />
4.3 <a href="#diff-references">Component references</a><br />
4.4 <a href="#diff-propsasclasses">Representing properties with classes</a><br />
4.5 <a href="#diff-restrictions">Other WSDL restrictions not enforced by the
ontology</a><br />
5. <a href="#references">References</a><br />
</p>
<h3><a id="appendix">Appendices</a></h3>
<p class="toc">
A. <a href="#ontologysource">The OWL Ontology Source</a><br />
B. <a href="#uri-summary">List of URIs used by the WSDL RDF mapping (Non-Normative)</a><br />
C. <a href="#acknowledgments">Acknowledgments (Non-Normative)</a><br />
</p>
</div>
<hr />
<div class="body">
<h2 id="intro">1. Introduction</h2>
<p>Web Services Description Language is defined in XML, because XML is a
common format for exchange of structured information. WSDL generators and
parsers benefit from the wide availability of XML processing libraries, and the
use of XML Schema makes the structure of WSDL well constrained, yet extensible.
On the other hand, XML in general does not provide generic rules for composing
different vocabularies,
so combining for example the WSDL description of a Web service, the service's
policies and other information (presumably expressed in XML) can be done in
many significantly different ways (e.g. extending WSDL, extending the policy
language, creating a special XML container for all the information etc.), and
little interoperability can be expected when such combined documents are
used.</p>
<p>For example, a policy can be combined with WSDL by adding the policy
elements in WSDL service element. Equally, a WSDL description can be combined
with a policy by adding the WSDL description as part of the policy. While the
results should be similar (WSDL with policy information), they are in fact very different for the
processing software, and a policy in WSDL cannot easily be used by software
that does not understand WSDL.</p>
<p>The Semantic web allows knowledge from many different
sources to be easily combined so that unexpected data connections can be
used. Thanks to the Resource Description Framework (RDF) graph structure,
together with the use of URIs for identifying nodes, it is very easy for
different documents to be brought together. If some WSDL document describes a
Web service, a policy document expresses constraints and capabilities of the
service and a general description specifies the author of the service, all
this information can be merged in RDF and the resulting graph
will contain all three kinds of information associated with the single
service.</p>
<p>The main objective of this specification is to present a standard RDF ([<a
href="#rdf">RDF</a>]) and OWL ([<a href="#owl">OWL</a>])
vocabulary to express WSDL 2.0, so that WSDL 2.0 documents can be
transformed into RDF and merged with other Semantic Web data. This
specification can be implemented as a standalone tool, as part of a tool
that generates WSDL descriptions (outputting the RDF form in parallel to the
XML form), or as part of a tool that processes RDF data, enabling the ability
to read WSDL documents as RDF input.
</p>
<p>Note: the readers of this document are expected to have an understanding of
the WSDL language and the WSDL component model (see [<a href="#WSDL-PART1">WSDL 2.0 Core Language</a>]); this document <strong>is
not</strong> a standalone specification of the WSDL ontology, independent of
WSDL specification. Further, the readers are expected to have good knowledge
of RDF and at least basic knowledge of OWL.</p>
<h3 id="naming-conventions">1.1 Naming and Notation Conventions</h3>
<p>The ontology presented in this specification describes concepts introduced in WSDL 2.0 (see [<a
href="#WSDL-PART1">WSDL 2.0 Core Language</a>] and [<a
href="#WSDL-PART2">WSDL 2.0
Adjuncts</a>]), from where we adopt the names for the ontology classes, properties and
distinguished instances.</p>
<p>In WSDL 2.0, components and their properties are named with words
separated with spaces, for example <i>Interface Operation</i> component with
{message exchange pattern} property. In this document, we
write all WSDL 2.0 components and properties in <i>italic</i>. In the WSDL
ontology, we use the so-called <i>camelCase</i>, with upper-case first letter
for class names (<code class="wsdl-rdf">InterfaceOperation</code>) and lower-case first letter for
properties (<code class="wsdl-rdf">messageExchangePattern</code>). We write all the WSDL ontology
identifiers in <code class="wsdl-rdf">monospace</code>.</p>
<p>The above naming transformation (remove spaces, use camelCase) is used for
the majority of components and their properties modeled in our ontology, with
several exception indicated in the text in this specification. One recurring
exception is that the multivalued properties (like Interface.{interface
operations}) are not modeled as a single plural property (say
<code class="wsdl-rdf">interfaceOperations</code>) but instead as a singular property to be used
multiple times (i.e. <code class="wsdl-rdf">interfaceOperation</code> in our case), as the order
of the values is irrelevant in WSDL.</p>
<p>In the mapping tables below, we use a simple triple syntax, each
triple on one line. Variables to be filled in (like generated IDs and
property values) are in angle brackets, for example <id> generally
means the ID of the current component. Literal values are in double quotes,
optionally indicating the data type after double caret, for example
"<code>"^^xs:int for HTTP status codes. The default data type is
xs:string. Finally, comments are in parentheses and italic <em>(like
this)</em>.</p>
<p>This specification uses predefined namespace prefixes
throughout; they are given in the following list. Note that the
choice of any namespace prefix is arbitrary and not semantically
significant (see [<cite><a href="#XMLNS">XML
Namespaces</a></cite>]).</p>
<dl>
<dt class="label">wsdl</dt>
<dd>http://www.w3.org/ns/wsdl-rdf#</dd>
<dt class="label">wsdlx</dt>
<dd>http://www.w3.org/ns/wsdl-extensions#</dd>
<dt class="label">wsoap</dt>
<dd>http://www.w3.org/ns/wsdl/soap#</dd>
<dt class="label">whttp</dt>
<dd>http://www.w3.org/ns/wsdl/http#</dd>
<dt class="label">wrpc</dt>
<dd>http://www.w3.org/ns/wsdl/rpc#</dd>
<dt class="label">rdf</dt>
<dd>http://www.w3.org/1999/02/22-rdf-syntax-ns#</dd>
<dt class="label">rdfs</dt>
<dd>http://www.w3.org/2000/01/rdf-schema#</dd>
<dt class="label">xs</dt>
<dd>http://www.w3.org/2001/XMLSchema#</dd>
<dt class="label">sawsdl</dt>
<dd>http://www.w3.org/ns/sawsdl#</dd>
</dl>
<h3 id="overview">1.2 Organization of this specification</h3>
<p>The remainder of this specification is split into three major sections and
two appendices:</p>
<ul>
<li><a href="#ontology">Section 2</a> describes the ontology for representing
WSDL information and shows the formal mapping tables,</li>
<li><a href="#example">Section 3</a> shows the RDF form of a complete example
WSDL document,</li>
<li><a href="#modelingdiffs">Section 4</a> details the differences in
modeling between the component model of WSDL and the ontology presented in
this document,</li>
<li><a href="#ontologysource">Appendix A</a> contains the full listing (in OWL) of the
WSDL ontology.</li>
<li><a href="#uri-summary">Appendix B</a> lists all the URIs used in this
specification.</li>
</ul>
<h3 id="conformance">1.3 Conformance</h3>
<p>This document defines a mapping from valid WSDL 2.0 documents (interpreted
as the corresponding component model), into sets of RDF statements. A
conforming mapping processor must follow all the mappings specified in the
mapping tables in <a href="#ontology">Section 2</a> of this document, to the extent of its
understanding of the optional WSDL extensions. A WSDL processor that
does not support the SOAP binding, for example, may not implement any
mappings specified in <a href="#soapbinding">Section 2.6</a>.</p>
<p>This specification does not mandate a particular form of generated unique
identifiers; while the example in <a href="#example">Section 3</a> uses
the urn:uuid: scheme, this is not required by this specification. Therefore,
the RDF mapping of a single WSDL document may differ in these generated
identifiers when created by different tools, or even when created by the same
tool at different times.</p>
<p>While this RDF mapping does not (and cannot) handle WSDL extensions in
general (apart from those predefined by the WSDL 2.0 specifications),
implementations of the RDF mapping may support other WSDL extensions and
enhance the resulting RDF graph with the appropriate statements. An RDF
mapping implementation conforms to this specification if it produces all the
statements mandated by the mapping tables herein; it may produce additional
statements as well.</p>
<h2 id="ontology">2. WSDL Ontology</h2>
<p>This section describes the OWL ontology for WSDL, comparing it to the WSDL
component model defined in [<a href="#WSDL-PART1">WSDL 2.0 Core
Language</a>] and [<a href="#WSDL-PART2">WSDL 2.0
Adjuncts</a>]. The text in this section aims to be a comprehensive explanation of
the mapping, and the formal normative mappings are specified in the mapping
tables at the end of each subsection. Note that the URIs defined by the
WSDL 2.0 specification (binding types,
operation styles, message exchange patterns etc.) are not repeated in the mapping tables.</p>
<p>This section also touches briefly on some differences between the OWL
ontology and the component model, but for the full account of these differences and
for the rationales see <a href="#modelingdiffs">section
4</a>.</p>
<p>The RDF mapping for the core WSDL components defined in [<a
href="#WSDL-PART1">WSDL 2.0 Core Language</a>] is described in <a href="#core">section 2.1</a>.
WSDL components are extensible, so <a href="#extensions">section 2.2</a>
describes how extensions are mapped to RDF. The
following sections, from <a href="#meps">2.3</a> to <a href="#httpbinding">2.7</a>, describe the mapping for
the various adjuncts specified in [<a href="#WSDL-PART2">WSDL 2.0
Adjuncts</a>].</p>
<h3 id="core">2.1 Core WSDL Components</h3>
<p>The main components of WSDL are represented as classes in the WSDL
ontology: <code class="wsdl-rdf">Description</code>, <code class="wsdl-rdf">Interface</code>,
<code class="wsdl-rdf">Binding</code> and <code class="wsdl-rdf">Service</code>, as described in the following
subsections. This means that every interface, binding and service described
by WSDL will be mapped to a single instance in the RDF representation.</p>
<h4 id="description">2.1.1 Description class</h4>
<p>The top-level WSDL component — <a href="http://www.w3.org/TR/wsdl20/#Description">Description</a> — is mapped to a
single instance of the class <code class="wsdl-rdf">Description</code>, which uses the
properties <code class="wsdl-rdf">interface</code>, <code class="wsdl-rdf">binding</code> and <code class="wsdl-rdf">service</code> to point to its
constituents, i.e. all the interfaces, bindings and services.</p>
<p>Note that since we do not model element declarations and type definitions
further than just the QNames, we do not reference them from the <code
class="wsdl-rdf">Description</code> instance. This also means that while all
WSDL component models implicitly contain all XML Schema simple type
definitions, the RDF mapping does not show them. It is possible that if an
RDF mapping is created for XML Schema, instead of referencing the QNames,
a future version of this WSDL RDF mapping can use direct pointers to the XML
Schema component designators for the element declarations and type
definitions.</p>
<p>A mapping of a single WSDL document (together with any imports or
includes) will always result in a single instance of the <code
class="wsdl-rdf">Description</code> class. However, there can be multiple
individuals of the class <code class="wsdl-rdf">Description</code> in a
knowledge base that contains the information from multiple WSDL documents.
The core WSDL specification does not consider the case of combining multiple
independent WSDL documents and it does not mandate that independent documents
consistently describe components with the same name. This is, however, an
assumption when combining the RDF representation of multiple WSDL documents.
The normative WSDL RDF mapping does not consider merging multiple differing
definitions of a component with the same name, but some possible resulting
problems are pointed out in <a href="#diff-doc">section 4.2</a>.</p>
<div class="mappingtable">
<table cellpadding="4" width="100%" border="1">
<caption><a id="table2-1">Table 2-1.</a> Mapping Description Components to RDF</caption>
<col width="20%" /><col width="80%" />
<tbody>
<tr>
<th>Property</th>
<th>RDF Form</th>
</tr>
<tr>
<td> </td>
<td> <em>(id generated per <a href="http://www.w3.org/TR/wsdl20/#wsdl-iri-references">IRI-References for WSDL 2.0 Components</a>)</em><br/>
<id> rdf:type wsdl:Description .</td>
</tr>
<tr>
<td>{interfaces}</td>
<td> <em>(for interface mapping see <a href="#table2-3">Table 2-3</a>)</em> </td>
</tr>
<tr>
<td> {bindings}</td>
<td> <em>(for binding mapping see <a href="#table2-8">Table 2-8</a>)</em> </td>
</tr>
<tr>
<td> {services}</td>
<td> <em>(for service mapping see <a href="#table2-13">Table 2-13</a>)</em> </td>
</tr>
<tr>
<td> {type definitions}</td>
<td> <em>(not mapped)</em></td>
</tr>
<tr>
<td> {element declarations}</td>
<td> <em>(not mapped)</em></td>
</tr>
</tbody>
</table>
</div>
<br />
<div class="mappingtable">
<table cellpadding="4" width="100%" border="1">
<caption><a id="table2-2">Table 2-2.</a> Mapping QNames to RDF</caption>
<col width="80%" />
<tbody>
<tr>
<th>RDF Form</th>
</tr>
<tr>
<td> <em>(qnameId is a newly generated unique URI)</em><br />
<qnameId> rdf:type wsdl:QName .<br/>
<qnameId> wsdl:localName "<localName>" .<br/>
<qnameId> wsdl:namespace <namespace> .
</td>
</tr>
</tbody>
</table>
</div>
<h4 id="interface">2.1.2 Interface classes</h4>
<p>All <a href="http://www.w3.org/TR/wsdl20/#Interface">WSDL Interface components</a> are represented in RDF as instances of the
<code class="wsdl-rdf">Interface</code> class. WSDL interfaces can extend other WSDL interfaces,
which is indicated by the property <code class="wsdl-rdf">extends</code>. Interfaces may
have operations and faults, represented as instances of the
<code class="wsdl-rdf">InterfaceOperation</code> and <code class="wsdl-rdf">InterfaceFault</code> classes, and
each pointed to with the properties <code class="wsdl-rdf">interfaceOperation</code> and
<code class="wsdl-rdf">interfaceFault</code>, respectively.</p>
<p>Interfaces, operations and faults each have a name, which is a QName. The
namespace IRI part of this QName is present before the fragment ID of the
component identifier, and the local name is represented in the RDF form as a
literal value of the property <code class="wsdl-rdf">rdfs:label</code>.</p>
<p>There are a number of properties applicable to
<code class="wsdl-rdf">InterfaceOperation</code> instances (corresponding to the properties of the <a href="http://www.w3.org/TR/wsdl20/#component-InterfaceOperation">WSDL Interface Operation component</a>):</p>
<ul>
<li><code class="wsdl-rdf">messageExchangePattern</code> property points to an instance of
the class <code class="wsdl-rdf">MessageExchangePattern</code> and thus indicates the
message exchange pattern (MEP) used by this operation; there can be only one
MEP on one operation</li>
<li><code class="wsdl-rdf">operationStyle</code> property points to an instance of the class
<code class="wsdl-rdf">OperationStyle</code> and indicates that the operation adheres to the
given style; there can be multiple operation styles on a single
operation</li>
<li><code class="wsdl-rdf">interfaceMessageReference</code> and
<code class="wsdl-rdf">interfaceFaultReference</code> properties point to instances of
<code class="wsdl-rdf">InterfaceMessageReference</code> and
<code class="wsdl-rdf">InterfaceFaultReference</code> classes respectively.</li>
</ul>
<p>Instances of <code class="wsdl-rdf">InterfaceMessageReference</code> and <code class="wsdl-rdf">InterfaceFaultReference</code> can indicate
their direction — input message references and input fault references
all belong to the class <code class="wsdl-rdf">InputMessage</code> and output message
references and output fault references all belong to the class
<code class="wsdl-rdf">OutputMessage</code>. Further, both message references and fault
references indicate the appropriate message labels (instances of
<code class="wsdl-rdf">MessageLabel</code>, representing particular messages in the
operation's MEP) using the property <code class="wsdl-rdf">messageLabel</code>. (In <a
href="#meps">section 2.3</a> we describe how message exchange patterns are
modeled in our RDF mapping.)</p>
<p>Furthermore, instances of <code
class="wsdl-rdf">InterfaceMessageReference</code> and of <code
class="wsdl-rdf">InterfaceFault</code> point to element declarations (as
<code class="wsdl-rdf">QName</code> instances)
using the property <code class="wsdl-rdf">elementDeclaration</code> and
specify their message content model with the property <code
class="wsdl-rdf">messageContentModel</code>, indicating one of the four
possible instances of the class <code
class="wsdl-rdf">MessageContentModel</code>. And finally, instances of <code
class="wsdl-rdf">InterfaceFaultReference</code>
refer to their interface faults directly using the property
<code class="wsdl-rdf">interfaceFault</code>.</p>
<div class="mappingtable">
<table cellpadding="4" width="100%" border="1">
<caption><a id="table2-3">Table 2-3.</a> Mapping Interface
Components to RDF</caption>
<col width="20%" /><col width="80%" />
<tbody>
<tr>
<th>Property</th>
<th>RDF Form</th>
</tr>
<tr>
<td> </td>
<td> <em>(id generated per <a href="http://www.w3.org/TR/wsdl20/#wsdl-iri-references">IRI-References for WSDL 2.0 Components</a>)</em><br/>
<id> rdf:type wsdl:Interface .<br/>
<parentDescriptionId> wsdl:interface <id> .</td>
</tr>
<tr>
<td> {name}</td>
<td> <id> rdfs:label "<localPart>" .</td>
</tr>
<tr>
<td> {extended interfaces}</td>
<td> <em>(for each Interface component)</em><br/>
<id> wsdl:extends <anotherInterfaceId> .</td>
</tr>
<tr>
<td> {interface operations}</td>
<td> <em>(for interface operation mapping see <a href="#table2-4">Table 2-4</a>)</em> </td>
</tr>
<tr>
<td> {interface faults}</td>
<td> <em>(for interface fault mapping see <a href="#table2-5">Table 2-5</a>)</em> </td>
</tr>
</tbody>
</table>
</div>
<br />
<div class="mappingtable">
<table cellpadding="4" width="100%" border="1">
<caption><a id="table2-4">Table 2-4.</a> Mapping Interface Operation
Components to RDF</caption>
<col width="20%" /><col width="80%" />
<tbody>
<tr>
<th>Property</th>
<th>RDF Form</th>
</tr>
<tr>
<td> </td>
<td> <em>(id generated per <a href="http://www.w3.org/TR/wsdl20/#wsdl-iri-references">IRI-References for WSDL 2.0 Components</a>)</em><br/>
<id> rdf:type wsdl:InterfaceOperation .<br/>
<parentInterfaceId> wsdl:interfaceOperation <id> .</td>
</tr>
<tr>
<td> {name}</td>
<td> <id> rdfs:label "<localPart>" .</td>
</tr>
<tr>
<td> {interface message references}</td>
<td> <em>(for interface message reference mapping see <a href="#table2-6">Table 2-6</a>)</em> </td>
</tr>
<tr>
<td> {interface fault references}</td>
<td> <em>(for interface fault reference mapping see <a href="#table2-7">Table 2-7</a>)</em> </td>
</tr>
<tr>
<td> {message exchange pattern}</td>
<td> <id> wsdl:messageExchangePattern <pattern> . </td>
</tr>
<tr>
<td> {style}</td>
<td> <em>(for each style URI)</em><br/>
<id> wsdl:operationStyle <style> .</td>
</tr>
</tbody>
</table>
</div>
<br />
<div class="mappingtable">
<table cellpadding="4" width="100%" border="1">
<caption><a id="table2-5">Table 2-5.</a> Mapping Interface Fault
Components to RDF</caption>
<col width="20%" /><col width="80%" />
<tbody>
<tr>
<th>Property</th>
<th>RDF Form</th>
</tr>
<tr>
<td> </td>
<td> <em>(id generated per <a href="http://www.w3.org/TR/wsdl20/#wsdl-iri-references">IRI-References for WSDL 2.0 Components</a>)</em><br/>
<id> rdf:type wsdl:InterfaceFault .<br/>
<parentInterfaceId> wsdl:interfaceFault <id> .</td>
</tr>
<tr>
<td> {name}</td>
<td> <id> rdfs:label "<localPart>" .</td>
</tr>
<tr>
<td> {element declaration}</td>
<td> <id> wsdl:elementDeclaration <qnameId> .<br/>
<em>(for qname mapping see <a href="#table2-2">Table 2-2</a>)</em> </td>
</tr>
<tr>
<td> {message content model}</td>
<td> <em>(for "#any")</em> <id> wsdl:messageContentModel wsdl:AnyContent .<br/>
<em>(for "#none")</em> <id> wsdl:messageContentModel wsdl:NoContent .<br/>
<em>(for "#other")</em> <id> wsdl:messageContentModel wsdl:OtherContent .<br/>
<em>(for "#element")</em> <id> wsdl:messageContentModel wsdl:ElementContent .</td>
</tr>
</tbody>
</table>
</div>
<br />
<div class="mappingtable">
<table cellpadding="4" width="100%" border="1">
<caption><a id="table2-6">Table 2-6.</a> Mapping Interface Message Reference
Components to RDF</caption>
<col width="20%" /><col width="80%" />
<tbody>
<tr>
<th>Property</th>
<th>RDF Form</th>
</tr>
<tr>
<td> </td>
<td> <em>(id generated per <a href="http://www.w3.org/TR/wsdl20/#wsdl-iri-references">IRI-References for WSDL 2.0 Components</a>)</em><br/>
<id> rdf:type wsdl:InterfaceMessageReference .<br/>
<parentInterfaceOpId> wsdl:interfaceMessageReference <id> .</td>
</tr>
<tr>
<td> {element declaration}</td>
<td> <id> wsdl:elementDeclaration <qnameId> .<br/>
<em>(for qname mapping see <a href="#table2-2">Table 2-2</a>)</em> </td>
</tr>
<tr>
<td> {direction}</td>
<td> <em>(for "in")</em> <id> rdf:type wsdl:InputMessage .<br/>
<em>(for "out")</em> <id> rdf:type wsdl:OutputMessage .</td>
</tr>
<tr>
<td> {message content model}</td>
<td> <em>(for "#any")</em> <id> wsdl:messageContentModel wsdl:AnyContent .<br/>
<em>(for "#none")</em> <id> wsdl:messageContentModel wsdl:NoContent .<br/>
<em>(for "#other")</em> <id> wsdl:messageContentModel wsdl:OtherContent .<br/>
<em>(for "#element")</em> <id> wsdl:messageContentModel wsdl:ElementContent .</td>
</tr>
<tr>
<td> {message label}</td>
<td> <id> wsdl:messageLabel <label> .<br/>
<em>(label as defined by the message exchange pattern's mapping to RDF, see <a href="#meps">section 2.3</a>)</em></td>
</tr>
</tbody>
</table>
</div>
<br />
<div class="mappingtable">
<table cellpadding="4" width="100%" border="1">
<caption><a id="table2-7">Table 2-7.</a> Mapping Interface Fault Reference
Components to RDF</caption>
<col width="20%" /><col width="80%" />
<tbody>
<tr>
<th>Property</th>
<th>RDF Form</th>
</tr>
<tr>
<td> </td>
<td> <em>(id generated per <a href="http://www.w3.org/TR/wsdl20/#wsdl-iri-references">IRI-References for WSDL 2.0 Components</a>)</em><br/>
<id> rdf:type wsdl:InterfaceFaultReference .<br/>
<parentInterfaceOpId> wsdl:interfaceFaultReference <id> .</td>
</tr>
<tr>
<td> {interface fault}</td>
<td> <id> wsdl:interfaceFault <faultId> .<br/>
<em>(for interface fault mapping see <a href="#table2-5">Table 2-5</a>)</em></td>
</tr>
<tr>
<td> {direction}</td>
<td> <em>(for "in")</em> <id> rdf:type wsdl:InputMessage .<br/>
<em>(for "out")</em> <id> rdf:type wsdl:OutputMessage .</td>
</tr>
<tr>
<td> {message label}</td>
<td> <id> wsdl:messageLabel <label> .<br/>
<em>(label as defined by the message exchange pattern's mapping to RDF, see <a href="#meps">section 2.3</a>)</em></td>
</tr>
</tbody>
</table>
</div>
<h4 id="binding">2.1.3 Binding classes</h4>
<p><a href="http://www.w3.org/TR/wsdl20/#Binding">WSDL binding components</a> are represented in RDF as instances of the class
<code class="wsdl-rdf">Binding</code>. To indicate a particular interface for which binding
information is specified with this WSDL binding, the particular
<code class="wsdl-rdf">Interface</code> instance is pointed to using the property
<code class="wsdl-rdf">binds</code>. Binding types (for example SOAP binding or HTTP
binding, as specified in [<a href="#WSDL-PART2">WSDL 2.0 Adjuncts</a>]) are themselves
classes in RDF, so a binding type is indicated by belonging to the
appropriate class (using the property <code class="wsdl-rdf">rdf:type</code>).</p>
<p>Every binding component has a name, which is a QName. The
namespace IRI part of this QName is present before the fragment ID of the
component identifier, and the local name is represented in the RDF form as a
literal value of the property <code class="wsdl-rdf">rdfs:label</code>.</p>
<p>As the structure of bindings follows the structure of interfaces, we
represent binding operations and faults using the classes
<code class="wsdl-rdf">BindingOperation</code> and <code class="wsdl-rdf">BindingFault</code> respectively. The
<code class="wsdl-rdf">Binding</code> points to them using the similarly named properties
<code class="wsdl-rdf">bindingOperation</code> and <code class="wsdl-rdf">bindingFault</code>. Binding
operations further contain message and fault references, represented as
instances of the classes <code class="wsdl-rdf">BindingMessageReference</code> and
<code class="wsdl-rdf">BindingFaultReference</code>, and pointed to by the properties
<code class="wsdl-rdf">bindingMessageReference</code> and
<code class="wsdl-rdf">bindingFaultReference</code>.</p>
<p>Within this structure, each component points to the appropriate component
from the interface structure, i.e. <code class="wsdl-rdf">BindingOperation</code> instances point to <code class="wsdl-rdf">InterfaceOperation</code> instances,
<code class="wsdl-rdf">BindingFault</code> instances point to <code class="wsdl-rdf">InterfaceFault</code> instances and <code class="wsdl-rdf">BindingMessageReference</code>
and <code class="wsdl-rdf">BindingFaultReference</code> instances point to <code class="wsdl-rdf">InterfaceMessageReference</code> and <code class="wsdl-rdf">InterfaceFaultReference</code> instances.
To provide these pointers, we use the property <code class="wsdl-rdf">binds</code> between the
pairs of components.</p>
<p>Finally, each component is supposed to contain extensions that provide the
actual binding information. For the description of handling such extensions
see <a href="#extensions">section 2.2</a> and for the specific bindings
included in WSDL 2.0 specification, see sections <a href="#soapbinding">2.6</a>
and <a href="#httpbinding">2.7</a>.</p>
<div class="mappingtable">
<table cellpadding="4" width="100%" border="1">
<caption><a id="table2-8">Table 2-8.</a> Mapping Binding
Components to RDF</caption>
<col width="20%" /><col width="80%" />
<tbody>
<tr>
<th>Property</th>
<th>RDF Form</th>
</tr>
<tr>
<td> </td>
<td> <em>(id generated per <a href="http://www.w3.org/TR/wsdl20/#wsdl-iri-references">IRI-References for WSDL 2.0 Components</a>)</em><br/>
<id> rdf:type wsdl:Binding .<br/>
<parentDescriptionId> wsdl:binding <id> .</td>
</tr>
<tr>
<td> {name}</td>
<td> <id> rdfs:label "<localPart>" .</td>
</tr>
<tr>
<td> {interface}</td>
<td> <id> wsdl:binds <interfaceId> .</td>
</tr>
<tr>
<td> {type}</td>
<td> <id> rdf:type <type> .</td>
</tr>
<tr>
<td> {binding operations}</td>
<td> <em>(for binding operation mapping see <a href="#table2-9">Table 2-9</a>)</em> </td>
</tr>
<tr>
<td> {binding faults}</td>
<td> <em>(for binding fault mapping see <a href="#table2-10">Table 2-10</a>)</em> </td>
</tr>
</tbody>
</table>
</div>
<br />
<div class="mappingtable">
<table cellpadding="4" width="100%" border="1">
<caption><a id="table2-9">Table 2-9.</a> Mapping Binding Operation
Components to RDF</caption>
<col width="20%" /><col width="80%" />
<tbody>
<tr>
<th>Property</th>
<th>RDF Form</th>
</tr>
<tr>
<td> </td>
<td> <em>(id generated per <a href="http://www.w3.org/TR/wsdl20/#wsdl-iri-references">IRI-References for WSDL 2.0 Components</a>)</em><br/>
<id> rdf:type wsdl:BindingOperation .<br/>
<parentBindingId> wsdl:bindingOperation <id> .</td>
</tr>
<tr>
<td> {interface operation}</td>
<td> <id> wsdl:binds <interfaceOpId> .</td>
</tr>
<tr>
<td> {binding message references}</td>
<td> <em>(for binding message reference mapping see <a href="#table2-11">Table 2-11</a>)</em> </td>
</tr>
<tr>
<td> {binding fault references}</td>
<td> <em>(for binding fault reference mapping see <a href="#table2-12">Table 2-12</a>)</em> </td>
</tr>
</tbody>
</table>
</div>
<br />
<div class="mappingtable">
<table cellpadding="4" width="100%" border="1">
<caption><a id="table2-10">Table 2-10.</a> Mapping Binding Fault
Components to RDF</caption>
<col width="20%" /><col width="80%" />
<tbody>
<tr>
<th>Property</th>
<th>RDF Form</th>
</tr>
<tr>
<td> </td>
<td> <em>(id generated per <a href="http://www.w3.org/TR/wsdl20/#wsdl-iri-references">IRI-References for WSDL 2.0 Components</a>)</em><br/>
<id> rdf:type wsdl:BindingFault .<br/>
<parentBindingId> wsdl:bindingFault <id> .</td>
</tr>
<tr>
<td> {interface fault}</td>
<td> <id> wsdl:binds <interfaceFaultId> .</td>
</tr>
</tbody>
</table>
</div>
<br />
<div class="mappingtable">
<table cellpadding="4" width="100%" border="1">
<caption><a id="table2-11">Table 2-11.</a> Mapping Binding Message Reference
Components to RDF</caption>
<col width="20%" /><col width="80%" />
<tbody>
<tr>
<th>Property</th>
<th>RDF Form</th>
</tr>
<tr>
<td> </td>
<td> <em>(id generated per <a href="http://www.w3.org/TR/wsdl20/#wsdl-iri-references">IRI-References for WSDL 2.0 Components</a>)</em><br/>
<id> rdf:type wsdl:BindingMessageReference .<br/>
<parentBindingOperationId> wsdl:bindingMessageReference <id> .</td>
</tr>
<tr>
<td> {interface message reference}</td>
<td> <id> wsdl:binds <interfaceMessageReferenceId> .</td>
</tr>
</tbody>
</table>
</div>
<br />
<div class="mappingtable">
<table cellpadding="4" width="100%" border="1">
<caption><a id="table2-12">Table 2-12.</a> Mapping Binding Fault Reference
Components to RDF</caption>
<col width="20%" /><col width="80%" />
<tbody>
<tr>
<th>Property</th>
<th>RDF Form</th>
</tr>
<tr>
<td> </td>
<td> <em>(id generated per <a href="http://www.w3.org/TR/wsdl20/#wsdl-iri-references">IRI-References for WSDL 2.0 Components</a>)</em><br/>
<id> rdf:type wsdl:BindingFaultReference .<br/>
<parentBindingOperationId> wsdl:bindingFaultReference <id> .</td>
</tr>
<tr>
<td> {interface fault reference}</td>
<td> <id> wsdl:binds <interfaceFaultReferenceId> .</td>
</tr>
</tbody>
</table>
</div>
<h4 id="service">2.1.4 Service classes</h4>
<p>WSDL services are represented in RDF as instances of the class
<code class="wsdl-rdf">Service</code>. Each instance points to a single interface; for
this purpose we reuse the property <code class="wsdl-rdf">implements</code>. Also, each service
has one or more endpoints, to which it points using the property
<code class="wsdl-rdf">endpoint</code>.</p>
<p>Services have a name, which is a QName. The namespace URI part of this
QName is present before the fragment ID of the component identifier, and the
local name is represented in the RDF form as a literal value of the property
<code class="wsdl-rdf">rdfs:label</code>. Similarly, endpoints have a name,
which is an NCName. Its value is also represented in the RDF form as a
literal value of the property <code class="wsdl-rdf">rdfs:label</code>.</p>
<p>Endpoints are represented as instances of the class <code class="wsdl-rdf">Endpoint</code>,
with two notable properties: a mandatory single <code class="wsdl-rdf">usesBinding</code> property points to
the binding used by this endpoint, and an optional single <code class="wsdl-rdf">address</code>
points to the network resource which actually offers the service.</p>
<div class="mappingtable">
<table cellpadding="4" width="100%" border="1">
<caption><a id="table2-13">Table 2-13.</a> Mapping Service
Components to RDF</caption>
<col width="20%" /><col width="80%" />
<tbody>
<tr>
<th>Property</th>
<th>RDF Form</th>
</tr>
<tr>
<td> </td>
<td> <em>(id generated per <a href="http://www.w3.org/TR/wsdl20/#wsdl-iri-references">IRI-References for WSDL 2.0 Components</a>)</em><br/>
<id> rdf:type wsdl:Service .<br/>
<parentDescriptionId> wsdl:service <id> .</td>
</tr>
<tr>
<td> {name}</td>
<td> <id> rdfs:label "<localPart>" .</td>
</tr>
<tr>
<td> {interface}</td>
<td> <id> wsdl:implements <interfaceId> .</td>
</tr>
<tr>
<td> {endpoints}</td>
<td> <em>(for endpoint mapping see <a href="#table2-14">Table 2-14</a>)</em> </td>
</tr>
</tbody>
</table>
</div>
<br />
<div class="mappingtable">
<table cellpadding="4" width="100%" border="1">
<caption><a id="table2-14">Table 2-14.</a> Mapping Endpoint
Components to RDF</caption>
<col width="20%" /><col width="80%" />
<tbody>
<tr>
<th>Property</th>
<th>RDF Form</th>
</tr>
<tr>
<td> </td>
<td> <em>(id generated per <a href="http://www.w3.org/TR/wsdl20/#wsdl-iri-references">IRI-References for WSDL 2.0 Components</a>)</em><br/>
<id> rdf:type wsdl:Endpoint .<br/>
<parentServiceId> wsdl:endpoint <id> .</td>
</tr>
<tr>
<td> {name}</td>
<td> <id> rdfs:label "<name>" .</td>
</tr>
<tr>
<td> {binding}</td>
<td> <id> wsdl:usesBinding <bindingId> .</td>
</tr>
<tr>
<td> {address}</td>
<td> <id> wsdl:address <address> .</td>
</tr>
</tbody>
</table>
</div>
<h3 id="extensions">2.2 Handling Extensions and Documentation</h3>
<p>In order to enable evolution and reusability of the language, WSDL 2.0
allows extensions on all components. In fact, there are two types of
extensibility in WSDL 2.0: explicit extension points, and XML-based
extensions.</p>
<p>Extension points are those places in WSDL where a number of options is
defined by the WSDL 2.0 specification, but the list is open. For example,
interface operations follow message exchange patterns (MEPs), and while
WSDL 2.0 provides some predefined MEPs, new ones can be specified by WSDL 2.0 users.
Similarly, WSDL 2.0 specifies two bindings (SOAP and HTTP), but more bindings
are expected to be specified in the future, either by the WS-Description
Working Group or by any interested third parties. Often, extension points use
URIs to refer to the various options, and these URIs are then reflected in
the RDF form as the appropriate property values. Additionally, some of the
extensions also introduce data that would be useful in the RDF
representation, in which case it is the responsibility of the extension
designers to describe their mappings to RDF. This document describes the
mapping of the extensions defined together with the WSDL 2.0 specification.
</p>
<p>Apart from the envisioned extensibility points, WSDL 2.0 allows the XML WSDL
documents to contain any "foreign" elements and attributes, so that
any extensions, even ones that change the core WSDL semantics, can
also be realized.
The actual meaning of general WSDL extensions is, by definition, unknown to the
core WSDL specification, and it is equally unknown to the RDF mapping (apart
from the predefined extensions coming with WSDL 2.0, whose mapping to
RDF is described in the following sections). Therefore
every extension should specify how it is mapped to RDF. For example, the SOAP
and HTTP bindings in WSDL 2.0 add many properties to the core binding
components and this document defines how these particular properties are
expressed in RDF. The mapping of WSDL extensions to RDF therefore depends on the
understanding of those extensions.</p>
<p>In WSDL 2.0, extensions can be marked as mandatory (or required).
Such extensions may alter the semantics of the extended components in ways
that invalidate the existing semantics. Since the RDF representation of WSDL
intends to represent the semantics of the WSDL data, components with required
extensions will be mapped to RDF according to the rules of the extension, not
according to the rules specified in this document. If a processor that does
the mapping of a WSDL document to RDF does not understand a particular
mandatory extension (in other words, when it encounters an <em>unknown
mandatory</em> extension, it cannot map the component that contains that extension
into any generic RDF representation, in other words the component will not be
present in the resulting RDF data. This is to avoid confusing processors that
do not understand a mandatory extension — RDF encourages the principle
of ignoring the unknown parts of an RDF graph (partial understanding) and
there is no agreed mechanism of marking some parts as mandatory, therefore if
we decided to map the known WSDL according to our rules above, the potential
changes introduced by the mandatory unknown extensions could be ignored by
some RDF processors, which would violate the way WSDL considers them
mandatory.</p>
<p>Unknown <em>optional</em> extensions also cannot be mapped to RDF with any
mapping rules defined in this document, because their meaning is unknown.
However, the parent component is mapped into RDF as though the unknown
optional extension was not present at all. Effectively, this WSDL RDF mapping
ignores unknown optional extensions.</p>
<p>In addition to the extensions, all WSDL XML elements can also contain
documentation. Such documentation can consist of human-readable text or
machine-processible elements and attributes, but it is not modeled in more
detail in WSDL 2.0. This WSDL RDF mapping does not represent
documentation in the resulting RDF graph, because it would be an XML literal
with no explicit meaning, and the XML literal would not be readable enough to
serve the purpose of human-readable description.</p>
<h3 id="meps">2.3 Message Exchange Patterns</h3>
<p>WSDL 2.0 defines an extensible set of <a
href="http://www.w3.org/TR/wsdl20/#MessageExchangePattern">message exchange
patterns</a> (MEPs). There are 8 predefined MEPs (three in [<a href="#WSDL-PART2">WSDL 2.0 Adjuncts</a>] and five in [<a
href="#WSDL-MEPS">WSDL 2.0 Additional MEPs</a>]), each following one of the
three predefined fault propagation rules. Every WSDL MEP defines a set of
message labels by which message references in operations can position
themselves within the pattern.</p>
<p>In the RDF representation of WSDL, message exchange patterns are
represented as instances of the class <code class="wsdl-rdf">MessageExchangePattern</code>.
The three predefined fault propagation rules are disjoint subclasses of that
class, named <code class="wsdl-rdf">NoFaults</code>, <code class="wsdl-rdf">FaultReplacesMessage</code> and
<code class="wsdl-rdf">MessageTriggersFault</code>.</p>
<p>All MEPs are identified by IRIs, and the RDF ontology for WSDL assigns classes to
MEPs; for example
<code>http://www.w3.org/ns/wsdl/in-only</code> is an instance of the
class <code class="wsdl-rdf">NoFaults</code>. The message labels, however, are plain string
names, and the RDF ontology for WSDL gives each of them an IRI formed by the
MEP IRI, the hash sign '#' and the actual message label, and these IRIs are
referenced from the MEPs with the property <code class="wsdl-rdf">definesMessageLabel</code>.
Any newly created MEPs should also provide IRIs for the message labels, as
the RDF mapping depends on being able to identify the message labels on
interface message references.</p>
<p>The following mapping table only shows the message label URIs defined by
the WSDL ontology for the message labels defined by the message exchange
patterns from [<a href="#WSDL-PART2">WSDL 2.0 Adjuncts</a>] and [<a
href="#WSDL-MEPS">WSDL 2.0 Additional MEPs</a>].</p>
<div class="mappingtable">
<table cellpadding="4" width="100%" border="1">
<caption><a id="table2-15">Table 2-15.</a> Mapping Message Exchange Pattern Labels to RDF</caption>
<tbody>
<tr>
<th>MEP</th>
<th>Label</th>
<th>Label URI</th>
</tr>
<tr>
<td>In-Only</td>
<td>In</td>
<td>http://www.w3.org/ns/wsdl/in-only#In</td>
</tr>
<tr>
<td>Robust In-Only</td>
<td>In</td>
<td>http://www.w3.org/ns/wsdl/robust-in-only#In</td>
</tr>
<tr>
<td rowspan="2">In-Out</td>
<td>In</td>
<td>http://www.w3.org/ns/wsdl/in-out#In</td>
</tr>
<tr>
<td>Out</td>
<td>http://www.w3.org/ns/wsdl/in-out#Out</td>
</tr>
<tr>
<td rowspan="2">In-Optional-Out</td>
<td>In</td>
<td>http://www.w3.org/ns/wsdl/in-opt-out#In</td>
</tr>
<tr>
<td>Out</td>
<td>http://www.w3.org/ns/wsdl/in-opt-out#Out</td>
</tr>
<tr>
<td>Out-Only</td>
<td>Out</td>
<td>http://www.w3.org/ns/wsdl/out-only#Out</td>
</tr>
<tr>
<td>Robust Out-Only</td>
<td>Out</td>
<td>http://www.w3.org/ns/wsdl/robust-out-only#Out</td>
</tr>
<tr>
<td rowspan="2">Out-In</td>
<td>Out</td>
<td>http://www.w3.org/ns/wsdl/out-in#Out</td>
</tr>
<tr>
<td>In</td>
<td>http://www.w3.org/ns/wsdl/out-in#In</td>
</tr>
<tr>
<td rowspan="2">Out-Optional-In</td>
<td>Out</td>
<td>http://www.w3.org/ns/wsdl/out-opt-in#Out</td>
</tr>
<tr>
<td>In</td>
<td>http://www.w3.org/ns/wsdl/out-opt-in#In</td>
</tr>
</tbody>
</table>
</div>
<h3 id="predefined_extensions">2.4 Predefined Extensions</h3>
<p>WSDL 2.0 Adjuncts contain a single predefined extension, called Operation
Safety, which adds a property to interface operation components to indicate
whether an interface operation is known to be safe in terms of [<a
href="#webarch">Web Architecture</a>].</p>
<p>In the RDF representation of WSDL, we introduce the class <code
class="wsdl-rdf">SafeInteraction</code>, and we use the Semantic Annotations
for WSDL and XML Schema ([<a href="#SAWSDL">SAWSDL</a>]) property
modelReference to annotate any <code
class="wsdl-rdf">InterfaceOperation</code> instance that is asserted to be
safe.</p>
<p><b>Note:</b> the fact that the SAWSDL modelReference RDF property is used
in this WSDL RDF mapping <b>does not</b> introduce the dependency that WSDL
processors or WSDL RDF mapping implementations would need to understand the SAWSDL
extension.</p>
<div class="mappingtable">
<table cellpadding="4" width="100%" border="1">
<caption><a id="table2-16">Table 2-16.</a> Mapping Interface Operation
Components with Safety to RDF</caption>
<col width="20%" /><col width="80%" />
<tbody>
<tr>
<th>Property</th>
<th>RDF Form</th>
</tr>
<tr>
<td> {safety}</td>
<td> <em>(only if true)</em> <operationId> sawsdl:modelReference wsdlx:SafeInteraction .</td>
</tr>
</tbody>
</table>
</div>
<h3 id="opstyles">2.5 Operation Styles</h3>
<p>WSDL 2.0 predefines 3 operation styles — RPC style, IRI style and
Multipart style. These styles are identified with their IRIs, which are, in the RDF
ontology, instances of the class <code class="wsdl-rdf">OperationStyle</code>.</p>
<p>The RPC style additionally introduces the property {rpc signature},
which is represented in RDF as a sequence of arguments, indicating the
direction and element qname. The <code class="wsdl-rdf">signature</code>
property can be attached to interface operations that follow the RPC style to
indicate the parameter order for the operation. The property points to an
instance of the class <code class="wsdl-rdf">Signature</code> (subclass of
<code class="wsdl-rdf">rdf:Seq</code>); and every member represents an
argument specification. Each argument uses the property <code
class="wsdl-rdf">elementDeclaration</code> to specify an element, and the
<code class="wsdl-rdf">rdf:type</code> of an argument indicates its direction
(one of the classes <code class="wsdl-rdf">InArgument</code>, <code
class="wsdl-rdf">OutArgument</code>, <code
class="wsdl-rdf">InOutArgument</code>, <code
class="wsdl-rdf">ReturnArgument</code>). </p>
<div class="mappingtable">
<table cellpadding="4" width="100%" border="1">
<caption><a id="table2-17">Table 2-17.</a> Mapping Interface Operation
Components with RPC Signature to RDF</caption>
<col width="20%" /><col width="80%" />
<tbody>
<tr>
<th>Property</th>
<th>RDF Form</th>
</tr>
<tr>
<td> {rpc signature}</td>
<td> <operationId> wrpc:signature <sigId> . <br/>
<sigId> rdf:type wrpc:Signature .<br/>
<em>(sigId is a newly generated unique URI)</em><br/>
<em>(for each argument/direction pair)</em> <sigId> rdf:_nnn <argId> .<br/><br/>
<em>(argId is a newly generated unique URI)</em><br/>
<em>(_nnn starts from _1 and the number is increased by 1 for each argument)</em><br/>
<em>(for #in arguments)</em> <argId> rdf:type wrpc:InArgument .<br/>
<em>(for #out arguments)</em> <argId> rdf:type wrpc:OutArgument .<br/>
<em>(for #inout arguments)</em> <argId> rdf:type wrpc:InOutArgument .<br/>
<em>(for #return arguments)</em> <argId> rdf:type wrpc:ReturnArgument .<br/>
<argId> wsdl:elementDeclaration <qnameId> .<br/>
<em>(for qname mapping see <a href="#table2-2">Table 2-2</a>)</em></td>
</tr>
</tbody>
</table>
</div>
<h3 id="soapbinding">2.6 SOAP Binding</h3>
<p>WSDL bindings that bind to SOAP are identified (using the property
<code class="wsdl-rdf">rdf:type</code>) as instances of the class
<code>http://www.w3.org/ns/wsdl/soap</code>. Every such binding
indicates the SOAP version that it uses, this is done with the property
<code class="wsdl-rdf">version</code> (with a value "1.2", for example, meaning SOAP version
1.2). Every binding also specifies with the property <code class="wsdl-rdf">protocol</code>
the underlying protocol that is uses.</p>
<p>Each SOAP binding operation specifies the SOAP message exchange pattern
it uses — the appropriate URI from the SOAP specification is pointed to
using the property <code class="wsdl-rdf">soapMEP</code>. The range of this
property is the SOAP 1.2 class <code
class="wsdl-rdf">http://www.w3.org/2006/02/soap12/abstractions#classOfMEPs</code>
that contains all the SOAP
MEPs. Some bindings (especially those that are not specific to any interface)
will rely on defaulting to set the SOAP message exchange pattern, this
default is captured using the property <code class="wsdl-rdf">defaultSoapMEP</code>.</p>
<p>SOAP binding operations can additionally specify the value of the action parameter
(known as SOAP action) for the initial message, using the property
<code class="wsdl-rdf">action</code>.</p>
<p>Binding faults in the SOAP binding can specify two properties —
fault code and fault subcodes. Both fault code and subcodes are QNames, and
they are pointed to using the properties <code class="wsdl-rdf">faultCode</code> and
<code class="wsdl-rdf">faultSubcodes</code>. The latter points to an RDF
sequence (<code class="wsdl-rdf">rdf:Seq</code>) which contains all the
subcodes.</p>
<p>At any level within a SOAP binding, components can declare the use of a
SOAP module. Required modules are pointed to using the property
<code class="wsdl-rdf">requiresSOAPModule</code> and optional modules are pointed to using the
property <code class="wsdl-rdf">offersSOAPModule</code> — both of these properties point
directly from the parent component to the SOAP module, as identified by its
URI (parameter {ref} of the SOAP Module component).</p>
<p>Message references and faults in SOAP bindings can further declare that
they require or offer a specific SOAP headers. To do this, the properties
<code class="wsdl-rdf">requiresHeader</code> and <code class="wsdl-rdf">offersHeader</code> can point to an instance of
the class <code class="wsdl-rdf">SOAPHeaderBlock</code>, which then uses the property
<code class="wsdl-rdf">elementDeclaration</code> to specify the exact element that represents
the header. Instances of <code class="wsdl-rdf">SOAPHeaderBlock</code> can also belong to the class
<code class="wsdl-rdf">MustUnderstandSOAPHeaderBlock</code>, which means that this SOAP header will
be marked as mandatory (mustUnderstand="true") in the message.</p>
<p>Apart from these SOAP-binding-specific properties, the SOAP binding reuses
underlying protocol properties, for example some HTTP binding properties when
the underlying protocol is HTTP. The following section describes the HTTP
binding properties.</p>
<div class="mappingtable">
<table cellpadding="4" width="100%" border="1">
<caption><a id="table2-18">Table 2-18.</a> Mapping SOAP Binding
Components to RDF</caption>
<col width="20%" /><col width="80%" />
<tbody>
<tr>
<th>Property</th>
<th>RDF Form</th>
</tr>
<tr>
<td> {soap mep default}</td>
<td> <bindingId> wsoap:defaultSoapMEP <pattern> .</td>
</tr>
<tr>
<td> {soap underlying protocol}</td>
<td> <bindingId> wsoap:protocol <protocol> .</td>
</tr>
<tr>
<td> {soap version}</td>
<td> <bindingId> wsoap:version "<version>" .</td>
</tr>
<tr>
<td> {soap modules}</td>
<td> <em>(for soap module mapping see <a href="#table2-23">Table 2-23</a>)</em> </td>
</tr>
</tbody>
</table>
</div>
<br />
<div class="mappingtable">
<table cellpadding="4" width="100%" border="1">
<caption><a id="table2-19">Table 2-19.</a> Mapping SOAP Binding Operation
Components to RDF</caption>
<col width="20%" /><col width="80%" />
<tbody>
<tr>
<th>Property</th>
<th>RDF Form</th>
</tr>
<tr>
<td> {soap action}</td>
<td> <bindingOpId> wsoap:action <action> .</td>
</tr>
<tr>
<td> {soap mep}</td>
<td> <bindingOpId> wsoap:soapMEP <pattern> .</td>
</tr>
<tr>
<td> {soap modules}</td>
<td> <em>(for soap module mapping see <a href="#table2-23">Table 2-23</a>)</em> </td>
</tr>
</tbody>
</table>
</div>
<br />
<div class="mappingtable">
<table cellpadding="4" width="100%" border="1">
<caption><a id="table2-20">Table 2-20.</a> Mapping SOAP Binding Fault
Components to RDF</caption>
<col width="20%" /><col width="80%" />
<tbody>
<tr>
<th>Property</th>
<th>RDF Form</th>
</tr>
<tr>
<td> {soap fault code}</td>
<td> <em>(only if not "#any")</em> <bindingFaultId> wsoap:faultCode <qnameId> .<br/>
<em>(for qname mapping see <a href="#table2-2">Table 2-2</a>)</em></td>
</tr>
<tr>
<td> {soap fault subcodes}</td>
<td> <em>(only if not "#any")</em> <br/>
<bindingFaultId> wsoap:faultSubcodes <subId> .<br/>
<subId> rdf:type rdf:Seq .<br/>
<em>(for each subcode)</em> <subId> rdf:_nnn <qnameId> .<br/><br/>
<em>(subId is a newly generated unique URI)</em><br/>
<em>(_nnn starts from _1 and the number is increased by 1 for each subcode)</em><br/>
<em>(for qname mapping see <a href="#table2-2">Table 2-2</a>)</em></td>
</tr>
<tr>
<td> {soap modules}</td>
<td> <em>(for soap module mapping see <a href="#table2-23">Table 2-23</a>)</em> </td>
</tr>
<tr>
<td> {soap headers}</td>
<td> <em>(for soap header block mapping see <a href="#table2-24">Table 2-24</a>)</em> </td>
</tr>
</tbody>
</table>
</div>
<br />
<div class="mappingtable">
<table cellpadding="4" width="100%" border="1">
<caption><a id="table2-21">Table 2-21.</a> Mapping SOAP Binding Message Reference
Components to RDF</caption>
<col width="20%" /><col width="80%" />
<tbody>
<tr>
<th>Property</th>
<th>RDF Form</th>
</tr>
<tr>
<td> {soap modules}</td>
<td> <em>(for soap module mapping see <a href="#table2-23">Table 2-23</a>)</em> </td>
</tr>
<tr>
<td> {soap headers}</td>
<td> <em>(for soap header block mapping see <a href="#table2-24">Table 2-24</a>)</em> </td>
</tr>
</tbody>
</table>
</div>
<br />
<div class="mappingtable">
<table cellpadding="4" width="100%" border="1">
<caption><a id="table2-22">Table 2-22.</a> Mapping SOAP Binding Fault Reference
Components to RDF</caption>
<col width="20%" /><col width="80%" />
<tbody>
<tr>
<th>Property</th>
<th>RDF Form</th>
</tr>
<tr>
<td> {soap modules}</td>
<td> <em>(for soap module mapping see <a href="#table2-23">Table 2-23</a>)</em> </td>
</tr>
</tbody>
</table>
</div>
<br />
<div class="mappingtable">
<table cellpadding="4" width="100%" border="1">
<caption><a id="table2-23">Table 2-23.</a> Mapping SOAP Module Components to RDF</caption>
<col width="20%" /><col width="80%" />
<tbody>
<tr>
<th>Property</th>
<th>RDF Form</th>
</tr>
<tr>
<td> {ref}</td>
<td> <em>(value used below)</em> </td>
</tr>
<tr>
<td> {required}</td>
<td> <em>(for required)</em> <parentComponentId> wsoap:requiresSOAPModule <ref> .<br/>
<em>(for not required)</em> <parentComponentId> wsoap:offersSOAPModule <ref> .</td>
</tr>
</tbody>
</table>
</div>
<br />
<div class="mappingtable">
<table cellpadding="4" width="100%" border="1">
<caption><a id="table2-24">Table 2-24.</a> Mapping SOAP Header Block Components to RDF</caption>
<col width="20%" /><col width="80%" />
<tbody>
<tr>
<th>Property</th>
<th>RDF Form</th>
</tr>
<tr>
<td> </td>
<td> <em>(id generated per <a href="http://www.w3.org/TR/wsdl20-adjuncts/#soap-headers-decl-fragid">IRI Identification Of A SOAP Header Block component</a>)</em><br/>
<id> rdf:type wsoap:SOAPHeaderBlock .</td>
</tr>
<tr>
<td> {required}</td>
<td> <em>(for required)</em> <parentComponentId> wsoap:requiresHeader <id> .<br/>
<em>(for not required)</em> <parentComponentId> wsoap:offersHeader <id> .</td>
</tr>
<tr>
<td> {mustUnderstand}</td>
<td> <em>(only if true)</em> <id> rdf:type wsoap:MustUnderstandSOAPHeaderBlock .</td>
</tr>
<tr>
<td> {element declaration}</td>
<td> <id> wsdl:elementDeclaration <qnameId> .<br/>
<em>(for qname mapping see <a href="#table2-2">Table 2-2</a>)</em> </td>
</tr>
</tbody>
</table>
</div>
<h3 id="httpbinding">2.7 HTTP Binding</h3>
<p>WSDL bindings that bind to HTTP are identified as instances of the class
<code>http://www.w3.org/ns/wsdl/http</code>.</p>
<p>The HTTP bindings that make use of HTTP cookies, as well as other bindings
that reuse HTTP and use cookies, are further identified as instances of the
class <code class="wsdl-rdf">BindingUsingHTTPCookies</code>. </p>
<p>HTTP binding operations can specify a number of HTTP parameters:
operation-specific location (and what to do with parameters that are not
serialized in it — <i>ignore uncited</i>), HTTP method, input and output and fault
serialization, and query parameter separator. These parameters are
represented in RDF with the properties <code class="wsdl-rdf">location</code>, <code class="wsdl-rdf">locationIgnoreUncited</code>,
<code class="wsdl-rdf">method</code>, <code class="wsdl-rdf">inputSerialization</code>,
<code class="wsdl-rdf">outputSerialization</code>, <code class="wsdl-rdf">faultSerialization</code> and
<code class="wsdl-rdf">queryParameterSeparator</code>. The HTTP method and query parameter
separator can also be specified on the binding level as defaults, especially
in bindings that are not specific to any particular interface. Those defaults
are preserved using properties <code class="wsdl-rdf">defaultMethod</code> and
<code class="wsdl-rdf">defaultQueryParameterSeparator</code>. The values of all these properties
are literals, same as in the XML syntax of WSDL.</p>
<p>Message references and faults in an HTTP binding can specify the use of
extra HTTP headers. Required headers are pointed to using the property
<code class="wsdl-rdf">requiresHeader</code>, whereas optional headers are referenced using the
property <code class="wsdl-rdf">offersHeader</code>. Both properties point to an instance of the
class <code class="wsdl-rdf">HTTPHeader</code>. Each <code class="wsdl-rdf">HTTPHeader</code> instance has a property
<code class="wsdl-rdf">headerName</code> that specifies the name of the header, and a property
<code class="wsdl-rdf">typeDefinition</code> which defines the simple type of the header
value.</p>
<p>Message references and faults
can also specify the content encoding using the property
<code class="wsdl-rdf">contentEncoding</code> with a literal string value, as in the XML
representation; and binding operations or even bindings may define the
default content encoding values using the property
<code class="wsdl-rdf">defaultContentEncoding</code>. Finally, faults can further specify the HTTP
status code they will be accompanies with, using the property
<code class="wsdl-rdf">errorCode</code>.</p>
<p>Service endpoints that use an HTTP binding can specify access authentication
parameters, in particular authentication scheme and realm. These parameters are
reflected with the properties <code class="wsdl-rdf">authenticationScheme</code> and
<code class="wsdl-rdf">authenticationRealm</code> with string values.</p>
<div class="mappingtable">
<table cellpadding="4" width="100%" border="1">
<caption><a id="table2-25">Table 2-25.</a> Mapping HTTP Binding
Components to RDF</caption>
<col width="20%" /><col width="80%" />
<tbody>
<tr>
<th>Property</th>
<th>RDF Form</th>
</tr>
<tr>
<td> {http cookies}</td>
<td> <em>(only if true)</em> <bindingId> rdf:type whttp:BindingUsingHTTPCookies .</td>
</tr>
<tr>
<td> {http content encoding default}</td>
<td> <bindingId> whttp:defaultContentEncoding "<coding>" .</td>
</tr>
<tr>
<td> {http method default}</td>
<td> <bindingId> whttp:defaultMethod "<method>" .</td>
</tr>
<tr>
<td> {http query parameter separator default}</td>
<td> <bindingId> whttp:defaultQueryParameterSeparator "<separator>" .</td>
</tr>
</tbody>
</table>
</div>
<br />
<div class="mappingtable">
<table cellpadding="4" width="100%" border="1">
<caption><a id="table2-26">Table 2-26.</a> Mapping HTTP Binding Operation
Components to RDF</caption>
<col width="20%" /><col width="80%" />
<tbody>
<tr>
<th>Property</th>
<th>RDF Form</th>
</tr>
<tr>
<td> {http location}</td>
<td> <bindingOpId> whttp:location "<location>" .</td>
</tr>
<tr>
<td> {http content encoding default}</td>
<td> <bindingOpId> whttp:defaultContentEncoding "<coding>" .</td>
</tr>
<tr>
<td> {http input serialization}</td>
<td> <bindingOpId> whttp:inputSerialization "<serialization>" .</td>
</tr>
<tr>
<td> {http output serialization}</td>
<td> <bindingOpId> whttp:outputSerialization "<serialization>" .</td>
</tr>
<tr>
<td> {http fault serialization}</td>
<td> <bindingOpId> whttp:faultSerialization "<serialization>" .</td>
</tr>
<tr>
<td> {http location ignore uncited}</td>
<td> <bindingOpId> whttp:locationIgnoreUncited "<ignoreFlag>"^^xs:boolean .</td>
</tr>
<tr>
<td> {http method}</td>
<td> <bindingOpId> whttp:method "<method>" .</td>
</tr>
<tr>
<td> {http query parameter separator}</td>
<td> <bindingOpId> whttp:queryParameterSeparator "<separator>" .</td>
</tr>
</tbody>
</table>
</div>
<br />
<div class="mappingtable">
<table cellpadding="4" width="100%" border="1">
<caption><a id="table2-27">Table 2-27.</a> Mapping HTTP Binding Fault
Components to RDF</caption>
<col width="20%" /><col width="80%" />
<tbody>
<tr>
<th>Property</th>
<th>RDF Form</th>
</tr>
<tr>
<td> {http error status code}</td>
<td> <em>(only if not "#any")</em> <bindingFaultId> whttp:errorCode "<code>"^^xs:int .</td>
</tr>
<tr>
<td> {http content encoding}</td>
<td> <bindingFaultId> whttp:contentEncoding "<coding>" .</td>
</tr>
<tr>
<td> {http headers}</td>
<td> <em>(for http header mapping see <a href="#table2-30">Table 2-30</a>)</em> </td>
</tr>
</tbody>
</table>
</div>
<br />
<div class="mappingtable">
<table cellpadding="4" width="100%" border="1">
<caption><a id="table2-28">Table 2-28.</a> Mapping HTTP Binding Message Reference
Components to RDF</caption>
<col width="20%" /><col width="80%" />
<tbody>
<tr>
<th>Property</th>
<th>RDF Form</th>
</tr>
<tr>
<td> {http content encoding}</td>
<td> <bindingMessageRefId> whttp:contentEncoding "<coding>" .</td>
</tr>
<tr>
<td> {http headers}</td>
<td> <em>(for http header mapping see <a href="#table2-30">Table 2-30</a>)</em> </td>
</tr>
</tbody>
</table>
</div>
<br />
<div class="mappingtable">
<table cellpadding="4" width="100%" border="1">
<caption><a id="table2-29">Table 2-29.</a> Mapping HTTP Endpoint Components to RDF</caption>
<col width="20%" /><col width="80%" />
<tbody>
<tr>
<th>Property</th>
<th>RDF Form</th>
</tr>
<tr>
<td> {http authentication realm}</td>
<td> <endpointId> whttp:authenticationRealm "<realm>" .</td>
</tr>
<tr>
<td> {http authentication scheme}</td>
<td> <endpointId> whttp:authenticationScheme "<scheme>" .</td>
</tr>
</tbody>
</table>
</div>
<br />
<div class="mappingtable">
<table cellpadding="4" width="100%" border="1">
<caption><a id="table2-30">Table 2-30.</a> Mapping HTTP Header Block Components to RDF</caption>
<col width="20%" /><col width="80%" />
<tbody>
<tr>
<th>Property</th>
<th>RDF Form</th>
</tr>
<tr>
<td> </td>
<td> <em>(id generated per <a href="http://www.w3.org/TR/wsdl20-adjuncts/#http-headers-decl-fragid">IRI Identification Of A HTTP Header component</a>)</em><br/>
<id> rdf:type whttp:HTTPHeader .</td>
</tr>
<tr>
<td> {required}</td>
<td> <em>(for required)</em> <parentComponentId> whttp:requiresHeader <id> .<br/>
<em>(for not required)</em> <parentComponentId> whttp:offersHeader <id> .</td>
</tr>
<tr>
<td> {type definition}</td>
<td> <id> wsdl:typeDefinition <qnameId> .<br/>
<em>(for qname mapping see <a href="#table2-2">Table 2-2</a>)</em> </td>
</tr>
</tbody>
</table>
</div>
<h2 id="example">3. Example WSDL document in RDF form</h2>
<p>The following is a listing of the RDF form of the WSDL
description of the initial GreatH Web Service (listed as example 2-1) from
the WSDL 2.0 primer (in triple notation):</p>
<pre class="example">
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sawsdl: <http://www.w3.org/ns/sawsdl#> .
@prefix whttp: <http://www.w3.org/ns/wsdl/http#> .
@prefix wsdl: <http://www.w3.org/ns/wsdl-rdf#> .
@prefix wsdlx: <http://www.w3.org/ns/wsdl-extensions#> .
@prefix wsoap: <http://www.w3.org/ns/wsdl/soap#> .
<http://greath.example.com/2004/wsdl/resSvc#wsdl.description()>
a wsdl:Description ;
wsdl:interface
<http://greath.example.com/2004/wsdl/resSvc#wsdl.interface(reservationInterface)> ;
wsdl:binding
<http://greath.example.com/2004/wsdl/resSvc#wsdl.binding(reservationSOAPBinding)> ;
wsdl:service <http://greath.example.com/2004/wsdl/resSvc#wsdl.service(reservationService)> .
<http://greath.example.com/2004/wsdl/resSvc#wsdl.interface(reservationInterface)>
a wsdl:Interface ;
rdfs:label "reservationInterface" ;
wsdl:interfaceOperation
<http://greath.example.com/2004/wsdl/resSvc#wsdl.interfaceOperation(reservationInterface/opCheckAvailability)> ;
wsdl:interfaceFault
<http://greath.example.com/2004/wsdl/resSvc#wsdl.interfaceFault(reservationInterface/invalidDataFault)> .
<http://greath.example.com/2004/wsdl/resSvc#wsdl.interfaceOperation(reservationInterface/opCheckAvailability)>
a wsdl:InterfaceOperation ;
rdfs:label "opCheckAvailability" ;
sawsdl:modelReference wsdlx:SafeInteraction ;
wsdl:interfaceMessageReference
<http://greath.example.com/2004/wsdl/resSvc#wsdl.interfaceMessageReference(reservationInterface/opCheckAvailability/In)> ,
<http://greath.example.com/2004/wsdl/resSvc#wsdl.interfaceMessageReference(reservationInterface/opCheckAvailability/Out)> ;
wsdl:interfaceFaultReference
<http://greath.example.com/2004/wsdl/resSvc#wsdl.interfaceFaultReference(reservationInterface/opCheckAvailability/Out/invalidDataFault)> ;
wsdl:messageExchangePattern <http://www.w3.org/ns/wsdl/in-out> ;
wsdl:operationStyle <http://www.w3.org/ns/wsdl/style/iri> .
<http://greath.example.com/2004/wsdl/resSvc#wsdl.interfaceMessageReference(reservationInterface/opCheckAvailability/In)>
a wsdl:InterfaceMessageReference , wsdl:InputMessage ;
wsdl:elementDeclaration <urn:uuid:ead76f4f-f5bc-4ca7-af8c-460a9c99fa53> ;
wsdl:messageContentModel wsdl:ElementContent ;
wsdl:messageLabel <http://www.w3.org/ns/wsdl/in-out#In> .
<urn:uuid:ead76f4f-f5bc-4ca7-af8c-460a9c99fa53>
a wsdl:QName ;
wsdl:localName "checkAvailability" ;
wsdl:namespace <http://greath.example.com/2004/schemas/resSvc> .
<http://greath.example.com/2004/wsdl/resSvc#wsdl.interfaceMessageReference(reservationInterface/opCheckAvailability/Out)>
a wsdl:InterfaceMessageReference , wsdl:OutputMessage ;
wsdl:elementDeclaration <urn:uuid:3066fc8c-d060-4bc5-a479-44d752de54ac> ;
wsdl:messageContentModel wsdl:ElementContent ;
wsdl:messageLabel <http://www.w3.org/ns/wsdl/in-out#Out> .
<urn:uuid:3066fc8c-d060-4bc5-a479-44d752de54ac>
a wsdl:QName ;
wsdl:localName "checkAvailabilityResponse" ;
wsdl:namespace <http://greath.example.com/2004/schemas/resSvc> .
<http://greath.example.com/2004/wsdl/resSvc#wsdl.interfaceFaultReference(reservationInterface/opCheckAvailability/Out/invalidDataFault)>
a wsdl:InterfaceFaultReference , wsdl:OutputMessage ;
wsdl:interfaceFault
<http://greath.example.com/2004/wsdl/resSvc#wsdl.interfaceFault(reservationInterface/invalidDataFault)> ;
wsdl:messageLabel <http://www.w3.org/ns/wsdl/in-out#Out> .
<http://greath.example.com/2004/wsdl/resSvc#wsdl.interfaceFault(reservationInterface/invalidDataFault)>
a wsdl:InterfaceFault ;
rdfs:label "invalidDataFault" ;
wsdl:elementDeclaration <urn:uuid:2e72002d-9472-4c4a-a5b8-c6614b609355> ;
wsdl:messageContentModel wsdl:ElementContent .
<urn:uuid:2e72002d-9472-4c4a-a5b8-c6614b609355>
a wsdl:QName ;
wsdl:localName "invalidDataError" ;
wsdl:namespace <http://greath.example.com/2004/schemas/resSvc> .
<http://greath.example.com/2004/wsdl/resSvc#wsdl.binding(reservationSOAPBinding)>
a wsdl:Binding , <http://www.w3.org/ns/wsdl/soap> ;
rdfs:label "reservationSOAPBinding" ;
wsdl:binds
<http://greath.example.com/2004/wsdl/resSvc#wsdl.interface(reservationInterface)> ;
wsdl:bindingOperation
<http://greath.example.com/2004/wsdl/resSvc#wsdl.bindingOperation(reservationSOAPBinding/opCheckAvailability)> ;
wsdl:bindingFault
<http://greath.example.com/2004/wsdl/resSvc#wsdl.bindingFault(reservationSOAPBinding/invalidDataFault)> ;
whttp:defaultQueryParameterSeparator "&" ;
wsoap:protocol <http://www.w3.org/2003/05/soap/bindings/HTTP/> ;
wsoap:version "1.2" .
<http://greath.example.com/2004/wsdl/resSvc#wsdl.bindingOperation(reservationSOAPBinding/opCheckAvailability)>
a wsdl:BindingOperation ;
wsdl:binds
<http://greath.example.com/2004/wsdl/resSvc#wsdl.interfaceOperation(reservationInterface/opCheckAvailability)> ;
wsoap:soapMEP <http://www.w3.org/2003/05/soap/mep/soap-response> .
<http://greath.example.com/2004/wsdl/resSvc#wsdl.bindingFault(reservationSOAPBinding/invalidDataFault)>
a wsdl:BindingFault ;
wsdl:binds
<http://greath.example.com/2004/wsdl/resSvc#wsdl.interfaceFault(reservationInterface/invalidDataFault)> ;
wsoap:faultCode <urn:uuid:2fe62e8f-154a-4d6d-ae16-c8c062c5c60b> .
<urn:uuid:2fe62e8f-154a-4d6d-ae16-c8c062c5c60b>
a wsdl:QName ;
wsdl:localName "Sender" ;
wsdl:namespace <http://www.w3.org/2003/05/soap-envelope> .
<http://greath.example.com/2004/wsdl/resSvc#wsdl.service(reservationService)>
a wsdl:Service ;
rdfs:label "reservationService" ;
wsdl:endpoint
<http://greath.example.com/2004/wsdl/resSvc#wsdl.endpoint(reservationService/reservationEndpoint)> ;
wsdl:implements
<http://greath.example.com/2004/wsdl/resSvc#wsdl.interface(reservationInterface)> .
<http://greath.example.com/2004/wsdl/resSvc#wsdl.endpoint(reservationService/reservationEndpoint)>
a wsdl:Endpoint ;
rdfs:label "reservationEndpoint" ;
wsdl:address <http://greath.example.com/2004/reservation> ;
wsdl:usesBinding
<http://greath.example.com/2004/wsdl/resSvc#wsdl.binding(reservationSOAPBinding)> .
</pre>
<h2 id="modelingdiffs">4. Differences from the WSDL Component Model
(Non-Normative)</h2>
<p>WSDL defines a component model which consists of components, component
properties and sets of components. This document supplies an ontology (i.e.,
a set of classes, properties, datatypes, and distinguished individuals) for
representing WSDL data. This ontology contains axioms which express some of
the constraints the WSDL specification imposes on legal sets of WSDL
components whether indirectly (via the XML Schema constraints on the infoset
which canonically encodes WSDL component models) or directly (via the natural
language of the WSDL specs, or the corresponding Z formalization of that
language).</p>
<p>RDF, RDFS, and OWL are all less (and differently) expressive than the
subset of Z used to formalize the WSDL specification, and are designed for
different purposes. In a nutshell, RDF, RDFS, and OWL are relatively small
fragments of first order logic, whereas Z encompasses all of first order
logic plus set theory. Z supports <em>validation</em> of component models,
that is, the acceptance or rejection of component models. This includes type
checking, consistency checking, and the verification of integrity
constraints. The current set of Semantic Web languages focus on inference
and integration of information. To take a simple example, if a Z
checkable representation of an Interface component lacks a {name} component
property, a Z based validator will complain that that representation is ill
formed (given the WSDL specification). An OWL reasoner encountering it will, all
other things being equal, conclude that there <em>is</em> such a
property, even though the reasoner has not seen it yet. In general, Semantic
Web based descriptions of Web services using the WSDL conceptual framework
tend to be looser than what the WSDL specification prescribes.</p>
<p>This difference effectively introduces two classes of documents that
use the ontology from this document:</p>
<ol>
<li>RDF documents resulting from translating valid WSDL documents,</li>
<li>arbitrary RDF documents written using the WSDL ontology.</li>
</ol>
<p>This document focuses on the mapping from valid WSDL component
models, and this section in particular talks about differences between a
valid component model and its RDF representation.</p>
<p>However, we must note that arbitrary RDF, RDFS, or OWL documents that use the
WSDL ontology may describe component models that are incomplete or even
illegal. For example, from the point of view of arbitrary RDF documents that
use the WSDL ontology, interfaces do not need to belong to any Description.
Therefore, the subsections also contain <i>notes about arbitrary RDF
documents</i> detailing further differences that an application consuming
WSDL RDF data can encounter in documents that are not the direct result of
mapping a valid WSDL document into its RDF form.
The last subsection (<a href="#diff-restrictions">section 4.5</a>) then describes
those constraints unenforced by the WSDL, that do not fit in any other
subsection above it.</p>
<h3 id="diff-naming">4.1 Component naming</h3>
<p>In the RDF representation, all WSDL components are identified with their
respective component designators (see [<a href="#WSDL-PART1">WSDL 2.0 Core
Language</a>] appendix C <a
href="http://www.w3.org/TR/2007/REC-wsdl20-20070626/#wsdl-iri-references">IRI-References
for WSDL 2.0
Components</a>), which are URIs generally
constructed from the name and namespace of the component and from its parent
component hierarchy. The original namespaces are not explicitly
modeled in the RDF representation, which intends to convey the
semantic meaning of the WSDL component, not the WSDL serialization details;
the local names, however, are captured as <code
class="wsdl-rdf">rdfs:label</code>.</p>
<p>In some situations we can see the RDF representation to be used as an
exchange syntax for WSDL. While it is not an intended use, it is possible that
in some systems the XML syntax will be lost or inaccessibly hidden in several
layers of processing software. Such an application that only
receives the RDF form of WSDL can still need to reconstruct the original
component names, for example if it uses an API that identifies WSDL
operations by their parent interface's QName and the operation name. </p>
<p>The component designators put the names of the components in the fragment
identifier part of the resulting URIs. On the Web (see [<a
href="#webarch">Web Architecture</a>]), the
interpretation of fragment identifiers is defined by the MIME media type of
the representation of the resource identified by the URI without the fragment
identifier. In our particular case, we expect that the namespace URI
identifies an <code>application/wsdl+xml</code> document so that the constructed component
designator fragment identifiers can have their intended meaning. An
application working with the RDF representation of WSDL can reconstruct the
names of the components by reversing the process that resulted in the
component designator, for example for a URI
<code>http://example.com/service#wsdl.interfaceOperation(TicketInterface/BookTicket)</code> we
could reconstruct that the name of the interface is "TicketInterface" in the
namespace <code>http://example.com/service</code> and that the operation is named
"BookTicket".</p>
<p>Such decomposition is only valid, though, if the URI
<code>http://example.com/service</code> identifies a document of MIME media
type <code>application/wsdl+xml</code>, as explained above. Checking the MIME
media type of every resource identified by a URI in an RDF graph could be
prohibitively slow for some applications, therefore it may be practical
(albeit not entirely correct) simply to assume the correct media type and
deconstruct the component names without the preceding media type check. </p>
<p><b>Note about arbitrary RDF documents:</b> in general,
it is possible to assert about any resource (identified by any
kind of URI) that it is, for example, a WSDL operation, and if an application
tries to deconstruct that URI according to WSDL component designator
specification, it may find that the URI does not conform to the syntax (e.g.
<code>http://example.com/service/operation)</code> or, by accident or malice, it does
conform to the syntax but does not contain the correct data (e.g.
<code>http://example.com/service#wsdl.interface(TicketInterface)</code> that is marked to
be a WSDL operation, not an interface as it would seem).</p>
<h3 id="diff-doc">4.2 Documents, imports and includes</h3>
<p>In the XML syntax for WSDL, documents can be included and imported,
allowing for modularization while keeping the ability to validate that a WSDL
document (plus all the includes and imports) does not use any unknown
components. Such modularization is lost when the WSDL files are parsed into a
component model, therefore a straigtforward transformation of such a
component model into RDF will result in a single RDF document.</p>
<p>As one exception, all references to element declarations and type
definitions from XML Schema are done in the RDF representation by QName and
we expect the applications processing this representation to have means of
locating the appropriate descriptions for these QNames. We do not model XML
Schema (or any other) type definitions and element declarations in this ontology.</p>
<p><b>Note about arbitrary RDF documents:</b> RDF data can be split into any
number of pieces, which can be put together by the processing application as
appropriate. If a piece of WSDL/RDF description uses an unknown component
(e.g. an interface described in one document may extend other interfaces, not
described in this document), the application may, if necessary, attempt to
locate the description of the unknown component, for example using its
identifier IRI. Note that RDF does not provide a standard generic way of
including external data, so any inclusion is application-specific.</p>
<p>Additionally, a single RDF document may also contain multiple unrelated
Descriptions, that is, it may be an aggregation of many unrelated WSDL
documents, and this may have unexpected results if the aggregated WSDL data
contains conflicts, i.e. different definitions of components with the same
name; especially when dealing with different versions of descriptions of the
same entities.</p>
<h3 id="diff-references">4.3 Component references</h3>
<p>In the XML representation of WSDL, components are referred to using their
names, and extensibility points usually use IRIs to identify things. All
these references are, from XML point of view, literals. In the RDF
representation, on the other hand, most references are direct, using the
particular identifier IRIs, not represented as literals. For example, most
instances representing components are identified with their component
designators (see [<a href="#WSDL-PART1">WSDL 2.0 Core
Language</a>] appendix C <a
href="http://www.w3.org/TR/2007/REC-wsdl20-20070626/#wsdl-iri-references">IRI-References
for WSDL 2.0
Components</a>) and all references point directly there — an
operation within a binding points to its respective interface operation using
the interface operation component designator IRI, whereas in the XML syntax
the operations are correlated using the operation QName.</p>
<p>As a notable exception, references to type definitions and element
declarations (usually from XML Schema) are represented as instances of
our class <code class="wsdl-rdf">QName</code>, with local part represented as literal and the
namespace as a resource. This might change if a standard RDF representation for XML
Schema element declarations and type definitions is developed — then
direct references to the URIs used in that representation would be used.</p>
<p>Additionally, the SOAP Module component in WSDL is really only a
pointer: it has a literal property {ref} that contains an IRI identifying the
SOAP module, and a property {required} that indicates whether the use of that
SOAP module is required. While this component can contain documentation and
extensions in WSDL, we chose to represent it as a direct link from the parent
component to the target module, as the indirection seems to add very little
value and introduces naming difficulties — we would have to have class
for the SOAP Module component which would contain a pointer to SOAP Module.
The requiredness of the SOAP Module is expressed in the type of the property
that points to the module — the parent component either <code
class="wsdl-rdf">offersSOAPModule</code> or <code
class="wsdl-rdf">requiresSOAPModule</code>.</p>
<h3 id="diff-propsasclasses">4.4 Representing properties with classes</h3>
<p>In certain cases the RDF mapping introduces classes where the WSDL 2.0
component model has a property with a limited number of values. For instance,
instead of having a direction property on message and fault references, with
the values either "in" or "out", we introduce two classes,
<code class="wsdl-rdf">InputMessage</code> and <code class="wsdl-rdf">OutputMessage</code>, and the direction
of a particular message or fault reference is then indicated by belonging to
either of these classes. Similarly, binding types are classes and the type of
a particular binding is indicated by its belonging to that class; we
predefine the two classes for the two bindings that are part of WSDL 2.
</p>
<h3 id="diff-restrictions">4.5 Other WSDL restrictions not enforced by the
ontology</h3>
<p>As already mentioned, the validation-oriented WSDL specification and
especially its Z formalization capture a number of restrictions and
limitations that are not expressed in the RDF ontology. None of these
restrictions or limitations can be violated when a valid WSDL document is
mapped into its RDF form. When the RDF data is directly manipulated, for
example merged with other RDF data (for example other WSDL documents
mapped into RDF), or when new data is created that uses the WSDL ontology,
further significant WSDL constraints might be violated:</p>
<ul>
<li>In WSDL, components of different types do not overlap, e.g. an
interface is always a different thing from a binding (even if they have the
same name), but an arbitrary RDF document can assert that one resource is
both an interface and a binding.</li>
<li>In WSDL, a Description cannot directly contain interface operations or
endpoints, for example; an endpoint is always in a service and interface
operations are always in interfaces. The ontology does not enforce these
restrictions so an arbitrary RDF file that is consistent with the
ontology may describe a broken hierarchy of components.</li>
</ul>
<h2 id="references">5. References</h2>
<dl>
<dt class="label"><a name="owl" id="owl"></a>[OWL]</dt>
<dd><cite><a
href="http://www.w3.org/TR/2004/REC-owl-ref-20040210/">OWL Web
Ontology Language Reference</a></cite>, M. Dean and G. Schreiber,
Editors. World Wide Web Consortium, 10 February 2004 . This version
of OWL Web Ontology Language Reference Recommendation is
http://www.w3.org/TR/2004/REC-owl-ref-20040210/. The <a
href='http://www.w3.org/TR/owl-ref/'>latest version of OWL Web Ontology Language Reference</a> is
available at http://www.w3.org/TR/owl-ref/</dd>
<dt class="label"><a name="rdf" id="rdf"></a>[RDF]</dt>
<dd><cite><a
href="http://www.w3.org/TR/2004/REC-rdf-concepts-20040210/">Resource
Description Framework (RDF): Concepts and Abstract Syntax</a></cite>,
G. Klyne and J. J. Carroll, Editors. World Wide Web Consortium,
10 February 2004. This version of Resource Description Framework
(RDF): Concepts and Abstract Syntax is
http://www.w3.org/TR/2004/REC-rdf-concepts-20040210/. The <a
href='http://www.w3.org/TR/rdf-concepts/'>lastest version of Resource
Description Framework (RDF): Concepts and Abstract Syntax</a> is
available at http://www.w3.org/TR/rdf-concepts/</dd>
<dt class="label"><a name="SAWSDL" id="SAWSDL"></a>[SAWSDL]</dt>
<dd><cite><a href="http://www.w3.org/TR/2007/WD-sawsdl-20070410/">Semantic Annotations for WSDL
and XML Schema</a></cite>, J. Farrell and H. Lausen, Editors. World Wide Web
Consortium, 10 April 2007. This version of the "Semantic Annotations for WSDL
and XML Schema" Specification is available is available at
http://www.w3.org/TR/2007/WD-sawsdl-20070410/. The <a
href="http://www.w3.org/TR/sawsdl/">latest version of "Semantic Annotations for WSDL
and XML Schema"</a> is available at
http://www.w3.org/TR/sawsdl/.</dd>
<dt class="label"><a name="webarch" id="webarch"></a>[Web
Architecture]</dt>
<dd><cite><a href=
"http://www.w3.org/TR/2004/REC-webarch-20041215/">Architecture of the
World Wide Web, Volume One</a></cite>, I. Jacobs and N. Walsh,
Editors. World Wide Web Consortium, 15 December 2004. This version of
the Architecture of the World Wide Web, Volume One Recommendation is
http://www.w3.org/TR/2004/REC-webarch-20041215/. The <a
href='http://www.w3.org/TR/webarch/'>lastest version of Architecture of the World Wide Web, Volume
One</a> is available at http://www.w3.org/TR/webarch/</dd>
<dt class="label"><a name="WSDL-PART1" id="WSDL-PART1"></a>[WSDL 2.0 Core Language]</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, 23 May 2007.
This version of the "Web Services Description Language (WSDL)
Version 2.0 Part 1: Core Language" Specification 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="WSDL-PART2" id="WSDL-PART2"></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, 23
May 2007. This version of the "Web Services Description
Language (WSDL) Version 2.0 Part 2: Adjuncts" Specification 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="WSDL-MEPS" id="WSDL-MEPS"></a>[WSDL 2.0
Additional MEPs]</dt>
<dd><cite><a href=
"http://www.w3.org/TR/2007/NOTE-wsdl20-additional-meps-20070626/">Web
Services Description Language (WSDL) Version 2.0:
Additional MEPs</a></cite>, A. Lewis, Editor. World Wide Web Consortium, 23
May 2007. This version of the "Web Services Description
Language (WSDL) Version 2.0: Additional MEPs" Specification is
available at http://www.w3.org/TR/2007/NOTE-wsdl20-additional-meps-20070626.
The <a href="http://www.w3.org/TR/wsdl20-additional-meps/">latest version
of "Web Services Description Language (WSDL) Version 2.0:
Additional MEPs"</a> is available at
http://www.w3.org/TR/wsdl20-additional-meps/.</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 the
Namespaces in XML 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>
</dl>
<h2 id="ontologysource">Appendix A: The OWL Ontology Source</h2>
<p>Note that the ontology is also available in a <a
href="wsdl20.rdf">separate RDF file</a>.</p>
<pre class="example">
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:wsdl="http://www.w3.org/ns/wsdl-rdf#"
xmlns:xml="http://www.w3.org/XML/1998/namespace"
xml:base="http://www.w3.org/ns/wsdl-rdf">
<owl:Ontology rdf:about="">
</owl:Ontology>
<owl:Class rdf:about="#Binding">
<rdfs:comment>The type of a binding is indicated with rdf:type</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="#BindingFault">
</owl:Class>
<owl:Class rdf:about="#BindingFaultReference">
</owl:Class>
<owl:Class rdf:about="#BindingMessageReference">
</owl:Class>
<owl:Class rdf:about="#BindingOperation">
</owl:Class>
<owl:Class rdf:about="#Description">
</owl:Class>
<owl:Class rdf:about="#Endpoint">
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="#address"/>
<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="#usesBinding"/>
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
</owl:Restriction>
</rdfs:subClassOf>
</owl:Class>
<owl:Class rdf:about="#Interface">
<rdfs:label>WDSL Interface</rdfs:label>
</owl:Class>
<owl:Class rdf:about="#InterfaceFault">
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="#messageContentModel"/>
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
</owl:Restriction>
</rdfs:subClassOf>
</owl:Class>
<owl:Class rdf:about="#InterfaceFaultReference">
</owl:Class>
<owl:Class rdf:about="#InterfaceMessageReference">
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="#messageContentModel"/>
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
</owl:Restriction>
</rdfs:subClassOf>
</owl:Class>
<owl:Class rdf:about="#InputMessage">
<rdfs:comment>To be used by message references and fault references instead of direction property</rdfs:comment>
<owl:disjointWith rdf:resource="#OutputMessage"/>
</owl:Class>
<owl:Class rdf:about="#OutputMessage">
<rdfs:comment>To be used by message references and fault references instead of direction property</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="#InterfaceOperation">
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="#messageExchangePattern"/>
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
</owl:Restriction>
</rdfs:subClassOf>
</owl:Class>
<owl:Class rdf:about="#Service">
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="#implements"/>
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
</owl:Restriction>
</rdfs:subClassOf>
</owl:Class>
<owl:Class rdf:about="#MessageExchangePattern">
</owl:Class>
<owl:Class rdf:about="#MessageLabel">
</owl:Class>
<owl:ObjectProperty rdf:about="#definesMessageLabel">
<rdfs:domain rdf:resource="#MessageExchangePattern"/>
<rdfs:range rdf:resource="#MessageLabel"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="#address">
<rdfs:domain rdf:resource="#Endpoint"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="#binding">
<rdfs:range rdf:resource="#Binding"/>
<rdfs:comment>To be used for pointing to a Binding from Description</rdfs:comment>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="#usesBinding">
<rdfs:domain rdf:resource="#Endpoint"/>
<rdfs:range rdf:resource="#Binding"/>
<rdfs:comment>To be used for pointing to a Binding from Endpoint</rdfs:comment>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="#bindingFault">
<rdfs:range rdf:resource="#BindingFault"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="#bindingOperation">
<rdfs:range rdf:resource="#BindingOperation"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="#bindingMessageReference">
<rdfs:range rdf:resource="#BindingMessageReference"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="#bindingFaultReference">
<rdfs:range rdf:resource="#BindingFaultReference"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="#typeDefinition">
<rdfs:range rdf:resource="#QName"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="#elementDeclaration">
<rdfs:range rdf:resource="#QName"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="#endpoint">
<rdfs:range rdf:resource="#Endpoint"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="#extends">
<rdfs:comment>
points from an interface to an interface directly extended by it
</rdfs:comment>
<rdfs:range rdf:resource="#Interface"/>
<rdfs:domain rdf:resource="#Interface"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="#implements">
<rdfs:comment>
points from a service to the interface that the service implements
</rdfs:comment>
<rdfs:domain rdf:resource="#Service"/>
<rdfs:range rdf:resource="#Interface"/>
</owl:ObjectProperty>
<owl:Class rdf:about="#QName">
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="#localName"/>
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="#namespace"/>
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
</owl:Restriction>
</rdfs:subClassOf>
</owl:Class>
<owl:DatatypeProperty rdf:about="#localName">
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#NCName"/>
</owl:DatatypeProperty>
<owl:ObjectProperty rdf:about="#namespace">
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="#interface">
<rdfs:range rdf:resource="#Interface"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="#interfaceFault">
<rdfs:range rdf:resource="#InterfaceFault"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="#interfaceFaultReference">
<rdfs:range rdf:resource="#InterfaceFaultReference"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="#interfaceMessageReference">
<rdfs:range rdf:resource="#InterfaceMessageReference"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="#binds">
<rdfs:comment>
points from a binding component (or any sub-component) to the respective
interface component (or sub-component)
</rdfs:comment>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="#operationStyle">
<rdfs:domain rdf:resource="#InterfaceOperation"/>
<rdfs:range rdf:resource="#OperationStyle"/>
<rdfs:comment>
points to one style this operation conforms to (can be used multiple times
to point to multiple styles)
</rdfs:comment>
</owl:ObjectProperty>
<owl:Class rdf:about="#OperationStyle">
</owl:Class>
<owl:ObjectProperty rdf:about="#interfaceOperation">
<rdfs:range rdf:resource="#InterfaceOperation"/>
<rdfs:comment>
used on interface to link to an operation
</rdfs:comment>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="#messageContentModel">
<rdfs:range rdf:resource="#MessageContentModel"/>
</owl:ObjectProperty>
<owl:Class rdf:about="#MessageContentModel">
<owl:oneOf rdf:parseType="Collection">
<wsdl:MessageContentModel rdf:about="#AnyContent"/>
<wsdl:MessageContentModel rdf:about="#NoContent"/>
<wsdl:MessageContentModel rdf:about="#ElementContent"/>
<wsdl:MessageContentModel rdf:about="#OtherContent"/>
</owl:oneOf>
</owl:Class>
<owl:ObjectProperty rdf:about="#messageExchangePattern">
<rdfs:range rdf:resource="#MessageExchangePattern"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="#messageLabel">
<rdfs:range rdf:resource="#MessageLabel"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="#service">
<rdfs:range rdf:resource="#Service"/>
</owl:ObjectProperty>
<!-- part 2: message exchange patterns -->
<owl:Class rdf:about="#NoFaults">
<rdfs:subClassOf rdf:resource="#MessageExchangePattern" />
<owl:disjointWith rdf:resource="#FaultReplacesMessage"/>
<owl:disjointWith rdf:resource="#MessageTriggersFault"/>
</owl:Class>
<owl:Class rdf:about="#FaultReplacesMessage">
<rdfs:subClassOf rdf:resource="#MessageExchangePattern" />
<owl:disjointWith rdf:resource="#MessageTriggersFault"/>
</owl:Class>
<owl:Class rdf:about="#MessageTriggersFault">
<rdfs:subClassOf rdf:resource="#MessageExchangePattern" />
</owl:Class>
<wsdl:NoFaults rdf:about="http://www.w3.org/ns/wsdl/in-only">
<wsdl:definesMessageLabel>
<wsdl:MessageLabel rdf:about="http://www.w3.org/ns/wsdl/in-only#In"/>
</wsdl:definesMessageLabel>
</wsdl:NoFaults>
<wsdl:NoFaults rdf:about="http://www.w3.org/ns/wsdl/out-only">
<wsdl:definesMessageLabel>
<wsdl:MessageLabel rdf:about="http://www.w3.org/ns/wsdl/out-only#Out"/>
</wsdl:definesMessageLabel>
</wsdl:NoFaults>
<wsdl:MessageTriggersFault rdf:about="http://www.w3.org/ns/wsdl/robust-in-only">
<wsdl:definesMessageLabel>
<wsdl:MessageLabel rdf:about="http://www.w3.org/ns/wsdl/robust-in-only#In"/>
</wsdl:definesMessageLabel>
</wsdl:MessageTriggersFault>
<wsdl:MessageTriggersFault rdf:about="http://www.w3.org/ns/wsdl/in-opt-out">
<wsdl:definesMessageLabel>
<wsdl:MessageLabel rdf:about="http://www.w3.org/ns/wsdl/in-opt-out#In"/>
</wsdl:definesMessageLabel>
<wsdl:definesMessageLabel>
<wsdl:MessageLabel rdf:about="http://www.w3.org/ns/wsdl/in-opt-out#Out"/>
</wsdl:definesMessageLabel>
</wsdl:MessageTriggersFault>
<wsdl:MessageTriggersFault rdf:about="http://www.w3.org/ns/wsdl/robust-out-only">
<wsdl:definesMessageLabel>
<wsdl:MessageLabel rdf:about="http://www.w3.org/ns/wsdl/robust-out-only#Out"/>
</wsdl:definesMessageLabel>
</wsdl:MessageTriggersFault>
<wsdl:MessageTriggersFault rdf:about="http://www.w3.org/ns/wsdl/out-opt-in">
<wsdl:definesMessageLabel>
<wsdl:MessageLabel rdf:about="http://www.w3.org/ns/wsdl/out-opt-in#Out"/>
</wsdl:definesMessageLabel>
<wsdl:definesMessageLabel>
<wsdl:MessageLabel rdf:about="http://www.w3.org/ns/wsdl/out-opt-in#In"/>
</wsdl:definesMessageLabel>
</wsdl:MessageTriggersFault>
<wsdl:FaultReplacesMessage rdf:about="http://www.w3.org/ns/wsdl/in-out">
<wsdl:definesMessageLabel>
<wsdl:MessageLabel rdf:about="http://www.w3.org/ns/wsdl/in-out#In"/>
</wsdl:definesMessageLabel>
<wsdl:definesMessageLabel>
<wsdl:MessageLabel rdf:about="http://www.w3.org/ns/wsdl/in-out#Out"/>
</wsdl:definesMessageLabel>
</wsdl:FaultReplacesMessage>
<wsdl:FaultReplacesMessage rdf:about="http://www.w3.org/ns/wsdl/out-in">
<wsdl:definesMessageLabel>
<wsdl:MessageLabel rdf:about="http://www.w3.org/ns/wsdl/out-in#Out"/>
</wsdl:definesMessageLabel>
<wsdl:definesMessageLabel>
<wsdl:MessageLabel rdf:about="http://www.w3.org/ns/wsdl/out-in#In"/>
</wsdl:definesMessageLabel>
</wsdl:FaultReplacesMessage>
<!-- part 2: safety -->
<owl:Class rdf:about="http://www.w3.org/ns/wsdl-extensions#SafeInteraction">
<rdfs:comment>
Class representing safe interactions as defined in Web Architecture at W3C.
</rdfs:comment>
</owl:Class>
<!-- part 2: operation styles -->
<wsdl:OperationStyle rdf:about="http://www.w3.org/ns/wsdl/style/rpc">
<rdfs:comment>RPC operation style</rdfs:comment>
</wsdl:OperationStyle>
<owl:DatatypeProperty rdf:about="http://www.w3.org/ns/wsdl/rpc#signature">
<rdfs:domain rdf:resource="#InterfaceOperation"/>
<rdfs:range rdf:resource="http://www.w3.org/ns/wsdl/rpc#Signature"/>
</owl:DatatypeProperty>
<owl:Class rdf:about="http://www.w3.org/ns/wsdl/rpc#Signature">
<rdfs:comment>represents an RDF signature, an ordered sequence of Argument instances</rdfs:comment>
<rdfs:subClassOf rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Seq"/>
</owl:Class>
<owl:Class rdf:about="http://www.w3.org/ns/wsdl/rpc#Argument">
<rdfs:comment>An RPC signature argument, with elementDeclaration;
the direction is indicated by the split into subclasses InArgument,
OutArgument, InOutArgument, ReturnArgument</rdfs:comment>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="#elementDeclaration"/>
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
</owl:Restriction>
</rdfs:subClassOf>
</owl:Class>
<owl:Class rdf:about="http://www.w3.org/ns/wsdl/rpc#InArgument">
<rdfs:comment>An RPC signature argument, with elementDeclaration and direction #in</rdfs:comment>
<rdfs:subClassOf rdf:resource="http://www.w3.org/ns/wsdl/rpc#Argument"/>
</owl:Class>
<owl:Class rdf:about="http://www.w3.org/ns/wsdl/rpc#OutArgument">
<rdfs:comment>An RPC signature argument, with elementDeclaration and direction #out</rdfs:comment>
<rdfs:subClassOf rdf:resource="http://www.w3.org/ns/wsdl/rpc#Argument"/>
</owl:Class>
<owl:Class rdf:about="http://www.w3.org/ns/wsdl/rpc#InOutArgument">
<rdfs:comment>An RPC signature argument, with elementDeclaration and direction #inout</rdfs:comment>
<rdfs:subClassOf rdf:resource="http://www.w3.org/ns/wsdl/rpc#Argument"/>
</owl:Class>
<owl:Class rdf:about="http://www.w3.org/ns/wsdl/rpc#ReturnArgument">
<rdfs:comment>An RPC signature argument, with elementDeclaration and direction #return</rdfs:comment>
<rdfs:subClassOf rdf:resource="http://www.w3.org/ns/wsdl/rpc#Argument"/>
</owl:Class>
<wsdl:OperationStyle rdf:about="http://www.w3.org/ns/wsdl/style/iri">
<rdfs:comment>IRI operation style</rdfs:comment>
</wsdl:OperationStyle>
<wsdl:OperationStyle rdf:about="http://www.w3.org/ns/wsdl/style/multipart">
<rdfs:comment>multipart operation style</rdfs:comment>
</wsdl:OperationStyle>
<!-- part 2: bindings -->
<!-- SOAP binding -->
<owl:Class rdf:about="http://www.w3.org/ns/wsdl/soap">
<rdfs:comment>WSDL 2 SOAP binding</rdfs:comment>
<rdfs:subClassOf rdf:resource="#Binding"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://www.w3.org/ns/wsdl/soap#version"/>
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://www.w3.org/ns/wsdl/soap#protocol"/>
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
</owl:Restriction>
</rdfs:subClassOf>
</owl:Class>
<owl:DatatypeProperty rdf:about="http://www.w3.org/ns/wsdl/soap#version">
<rdfs:comment>
indicates what version of SOAP is used by the binding, usually "1.2"
</rdfs:comment>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
</owl:DatatypeProperty>
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/wsdl/soap#protocol">
<rdfs:comment>
indicates the underlying protocol used by a binding
</rdfs:comment>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/wsdl/soap#faultCode">
<rdfs:comment>
indicates the fault code of a binding fault
</rdfs:comment>
<rdfs:range rdf:resource="#QName"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/wsdl/soap#faultSubcodes">
<rdfs:comment>
indicates the fault subcodes of a binding fault; there can be multiple
subcodes, the range is a sequence whose members are qnames
</rdfs:comment>
<rdfs:range rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Seq"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/wsdl/soap#soapMEP">
<rdfs:comment>
indicates the SOAP MEP this binding operation uses
</rdfs:comment>
<rdfs:range rdf:resource="http://www.w3.org/2006/02/soap12/abstractions#classOfMEPs"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/wsdl/soap#defaultSoapMEP">
<rdfs:comment>
indicates the default SOAP MEP this binding's operations use
</rdfs:comment>
<rdfs:range rdf:resource="http://www.w3.org/2006/02/soap12/abstractions#classOfMEPs"/>
</owl:ObjectProperty>
<owl:Class rdf:about="http://www.w3.org/2006/02/soap12/abstractions#classOfMEPs">
</owl:Class>
<rdf:Description rdf:about="http://www.w3.org/2003/05/soap/mep/request-response/">
<rdf:type rdf:resource="http://www.w3.org/2006/02/soap12/abstractions#classOfMEPs"/>
</rdf:Description>
<rdf:Description rdf:about="http://www.w3.org/2003/05/soap/mep/soap-response/">
<rdf:type rdf:resource="http://www.w3.org/2006/02/soap12/abstractions#classOfMEPs"/>
</rdf:Description>
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/wsdl/soap#action">
<rdfs:comment>
indicates the SOAP action this binding operation uses
</rdfs:comment>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/wsdl/soap#offersSOAPModule">
<rdfs:comment>
indicates the SOAP module by its identifier URI
</rdfs:comment>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/wsdl/soap#requiresSOAPModule">
<rdfs:comment>
indicates the SOAP module by its identifier URI
</rdfs:comment>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/wsdl/soap#offersHeader">
<rdfs:range rdf:resource="http://www.w3.org/ns/wsdl/soap#SOAPHeaderBlock"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/wsdl/soap#requiresHeader">
<rdfs:range rdf:resource="http://www.w3.org/ns/wsdl/soap#SOAPHeaderBlock"/>
</owl:ObjectProperty>
<owl:Class rdf:about="http://www.w3.org/ns/wsdl/soap#SOAPHeaderBlock">
<rdfs:comment>
a SOAP header
</rdfs:comment>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="#elementDeclaration"/>
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
</owl:Restriction>
</rdfs:subClassOf>
</owl:Class>
<owl:Class rdf:about="http://www.w3.org/ns/wsdl/soap#MustUnderstandSOAPHeaderBlock">
<rdfs:subClassOf rdf:resource="http://www.w3.org/ns/wsdl/soap#SOAPHeaderBlock" />
<rdfs:comment>
a SOAP header that must be marked as mustUnderstand by the sender
</rdfs:comment>
</owl:Class>
<!-- HTTP binding -->
<owl:Class rdf:about="http://www.w3.org/ns/wsdl/http">
<rdfs:comment>WSDL 2 HTTP binding</rdfs:comment>
<rdfs:subClassOf rdf:resource="#Binding"/>
</owl:Class>
<owl:DatatypeProperty rdf:about="http://www.w3.org/ns/wsdl/http#location">
<rdfs:comment>
defines the location for an operation, relative to the address of the
service; this is the only URI-valued property modeled as datatype
property because the URI is not meant as pointer to a resource
</rdfs:comment>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#anyURI"/>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:about="http://www.w3.org/ns/wsdl/http#locationIgnoreUncited">
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#boolean"/>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:about="http://www.w3.org/ns/wsdl/http#defaultMethod">
<rdfs:comment>
declares the default HTTP method used by this binding's operations
</rdfs:comment>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:about="http://www.w3.org/ns/wsdl/http#method">
<rdfs:comment>
declares the HTTP method used by this operation
</rdfs:comment>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:about="http://www.w3.org/ns/wsdl/http#inputSerialization">
<rdfs:comment>
declares the media type of the input message of an operation
</rdfs:comment>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:about="http://www.w3.org/ns/wsdl/http#outputSerialization">
<rdfs:comment>
declares the media type of the output message of an operation
</rdfs:comment>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:about="http://www.w3.org/ns/wsdl/http#faultSerialization">
<rdfs:comment>
declares the media type of the fault messages of an operation
</rdfs:comment>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:about="http://www.w3.org/ns/wsdl/http#defaultQueryParameterSeparator">
<rdfs:comment>
declares the default character to be used as query parameter separator by this binding's operations
</rdfs:comment>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:about="http://www.w3.org/ns/wsdl/http#queryParameterSeparator">
<rdfs:comment>
declares the character to be used as query parameter separator by an operation
</rdfs:comment>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:about="http://www.w3.org/ns/wsdl/http#headerName">
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
</owl:DatatypeProperty>
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/wsdl/http#requiresHeader">
<rdfs:range rdf:resource="http://www.w3.org/ns/wsdl/http#HTTPHeader"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/wsdl/http#offersHeader">
<rdfs:range rdf:resource="http://www.w3.org/ns/wsdl/http#HTTPHeader"/>
</owl:ObjectProperty>
<owl:Class rdf:about="http://www.w3.org/ns/wsdl/http#HTTPHeader">
<rdfs:comment>
an HTTP header
</rdfs:comment>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="#typeDefinition"/>
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://www.w3.org/ns/wsdl/http#headerName"/>
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
</owl:Restriction>
</rdfs:subClassOf>
</owl:Class>
<owl:DatatypeProperty rdf:about="http://www.w3.org/ns/wsdl/http#errorCode">
<rdfs:comment>
declares the error status code that a fault will return
</rdfs:comment>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#int"/>
</owl:DatatypeProperty>
<owl:DatatypeProperty
rdf:about="http://www.w3.org/ns/wsdl/http#defaultContentEncoding">
<rdfs:comment>
declares the default content encoding to be used by this binding's operation messages
</rdfs:comment>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:about="http://www.w3.org/ns/wsdl/http#contentEncoding">
<rdfs:comment>
declares the content encoding to be used by operation messages
</rdfs:comment>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
</owl:DatatypeProperty>
<owl:Class rdf:about="http://www.w3.org/ns/wsdl/http#BindingUsingHTTPCookies">
<rdfs:comment>WSDL 2 binding that uses HTTP cookies</rdfs:comment>
</owl:Class>
<owl:DatatypeProperty rdf:about="http://www.w3.org/ns/wsdl/http#authenticationScheme">
<rdfs:comment>
declares the authentication scheme used by an endpoint, by default "none"
</rdfs:comment>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:about="http://www.w3.org/ns/wsdl/http#authenticationRealm">
<rdfs:comment>
declares the authentication realm used by an endpoint
</rdfs:comment>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
</owl:DatatypeProperty>
</rdf:RDF>
</pre>
<h2 id="uri-summary">Appendix B: List of URIs used by the WSDL RDF mapping
(Non-Normative)</h2>
<p>This appendix lists all the URIs that are used by this WSDL RDF mapping,
summarizing the new ones and the new statements about pre-existing ones.</p>
<p>The URI of the ontology for the WSDL RDF mapping, and also the container
for all RDF classes and properties related to the core WSDL components,
listed farther below.</p>
<pre class="urilist">
http://www.w3.org/ns/wsdl-rdf
</pre>
<p>The RDF classes and properties mapping from the core WSDL components and
their properties.</p>
<pre class="urilist">
http://www.w3.org/ns/wsdl-rdf#Binding
http://www.w3.org/ns/wsdl-rdf#BindingFault
http://www.w3.org/ns/wsdl-rdf#BindingFaultReference
http://www.w3.org/ns/wsdl-rdf#BindingMessageReference
http://www.w3.org/ns/wsdl-rdf#BindingOperation
http://www.w3.org/ns/wsdl-rdf#Description
http://www.w3.org/ns/wsdl-rdf#Endpoint
http://www.w3.org/ns/wsdl-rdf#Interface
http://www.w3.org/ns/wsdl-rdf#InterfaceFault
http://www.w3.org/ns/wsdl-rdf#InterfaceFaultReference
http://www.w3.org/ns/wsdl-rdf#InterfaceMessageReference
http://www.w3.org/ns/wsdl-rdf#InterfaceOperation
http://www.w3.org/ns/wsdl-rdf#Service
http://www.w3.org/ns/wsdl-rdf#address
http://www.w3.org/ns/wsdl-rdf#binding
http://www.w3.org/ns/wsdl-rdf#bindingFault
http://www.w3.org/ns/wsdl-rdf#bindingFaultReference
http://www.w3.org/ns/wsdl-rdf#bindingMessageReference
http://www.w3.org/ns/wsdl-rdf#bindingOperation
http://www.w3.org/ns/wsdl-rdf#binds
http://www.w3.org/ns/wsdl-rdf#elementDeclaration
http://www.w3.org/ns/wsdl-rdf#endpoint
http://www.w3.org/ns/wsdl-rdf#extends
http://www.w3.org/ns/wsdl-rdf#implements
http://www.w3.org/ns/wsdl-rdf#interface
http://www.w3.org/ns/wsdl-rdf#interfaceFault
http://www.w3.org/ns/wsdl-rdf#interfaceFaultReference
http://www.w3.org/ns/wsdl-rdf#interfaceMessageReference
http://www.w3.org/ns/wsdl-rdf#interfaceOperation
http://www.w3.org/ns/wsdl-rdf#messageContentModel
http://www.w3.org/ns/wsdl-rdf#messageExchangePattern
http://www.w3.org/ns/wsdl-rdf#messageLabel
http://www.w3.org/ns/wsdl-rdf#operationStyle
http://www.w3.org/ns/wsdl-rdf#service
http://www.w3.org/ns/wsdl-rdf#typeDefinition
http://www.w3.org/ns/wsdl-rdf#usesBinding
</pre>
<p>A class and two properties for mapping of QName references (used for
pointing to element
declarations and type definitions).</p>
<pre class="urilist">
http://www.w3.org/ns/wsdl-rdf#QName
http://www.w3.org/ns/wsdl-rdf#localName
http://www.w3.org/ns/wsdl-rdf#namespace
</pre>
<p>Classes indicating message direction of message references and fault
references.</p>
<pre class="urilist">
http://www.w3.org/ns/wsdl-rdf#InputMessage
http://www.w3.org/ns/wsdl-rdf#OutputMessage
</pre>
<p>A class of WSDL 2.0 operation styles.</p>
<pre class="urilist">
http://www.w3.org/ns/wsdl-rdf#OperationStyle
</pre>
<p>Classes used in the RDF mapping of WSDL message exchange patterns.</p>
<pre class="urilist">
http://www.w3.org/ns/wsdl-rdf#MessageExchangePattern
http://www.w3.org/ns/wsdl-rdf#definesMessageLabel
http://www.w3.org/ns/wsdl-rdf#MessageLabel
http://www.w3.org/ns/wsdl-rdf#NoFaults
http://www.w3.org/ns/wsdl-rdf#MessageTriggersFault
http://www.w3.org/ns/wsdl-rdf#FaultReplacesMessage
</pre>
<p>Classes used in the RDF mapping of message content models.</p>
<pre class="urilist">
http://www.w3.org/ns/wsdl-rdf#MessageContentModel
http://www.w3.org/ns/wsdl-rdf#AnyContent
http://www.w3.org/ns/wsdl-rdf#ElementContent
http://www.w3.org/ns/wsdl-rdf#NoContent
http://www.w3.org/ns/wsdl-rdf#OtherContent
</pre>
<p>URIs of predefined WSDL 2.0 message exchange patters, the WSDL RDF mapping
puts them into the appropriate classes of MEPs, and links them to their
message labels, also listed.</p>
<pre class="urilist">
http://www.w3.org/ns/wsdl/in-only
http://www.w3.org/ns/wsdl/in-only#In
http://www.w3.org/ns/wsdl/in-opt-out
http://www.w3.org/ns/wsdl/in-opt-out#In
http://www.w3.org/ns/wsdl/in-opt-out#Out
http://www.w3.org/ns/wsdl/in-out
http://www.w3.org/ns/wsdl/in-out#In
http://www.w3.org/ns/wsdl/in-out#Out
http://www.w3.org/ns/wsdl/out-in
http://www.w3.org/ns/wsdl/out-in#In
http://www.w3.org/ns/wsdl/out-in#Out
http://www.w3.org/ns/wsdl/out-only
http://www.w3.org/ns/wsdl/out-only#Out
http://www.w3.org/ns/wsdl/out-opt-in
http://www.w3.org/ns/wsdl/out-opt-in#In
http://www.w3.org/ns/wsdl/out-opt-in#Out
http://www.w3.org/ns/wsdl/robust-in-only
http://www.w3.org/ns/wsdl/robust-in-only#In
http://www.w3.org/ns/wsdl/robust-out-only
http://www.w3.org/ns/wsdl/robust-out-only#Out
</pre>
<p>Introduced in the WSDL RDF mapping as a class of safe interactions, used to capture the
{safe} property on interface operations.</p>
<pre class="urilist">
http://www.w3.org/ns/wsdl-extensions#SafeInteraction
</pre>
<p>URIs of the predefined WSDL 2.0 operation styles. The WSDL RDF mapping
puts them into the class of operation styles.</p>
<pre class="urilist">
http://www.w3.org/ns/wsdl/style/iri
http://www.w3.org/ns/wsdl/style/multipart
http://www.w3.org/ns/wsdl/style/rpc
</pre>
<p>URIs of classes and properties related to the RPC operation style,
introduced in this WSDL RDF mapping.</p>
<pre class="urilist">
http://www.w3.org/ns/wsdl/rpc#Argument
http://www.w3.org/ns/wsdl/rpc#InArgument
http://www.w3.org/ns/wsdl/rpc#InOutArgument
http://www.w3.org/ns/wsdl/rpc#OutArgument
http://www.w3.org/ns/wsdl/rpc#ReturnArgument
http://www.w3.org/ns/wsdl/rpc#Signature
http://www.w3.org/ns/wsdl/rpc#signature
</pre>
<p>The URI identifying WSDL 2.0 HTTP binding. The RDF mapping states that it
is a subclass of WSDL Bindings, and also uses it as the container for the RDF
mapping of components and properties related to the HTTP binding.</p>
<pre class="urilist">
http://www.w3.org/ns/wsdl/http
</pre>
<p>The URIs used in the RDF mapping of components and properties related to
the HTTP binding.</p>
<pre class="urilist">
http://www.w3.org/ns/wsdl/http#BindingUsingHTTPCookies
http://www.w3.org/ns/wsdl/http#HTTPHeader
http://www.w3.org/ns/wsdl/http#authenticationRealm
http://www.w3.org/ns/wsdl/http#authenticationScheme
http://www.w3.org/ns/wsdl/http#contentEncoding
http://www.w3.org/ns/wsdl/http#defaultContentEncoding
http://www.w3.org/ns/wsdl/http#defaultMethod
http://www.w3.org/ns/wsdl/http#defaultQueryParameterSeparator
http://www.w3.org/ns/wsdl/http#errorCode
http://www.w3.org/ns/wsdl/http#faultSerialization
http://www.w3.org/ns/wsdl/http#headerName
http://www.w3.org/ns/wsdl/http#inputSerialization
http://www.w3.org/ns/wsdl/http#location
http://www.w3.org/ns/wsdl/http#locationIgnoreUncited
http://www.w3.org/ns/wsdl/http#method
http://www.w3.org/ns/wsdl/http#offersHeader
http://www.w3.org/ns/wsdl/http#outputSerialization
http://www.w3.org/ns/wsdl/http#queryParameterSeparator
http://www.w3.org/ns/wsdl/http#requiresHeader
</pre>
<p>The URI identifying WSDL 2.0 SOAP binding. The RDF mapping states that it
is a subclass of WSDL Bindings, and also uses it as the container for the RDF
mapping of components and properties related to the SOAP binding.</p>
<pre class="urilist">
http://www.w3.org/ns/wsdl/soap
</pre>
<p>The URIs used in the RDF mapping of components and properties related to
the SOAP binding.</p>
<pre class="urilist">
http://www.w3.org/ns/wsdl/soap#MustUnderstandSOAPHeaderBlock
http://www.w3.org/ns/wsdl/soap#SOAPHeaderBlock
http://www.w3.org/ns/wsdl/soap#action
http://www.w3.org/ns/wsdl/soap#defaultSoapMEP
http://www.w3.org/ns/wsdl/soap#faultCode
http://www.w3.org/ns/wsdl/soap#faultSubcodes
http://www.w3.org/ns/wsdl/soap#offersHeader
http://www.w3.org/ns/wsdl/soap#offersSOAPModule
http://www.w3.org/ns/wsdl/soap#protocol
http://www.w3.org/ns/wsdl/soap#requiresHeader
http://www.w3.org/ns/wsdl/soap#requiresSOAPModule
http://www.w3.org/ns/wsdl/soap#soapMEP
http://www.w3.org/ns/wsdl/soap#version
</pre>
<p>URIs from SOAP 1.2, the WSDL RDF mapping states that the two MEPs belong to the class.</p>
<pre class="urilist">
http://www.w3.org/2006/02/soap12/abstractions#classOfMEPs
http://www.w3.org/2003/05/soap/mep/request-response/
http://www.w3.org/2003/05/soap/mep/soap-response/
</pre>
<p>URIs reused from RDF, RDF Schema and XML Schema; no new statements about
them.</p>
<pre class="urilist">
http://www.w3.org/1999/02/22-rdf-syntax-ns#Seq
http://www.w3.org/1999/02/22-rdf-syntax-ns#type
http://www.w3.org/2000/01/rdf-schema#label
http://www.w3.org/2001/XMLSchema#boolean
http://www.w3.org/2001/XMLSchema#int
</pre>
<p>Reused from SAWSDL, no new statements.</p>
<pre class="urilist">
http://www.w3.org/ns/sawsdl#modelReference
</pre>
<h2 id="acknowledgments">Appendix C. Acknowledgements (Non-Normative)</h2>
<p>This document is the work of the <a href="http://www.w3.org/2002/ws/desc/">W3C Web Service
Description Working Group</a>.</p>
<p>Members of the Working Group are (at the time of writing, and by
alphabetical order):
Charlton Barreto (Adobe Systems, Inc),
Allen Brookes (Rogue Wave Softwave),
Dave Chappell (Sonic Software),
Helen Chen (Agfa-Gevaert N. V.),
Roberto Chinnici (Sun Microsystems),
Kendall Clark (University of Maryland),
Glen Daniels (Sonic Software),
Paul Downey (British Telecommunications),
Youenn Fablet (Canon),
Ram Jeyaraman (Microsoft),
Tom Jordahl (Adobe Systems),
Anish Karmarkar (Oracle Corporation),
Jacek Kopecky (DERI Innsbruck at the Leopold-Franzens-Universität Innsbruck, Austria),
Amelia Lewis (TIBCO Software, Inc.),
Philippe Le Hegaret (W3C),
Michael Liddy (Education.au Ltd.),
Kevin Canyang Liu (SAP AG),
Jonathan Marsh (WSO2),
Monica Martin (Sun Microsystems),
Josephine Micallef (SAIC - Telcordia Technologies),
Jeff Mischkinsky (Oracle Corporation),
Dale Moberg (Cyclone Commerce),
Jean-Jacques Moreau (Canon),
David Orchard (BEA Systems, Inc.),
Gilbert Pilz (BEA Systems, Inc.),
Tony Rogers (Computer Associates),
Arthur Ryman (IBM),
Adi Sakala (IONA Technologies),
Michael Shepherd (Xerox),
Asir Vedamuthu (Microsoft Corporation),
Sanjiva Weerawarana (WSO2),
Ümit Yalçınalp (SAP AG),
Peter Zehler (Xerox).</p>
<p>Previous members were:
Eran Chinthaka (WSO2),
Mark Nottingham (BEA Systems, Inc.),
Hugo Haas (W3C),
Vivek Pandey (Sun Microsystems),
Bijan Parsia (University of Maryland),
Lily Liu
(webMethods, Inc.), Don Wright
(Lexmark), Joyce Yang
(Oracle Corporation), Daniel Schutzer
(Citigroup), Dave Solo
(Citigroup), Stefano Pogliani
(Sun Microsystems), William Stumbo
(Xerox), Stephen White
(SeeBeyond), Barbara Zengler
(DaimlerChrysler Research and Technology), Tim Finin
(University of Maryland), Laurent De Teneuille
(L'Echangeur), Johan Pauhlsson
(L'Echangeur), Mark Jones
(AT&T), Steve Lind
(AT&T), Sandra Swearingen
(U.S. Department of Defense, U.S. Air Force), Philippe Le Hégaret
(W3C), Jim Hendler
(University of Maryland), Dietmar Gaertner
(Software AG), Michael Champion
(Software AG), Don Mullen
(TIBCO Software, Inc.), Steve Graham
(Global Grid Forum), Steve Tuecke
(Global Grid Forum), Michael Mahan
(Nokia), Bryan Thompson
(Hicks & Associates), Ingo Melzer
(DaimlerChrysler Research and Technology), Sandeep Kumar
(Cisco Systems), Alan Davies
(SeeBeyond), Jacek Kopecky
(Systinet), Mike Ballantyne
(Electronic Data Systems), Mike Davoren
(W. W. Grainger), Dan Kulp
(IONA Technologies), Mike McHugh
(W. W. Grainger), Michael Mealling
(Verisign), Waqar Sadiq
(Electronic Data Systems), Yaron Goland
(BEA Systems, Inc.), Ümit Yalçınalp
(Oracle Corporation), Peter Madziak
(Agfa-Gevaert N. V.), Jeffrey Schlimmer
(Microsoft Corporation), Hao He
(The Thomson Corporation), Erik Ackerman
(Lexmark), Jerry Thrasher
(Lexmark), Prasad Yendluri
(webMethods, Inc.), William Vambenepe
(Hewlett-Packard Company), David Booth
(W3C), Sanjiva Weerawarana
(IBM), Asir Vedamuthu
(webMethods, Inc.), Igor Sedukhin
(Computer Associates), Martin Gudgin
(Microsoft Corporation), Rebecca Bergersen
(IONA Technologies), Ugo Corda
(SeeBeyond).</p>
<p>The people who have contributed to <a href="http://lists.w3.org/Archives/Public/www-ws-desc/">discussions
on www-ws-desc@w3.org</a> are also gratefully acknowledged.</p>
</div>
</body>
</html>