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
|
<pre>Internet Engineering Task Force (IETF) H. Thompson
Request for Comments: 7303 University of Edinburgh
Obsoletes: <a href="./rfc3023">3023</a> C. Lilley
Updates: <a href="./rfc6839">6839</a> W3C
Category: Standards Track July 2014
ISSN: 2070-1721
<span class="h1">XML Media Types</span>
Abstract
This specification standardizes three media types -- application/xml,
application/xml-external-parsed-entity, and application/xml-dtd --
for use in exchanging network entities that are related to the
Extensible Markup Language (XML) while defining text/xml and text/
xml-external-parsed-entity as aliases for the respective application/
types. This specification also standardizes the '+xml' suffix for
naming media types outside of these five types when those media types
represent XML MIME entities.
Status of This Memo
This is an Internet Standards Track document.
This document is a product of the Internet Engineering Task Force
(IETF). It represents the consensus of the IETF community. It has
received public review and has been approved for publication by the
Internet Engineering Steering Group (IESG). Further information on
Internet Standards is available in <a href="./rfc5741#section-2">Section 2 of RFC 5741</a>.
Information about the current status of this document, any errata,
and how to provide feedback on it may be obtained at
<a href="http://www.rfc-editor.org/info/rfc7303">http://www.rfc-editor.org/info/rfc7303</a>.
<span class="grey">Thompson & Lilley Standards Track [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc7303">RFC 7303</a> XML Media Types July 2014</span>
Copyright Notice
Copyright (c) 2014 IETF Trust and the persons identified as the
document authors. All rights reserved.
This document is subject to <a href="https://www.rfc-editor.org/bcp/bcp78">BCP 78</a> and the IETF Trust's Legal
Provisions Relating to IETF Documents
(<a href="http://trustee.ietf.org/license-info">http://trustee.ietf.org/license-info</a>) in effect on the date of
publication of this document. Please review these documents
carefully, as they describe your rights and restrictions with respect
to this document. Code Components extracted from this document must
include Simplified BSD License text as described in Section 4.e of
the Trust Legal Provisions and are provided without warranty as
described in the Simplified BSD License.
This document may contain material from IETF Documents or IETF
Contributions published or made publicly available before November
10, 2008. The person(s) controlling the copyright in some of this
material may not have granted the IETF Trust the right to allow
modifications of such material outside the IETF Standards Process.
Without obtaining an adequate license from the person(s) controlling
the copyright in such materials, this document may not be modified
outside the IETF Standards Process, and derivative works of it may
not be created outside the IETF Standards Process, except to format
it for publication as an RFC or to translate it into languages other
than English.
Table of Contents
<a href="#section-1">1</a>. Introduction . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-4">4</a>
<a href="#section-2">2</a>. Notational Conventions . . . . . . . . . . . . . . . . . . . <a href="#page-4">4</a>
<a href="#section-2.1">2.1</a>. Requirements Language . . . . . . . . . . . . . . . . . . <a href="#page-4">4</a>
<a href="#section-2.2">2.2</a>. Characters, Encodings, Charsets . . . . . . . . . . . . . <a href="#page-4">4</a>
<a href="#section-2.3">2.3</a>. MIME Entities, XML Entities . . . . . . . . . . . . . . . <a href="#page-5">5</a>
<a href="#section-3">3</a>. Encoding Considerations . . . . . . . . . . . . . . . . . . . <a href="#page-6">6</a>
<a href="#section-3.1">3.1</a>. XML MIME Producers . . . . . . . . . . . . . . . . . . . <a href="#page-6">6</a>
<a href="#section-3.2">3.2</a>. XML MIME Consumers . . . . . . . . . . . . . . . . . . . <a href="#page-7">7</a>
<a href="#section-3.3">3.3</a>. The BOM and Encoding Conversions . . . . . . . . . . . . <a href="#page-8">8</a>
<a href="#section-4">4</a>. XML Media Types . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-9">9</a>
<a href="#section-4.1">4.1</a>. XML MIME Entities . . . . . . . . . . . . . . . . . . . . <a href="#page-9">9</a>
<a href="#section-4.2">4.2</a>. Using '+xml' when Registering XML-Based Media Types . . . <a href="#page-11">11</a>
4.3. Registration Guidelines for XML-Based Media Types Not
Using '+xml' . . . . . . . . . . . . . . . . . . . . . <a href="#page-12">12</a>
<a href="#section-5">5</a>. Fragment Identifiers . . . . . . . . . . . . . . . . . . . . <a href="#page-13">13</a>
<a href="#section-6">6</a>. The Base URI . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-14">14</a>
<a href="#section-7">7</a>. XML Versions . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-14">14</a>
<a href="#section-8">8</a>. Examples . . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-14">14</a>
<a href="#section-8.1">8.1</a>. UTF-8 Charset . . . . . . . . . . . . . . . . . . . . . . <a href="#page-15">15</a>
<span class="grey">Thompson & Lilley Standards Track [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc7303">RFC 7303</a> XML Media Types July 2014</span>
<a href="#section-8.2">8.2</a>. UTF-16 Charset . . . . . . . . . . . . . . . . . . . . . <a href="#page-16">16</a>
<a href="#section-8.3">8.3</a>. Omitted Charset and 8-Bit MIME Entity . . . . . . . . . . <a href="#page-16">16</a>
<a href="#section-8.4">8.4</a>. Omitted Charset and 16-Bit MIME Entity . . . . . . . . . <a href="#page-16">16</a>
<a href="#section-8.5">8.5</a>. Omitted Charset, No Internal Encoding Declaration . . . . <a href="#page-17">17</a>
<a href="#section-8.6">8.6</a>. UTF-16BE Charset . . . . . . . . . . . . . . . . . . . . <a href="#page-17">17</a>
<a href="#section-8.7">8.7</a>. Non-UTF Charset . . . . . . . . . . . . . . . . . . . . . <a href="#page-18">18</a>
8.8. INCONSISTENT EXAMPLE: Conflicting Charset and Internal
Encoding Declaration . . . . . . . . . . . . . . . . . . <a href="#page-18">18</a>
<a href="#section-8.9">8.9</a>. INCONSISTENT EXAMPLE: Conflicting Charset and BOM . . . . <a href="#page-18">18</a>
<a href="#section-9">9</a>. IANA Considerations . . . . . . . . . . . . . . . . . . . . . <a href="#page-19">19</a>
<a href="#section-9.1">9.1</a>. application/xml Registration . . . . . . . . . . . . . . <a href="#page-19">19</a>
<a href="#section-9.2">9.2</a>. text/xml Registration . . . . . . . . . . . . . . . . . . <a href="#page-21">21</a>
<a href="#section-9.3">9.3</a>. application/xml-external-parsed-entity Registration . . . <a href="#page-21">21</a>
<a href="#section-9.4">9.4</a>. text/xml-external-parsed-entity Registration . . . . . . <a href="#page-22">22</a>
<a href="#section-9.5">9.5</a>. application/xml-dtd Registration . . . . . . . . . . . . <a href="#page-22">22</a>
9.6. The '+xml' Naming Convention for XML-Based Media Types . 23
<a href="#section-9.6.1">9.6.1</a>. The '+xml' Structured Syntax Suffix Registration . . <a href="#page-23">23</a>
<a href="#section-10">10</a>. Security Considerations . . . . . . . . . . . . . . . . . . . <a href="#page-25">25</a>
<a href="#section-11">11</a>. References . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-27">27</a>
<a href="#section-11.1">11.1</a>. Normative References . . . . . . . . . . . . . . . . . . <a href="#page-27">27</a>
<a href="#section-11.2">11.2</a>. Informative References . . . . . . . . . . . . . . . . . <a href="#page-29">29</a>
<a href="#appendix-A">Appendix A</a>. Why Use the '+xml' Suffix for XML-Based MIME Types? 32
<a href="#appendix-B">Appendix B</a>. Core XML Specifications . . . . . . . . . . . . . . <a href="#page-32">32</a>
<a href="#appendix-C">Appendix C</a>. Operational Considerations . . . . . . . . . . . . . <a href="#page-32">32</a>
<a href="#appendix-C.1">C.1</a>. General Considerations . . . . . . . . . . . . . . . . . <a href="#page-33">33</a>
<a href="#appendix-C.2">C.2</a>. Considerations for Producers . . . . . . . . . . . . . . <a href="#page-33">33</a>
<a href="#appendix-C.3">C.3</a>. Considerations for Consumers . . . . . . . . . . . . . . <a href="#page-34">34</a>
<a href="#appendix-D">Appendix D</a>. Changes from <a href="./rfc3023">RFC 3023</a> . . . . . . . . . . . . . . . <a href="#page-34">34</a>
<a href="#appendix-E">Appendix E</a>. Acknowledgements . . . . . . . . . . . . . . . . . . <a href="#page-35">35</a>
<span class="grey">Thompson & Lilley Standards Track [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc7303">RFC 7303</a> XML Media Types July 2014</span>
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>. Introduction</span>
The World Wide Web Consortium has issued the Extensible Markup
Language (XML) 1.0 [<a href="#ref-XML" title=""Extensible Markup Language (XML) 1.0 (Fifth Edition)"">XML</a>] and Extensible Markup Language (XML) 1.1
[<a href="#ref-XML1.1" title=""Extensible Markup Language (XML) 1.1 (Second Edition)"">XML1.1</a>] specifications. To enable the exchange of XML network
entities, this specification standardizes three media types
(application/xml, application/xml-external-parsed-entity, and
application/xml-dtd), two aliases (text/xml and text/xml-external-
parsed-entity), and a naming convention for identifying XML-based
MIME media types (using '+xml').
XML has been used as a foundation for other media types, including
types in every branch of the IETF media types tree. To facilitate
the processing of such types, and in line with the recognition in
[<a href="./rfc6838" title=""Media Type Specifications and Registration Procedures"">RFC6838</a>] of structured syntax name suffixes, a suffix of '+xml' is
registered in <a href="#section-9.6">Section 9.6</a>. This will allow generic XML-based tools
-- browsers, editors, search engines, and other processors -- to work
with all XML-based media types.
This specification replaces [<a href="./rfc3023" title="a practice that has since become widespread. Those interested in a historical perspective on this topic are referred to [RFC3023">RFC3023</a>]. Major differences are in the
areas of alignment of text/xml and text/xml-external-parsed-entity
with application/xml and application/xml-external-parsed-entity
respectively, the addition of XPointer and XML Base as fragment
identifiers and base URIs, respectively, integration of the XPointer
Registry and updating of many references.
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>. Notational Conventions</span>
<span class="h3"><a class="selflink" id="section-2.1" href="#section-2.1">2.1</a>. Requirements Language</span>
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and
"OPTIONAL" in this specification are to be interpreted as described
in [<a href="./rfc2119" title=""Key words for use in RFCs to Indicate Requirement Levels"">RFC2119</a>].
<span class="h3"><a class="selflink" id="section-2.2" href="#section-2.2">2.2</a>. Characters, Encodings, Charsets</span>
Both XML (in an XML or Text declaration using the encoding pseudo-
attribute) and MIME (in a Content-Type header field using the charset
parameter) use a common set of labels [<a href="#ref-IANA-CHARSETS">IANA-CHARSETS</a>] to identify the
MIME charset (mapping from byte stream to character sequence
[<a href="./rfc2978" title=""IANA Charset Registration Procedures"">RFC2978</a>]).
In this specification, we will use the phrases "charset parameter"
and "encoding declaration" to refer to whatever MIME charset is
specified by a MIME charset parameter or XML encoding declaration,
<span class="grey">Thompson & Lilley Standards Track [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc7303">RFC 7303</a> XML Media Types July 2014</span>
respectively. We reserve the phrase "character encoding" (or, when
the context makes the intention clear, simply "encoding") for the
MIME charset actually used in a particular XML MIME entity.
[<a id="ref-UNICODE">UNICODE</a>] defines three "encoding forms", namely UTF-8, UTF-16, and
UTF-32. As UTF-8 can only be serialized in one way, the only
possible label for UTF-8-encoded documents when serialised into MIME
entities is "utf-8". UTF-16 XML documents, however, can be
serialised into MIME entities in one of two ways: either big-endian,
labelled (optionally) "utf-16" or "utf-16be", or little-endian,
labelled (optionally) "utf-16" or "utf-16le". See <a href="#section-3.3">Section 3.3</a> below
for how a Byte Order Mark (BOM) is required when the "utf-16"
serialization is used.
UTF-32 has four potential serializations, of which only two (UTF-32BE
and UTF-32LE) are given names in [<a href="#ref-UNICODE" title=""The Unicode Standard, Version 7.0.0"">UNICODE</a>]. Support for the various
serializations varies widely, and security concerns about their use
have been raised (for example, see [<a href="#ref-Sivonen" title=""Mozilla bug: Remove support for UTF-32 per HTML5 spec"">Sivonen</a>]). The use of UTF-32 is
NOT RECOMMENDED for XML MIME entities.
<span class="h3"><a class="selflink" id="section-2.3" href="#section-2.3">2.3</a>. MIME Entities, XML Entities</span>
As sometimes happens between two communities, both MIME and XML have
defined the term entity, with different meanings. <a href="./rfc2045#section-2.4">Section 2.4 of
[RFC2045]</a> says:
The term "entity", refers specifically to the MIME-defined header
fields and contents of either a message or one of the parts in the
body of a multipart entity.
Section 4 of [<a href="#ref-XML" title=""Extensible Markup Language (XML) 1.0 (Fifth Edition)"">XML</a>] says:
An XML document may consist of one or many storage units. These
are called entities; they all have content and are all (except for
the document entity and the external DTD subset) identified by
entity name.
In this specification, "XML MIME entity" is defined as the latter (an
XML entity) encapsulated in the former (a MIME entity).
Furthermore, XML provides for the naming and referencing of entities
for purposes of inclusion and/or substitution. In this
specification, "XML-entity declaration/reference/..." is used to
avoid confusion when referring to such cases.
<span class="grey">Thompson & Lilley Standards Track [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc7303">RFC 7303</a> XML Media Types July 2014</span>
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>. Encoding Considerations</span>
The registrations below all address issues around character encoding
in the same way, by referencing this section.
As many as three distinct sources of information about character
encoding may be present for an XML MIME entity: a charset parameter,
a BOM (see <a href="#section-3.3">Section 3.3</a> below), and an XML encoding declaration (see
Section 4.3.3 of [<a href="#ref-XML" title=""Extensible Markup Language (XML) 1.0 (Fifth Edition)"">XML</a>]). Ensuring consistency among these sources
requires coordination between entity authors and MIME agents (that
is, processes that package, transfer, deliver, and/or receive MIME
entities).
The use of UTF-8, without a BOM, is RECOMMENDED for all XML MIME
entities.
Some MIME agents will be what we will call "XML-aware", that is,
capable of processing XML MIME entities as XML and detecting the XML
encoding declaration (or its absence). All three sources of
information about encoding are available to them, and they can be
expected to be aware of this specification.
Other MIME agents will not be XML-aware; thus, they cannot know
anything about the XML encoding declaration. Not only do they lack
one of the three sources of information about encoding, they are also
less likely to be aware of or responsive to this specification.
Some MIME agents, such as proxies and transcoders, both consume and
produce MIME entities.
This mixture of two kinds of agents handling XML MIME entities
increases the complexity of the coordination task. The
recommendations given below are intended to maximise interoperability
in the face of this: on the one hand, by mandating consistent
production and encouraging maximally robust forms of production and,
on the other, by specifying recovery strategies to maximize the
interoperability of consumers when the production rules are broken.
<span class="h3"><a class="selflink" id="section-3.1" href="#section-3.1">3.1</a>. XML MIME Producers</span>
XML-aware MIME producers SHOULD supply a charset parameter and/or an
appropriate BOM with non-UTF-8-encoded XML MIME entities that lack an
encoding declaration. Such producers SHOULD remove or correct an
encoding declaration that is known to be incorrect (for example, as a
result of transcoding).
<span class="grey">Thompson & Lilley Standards Track [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc7303">RFC 7303</a> XML Media Types July 2014</span>
XML-aware MIME producers MUST supply an XML text declaration at the
beginning of non-UNICODE XML external parsed entities that would
otherwise begin with the hexadecimal octet sequences 0xFE 0xFF, 0xFF
0xFE or 0xEF 0xBB 0xBF, in order to avoid the mistaken detection of a
BOM.
XML-unaware MIME producers MUST NOT supply a charset parameter with
an XML MIME entity unless the entity's character encoding is reliably
known. Note that this is particularly relevant for central
configuration of web servers, where configuring a default for the
charset parameter will almost certainly violate this requirement.
XML MIME producers are RECOMMENDED to provide means for users to
control what value, if any, is given to charset parameters for XML
MIME entities, for example, by giving users control of the
configuration of Web server filename-to-Content-Type-header mappings
on a file-by-file or suffix basis.
<span class="h3"><a class="selflink" id="section-3.2" href="#section-3.2">3.2</a>. XML MIME Consumers</span>
For XML MIME consumers, the question of priority arises in cases when
the available character encoding information is not consistent.
Again, we must distinguish between XML-aware and XML-unaware agents.
When a charset parameter is specified for an XML MIME entity, the
normative component of the [<a href="#ref-XML" title=""Extensible Markup Language (XML) 1.0 (Fifth Edition)"">XML</a>] specification leaves the question
open as to how to determine the encoding with which to attempt to
process the entity. This is true independently of whether or not the
entity contains in-band encoding information, that is, either a BOM
(<a href="#section-3.3">Section 3.3</a>) or an XML encoding declaration, both, or neither. In
particular, in the case where there is in-band information and it
conflicts with the charset parameter, the [<a href="#ref-XML" title=""Extensible Markup Language (XML) 1.0 (Fifth Edition)"">XML</a>] specification does
not specify which is authoritative. In its (non-normative)
<a href="#appendix-F">Appendix F</a>, it defers to this specification:
[T]he preferred method of handling conflict should be specified as
part of the higher-level protocol used to deliver XML. In
particular, please refer to [IETF <a href="./rfc3023">RFC 3023</a>] or its successor...
Accordingly, to conform with deployed processors and content and to
avoid conflicting with this or other normative specifications, this
specification sets the priority as follows:
A BOM (<a href="#section-3.3">Section 3.3</a>) is authoritative if it is present in an XML
MIME entity;
In the absence of a BOM (<a href="#section-3.3">Section 3.3</a>), the charset parameter is
authoritative if it is present.
<span class="grey">Thompson & Lilley Standards Track [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc7303">RFC 7303</a> XML Media Types July 2014</span>
Whenever the above determines a source of encoding information as
authoritative, consumers SHOULD process XML MIME entities based on
that information.
When MIME producers conform to the requirements stated above
(<a href="#section-3.1">Section 3.1</a>, <a href="#section-3">Section 3</a>) inconsistencies will not arise -- the above
statement of priorities only has practical impact in the case of non-
conforming XML MIME entities. In the face of inconsistencies, no
uniform strategy can deliver the 'right' answer every time: the
purpose of specifying one here is to encourage convergence over time,
first on the part of consumers, then on the part of producers.
For XML-aware consumers, note that Section 4.3.3 of [<a href="#ref-XML" title=""Extensible Markup Language (XML) 1.0 (Fifth Edition)"">XML</a>] does _not_
make it an error for the charset parameter and the XML encoding
declaration (or the UTF-8 default in the absence of encoding
declaration and BOM) to be inconsistent, although such consumers
might choose to issue a warning in this case.
If an XML MIME entity is received where the charset parameter is
omitted, no information is being provided about the character
encoding by the MIME Content-Type header. XML-aware consumers MUST
follow the requirements in section 4.3.3 of [<a href="#ref-XML" title=""Extensible Markup Language (XML) 1.0 (Fifth Edition)"">XML</a>] that directly
address this case. XML-unaware MIME consumers SHOULD NOT assume a
default encoding in this case.
<span class="h3"><a class="selflink" id="section-3.3" href="#section-3.3">3.3</a>. The BOM and Encoding Conversions</span>
Section 4.3.3 of [<a href="#ref-XML" title=""Extensible Markup Language (XML) 1.0 (Fifth Edition)"">XML</a>] specifies that UTF-16 XML MIME entities not
labelled as "utf-16le" or "utf-16be" MUST begin with a BOM, U+FEFF,
which appears as the hexadecimal octet sequence 0xFE 0xFF (big-
endian) or 0xFF 0xFE (little-endian). [<a href="#ref-XML" title=""Extensible Markup Language (XML) 1.0 (Fifth Edition)"">XML</a>] further states that the
BOM is an encoding signature and is not part of either the markup or
the character data of the XML document.
Due to the presence of the BOM, applications that convert XML from
UTF-16 to an encoding other than UTF-8 MUST strip the BOM before
conversion. Similarly, when converting from another encoding into
UTF-16, either without a charset parameter or labelled "utf-16", the
BOM MUST be added unless the original encoding was UTF-8 and a BOM
was already present, in which case it MUST be transcoded into the
appropriate UTF-16 BOM.
Section 4.3.3 of [<a href="#ref-XML" title=""Extensible Markup Language (XML) 1.0 (Fifth Edition)"">XML</a>] also allows for UTF-8 XML MIME entities to
begin with a BOM, which appears as the hexadecimal octet sequence
0xEF 0xBB 0xBF. This is likewise defined to be an encoding
signature, and not part of either the markup or the character data of
the XML document.
<span class="grey">Thompson & Lilley Standards Track [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc7303">RFC 7303</a> XML Media Types July 2014</span>
Applications that convert XML from UTF-8 to an encoding other than
UTF-16 MUST strip the BOM, if present, before conversion.
Applications that convert XML into UTF-8 MAY add a BOM.
In addition to the MIME charset "utf-16", [<a href="./rfc2781" title=""UTF-16, an encoding of ISO 10646"">RFC2781</a>] introduces
"utf-16le" (little-endian) and "utf-16be" (big-endian). When an XML
MIME entity is encoded in "utf-16le" or "utf-16be", it MUST NOT begin
with the BOM but SHOULD contain an in-band XML encoding declaration.
Conversion from UTF-8 or UTF-16 (unlabelled, or labelled with
"utf-16") to "utf-16be" or "utf-16le" MUST strip a BOM if present.
Conversion from UTF-16 labelled "utf-16le" or "utf-16be" to UTF-16
without a label or labelled "utf-16" MUST add the appropriate BOM.
Conversion from UTF-16 labelled "utf-16le" or "utf-16be" to UTF-8 MAY
add a UTF-8 BOM, but this is NOT RECOMMENDED.
<a href="#appendix-F">Appendix F</a> of [<a href="#ref-XML" title=""Extensible Markup Language (XML) 1.0 (Fifth Edition)"">XML</a>] also implies that a UTF-32 BOM may be used in
conjunction with UTF-32-encoded documents. As noted above, this
specification recommends against the use of UTF-32. If it is used,
the same considerations as UTF-16 apply with respect to its being a
signature (not part of the document), transcoding into or out of it,
and transcoding into or out of the MIME charsets "utf-32le" and "utf-
32be". Consumers that do not support UTF-32 SHOULD nonetheless
recognise UTF-32 signatures in order to give helpful error messages
(instead of treating them as invalid UTF-16).
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>. XML Media Types</span>
<span class="h3"><a class="selflink" id="section-4.1" href="#section-4.1">4.1</a>. XML MIME Entities</span>
Within the XML specification, XML MIME entities can be classified
into four types. In the XML terminology, they are called "document
entities", "external DTD subsets", "external parsed entities", and
"external parameter entities". Appropriate usage for the types
registered below is as follows:
document entities: The media types application/xml or text/xml, or a
more specific media type (see <a href="#section-9.6">Section 9.6</a>), SHOULD be used.
external DTD subsets: The media type application/xml-dtd SHOULD be
used. The media types application/xml and text/xml MUST NOT be
used.
external parsed entities: The media types application/xml-external-
parsed-entity or text/xml-external-parsed-entity SHOULD be used.
The media types application/xml and text/xml MUST NOT be used
unless the parsed entities are also well-formed "document
entities".
<span class="grey">Thompson & Lilley Standards Track [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc7303">RFC 7303</a> XML Media Types July 2014</span>
external parameter entities: The media type application/xml-dtd
SHOULD be used. The media types application/xml and text/xml MUST
NOT be used.
Note that [<a href="./rfc3023" title="a practice that has since become widespread. Those interested in a historical perspective on this topic are referred to [RFC3023">RFC3023</a>] (which this specification obsoletes) recommended
the use of text/xml and text/xml-external-parsed-entity for document
entities and external parsed entities, respectively, but described
handling of character encoding that differed from common
implementation practice. These media types are still commonly used,
and this specification aligns the handling of character encoding with
industry practice.
Note that [<a href="./rfc2376" title=""XML Media Types"">RFC2376</a>] (which is obsolete) allowed application/xml and
text/xml to be used for any of the four types, although in practice
it is likely to have been rare.
Neither external DTD subsets nor external parameter entities parse as
XML documents, and while some XML document entities may be used as
external parsed entities and vice versa, there are many cases where
the two are not interchangeable. XML also has unparsed entities,
internal parsed entities, and internal parameter entities, but they
are not XML MIME entities.
Compared to [<a href="./rfc2376" title=""XML Media Types"">RFC2376</a>] or [<a href="./rfc3023" title="a practice that has since become widespread. Those interested in a historical perspective on this topic are referred to [RFC3023">RFC3023</a>], this specification alters the
handling of character encoding of text/xml and text/xml-external-
parsed-entity, treating them no differently from the respective
application/ types. However, application/xml and application/xml-
external-parsed-entity are still RECOMMENDED, to avoid possible
confusion based on the earlier distinction. The former confusion
around the question of default character sets for the two text/ types
no longer arises because
[<a id="ref-RFC7231">RFC7231</a>] changes [<a href="./rfc2616" title=""Hypertext Transfer Protocol -- HTTP/1.1"">RFC2616</a>] by removing the ISO-8859-1 default and
not defining any default at all;
[<a id="ref-RFC6657">RFC6657</a>] updates [<a href="./rfc2046" title=""Multipurpose Internet Mail Extensions (MIME) Part Two: Media Types"">RFC2046</a>] to remove the US-ASCII [<a href="#ref-ASCII" title=""Coded Character Set -- 7-bit American Standard Code for Information Interchange"">ASCII</a>]
default.
See <a href="#section-3">Section 3</a> for the now-unified approach to the charset parameter
that results.
XML provides a general framework for defining sequences of structured
data. It is often appropriate to define new media types that use XML
but define a specific application of XML, due to domain-specific
display, editing, security considerations, or runtime information.
Furthermore, such media types may allow only UTF-8 and/or UTF-16 and
prohibit other character sets. This specification does not prohibit
such media types; in fact, they are expected to proliferate.
<span class="grey">Thompson & Lilley Standards Track [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc7303">RFC 7303</a> XML Media Types July 2014</span>
However, developers of such media types are RECOMMENDED to use this
specification as a basis for their registration. See <a href="#section-4.2">Section 4.2</a> for
more detailed recommendations on using the '+xml' suffix for
registration of such media types.
An XML document labeled as application/xml or text/xml, or with a
'+xml' media type, might contain namespace declarations, stylesheet-
linking processing instructions (PIs), schema information, or other
declarations that might be used to suggest how the document is to be
processed. For example, a document might have the XHTML namespace
and a reference to a Cascading Style Sheets (CSS) stylesheet. Such a
document might be handled by applications that would use this
information to dispatch the document for appropriate processing.
<a href="#appendix-B">Appendix B</a> lists the core XML specifications that, taken together
with [<a href="#ref-XML" title=""Extensible Markup Language (XML) 1.0 (Fifth Edition)"">XML</a>] itself, show how to determine an XML document's language-
level semantics and suggest how information about its application-
level semantics may be locatable.
<span class="h3"><a class="selflink" id="section-4.2" href="#section-4.2">4.2</a>. Using '+xml' when Registering XML-Based Media Types</span>
In <a href="#section-9.6">Section 9.6</a>, this specification updates the registration in
[<a href="./rfc6839" title=""Additional Media Type Structured Syntax Suffixes"">RFC6839</a>] for XML-based MIME types (the '+xml' types).
When a new media type is introduced for an XML-based format, the name
of the media type SHOULD end with '+xml' unless generic XML
processing is in some way inappropriate for documents of the new
type. This convention will allow applications that can process XML
generically to detect that the MIME entity is supposed to be an XML
document, verify this assumption by invoking some XML processor, and
then process the XML document accordingly. Applications may check
for types that represent XML MIME entities by comparing the last four
characters of the subtype to the string '+xml'. (However, note that
four of the five media types defined in this specification -- text/
xml, application/xml, text/xml-external-parsed-entity, and
application/xml-external-parsed-entity -- also represent XML MIME
entities while not ending with '+xml'.)
NOTE: <a href="./rfc7231#section-5.3.2">Section 5.3.2 of [RFC7231]</a> does not support any form of
Accept header that will match only '+xml' types. In particular,
Accept headers of the form "Accept: */*+xml" are not allowed, and
will not work for this purpose.
Media types following the naming convention '+xml' SHOULD define the
charset parameter for consistency, since XML-generic processing by
definition treats all XML MIME entities uniformly as regards
character encoding information. However, there are some cases that
the charset parameter need not be defined. For example:
<span class="grey">Thompson & Lilley Standards Track [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc7303">RFC 7303</a> XML Media Types July 2014</span>
When an XML-based media type is restricted to UTF-8, it is not
necessary to define the charset parameter. UTF-8 is the default
for XML.
When an XML-based media type is restricted to UTF-8 and UTF-16, it
might not be unreasonable to omit the charset parameter. Neither
UTF-8 nor UTF-16 require XML encoding declarations.
XML generic processing is not always appropriate for XML-based media
types. For example, authors of some such media types may wish that
the types remain entirely opaque except to applications that are
specifically designed to deal with that media type. By NOT following
the naming convention '+xml', such media types can avoid XML-generic
processing. Since generic processing will be useful in many cases,
however -- including in some situations that are difficult to predict
ahead of time -- the '+xml' convention is to be preferred unless
there is some particularly compelling reason not to use it.
The registration process for specific '+xml' media types is described
in [<a href="./rfc6838" title=""Media Type Specifications and Registration Procedures"">RFC6838</a>]. New XML-based media type registrations in the IETF
must follow these guidelines. When other organisations register XML-
based media types via the "Specification Required" IANA registration
policy [<a href="./rfc5226" title="">RFC5226</a>], the relevant Media Reviewer should ensure that they
use the '+xml' convention, in order to ensure maximum
interoperability of their XML-based documents. Only media subtypes
that represent XML MIME entities are allowed to register with a
'+xml' suffix.
In addition to the changes described above, the change controller has
been changed to be the World Wide Web Consortium (W3C).
<span class="h3"><a class="selflink" id="section-4.3" href="#section-4.3">4.3</a>. Registration Guidelines for XML-Based Media Types Not Using '+xml'</span>
Registrations for new XML-based media types that do _not_ use the
'+xml' suffix SHOULD, in specifying the charset parameter and
encoding considerations, define them as: "Same as [charset parameter
/ encoding considerations] of application/xml as specified in <a href="./rfc7303">RFC</a>
<a href="./rfc7303">7303</a>".
Defining the charset parameter is RECOMMENDED, since this information
can be used by XML processors to determine authoritatively the
character encoding of the XML MIME entity in the absence of a BOM.
If there are some reasons not to follow this advice, they SHOULD be
included as part of the registration. As shown above, two such
reasons are "UTF-8 only" or "UTF-8 or UTF-16 only".
<span class="grey">Thompson & Lilley Standards Track [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey"><a href="./rfc7303">RFC 7303</a> XML Media Types July 2014</span>
These registrations SHOULD specify that the XML-based media type
being registered has all of the security considerations described in
this specification plus any additional considerations specific to
that media type.
These registrations SHOULD also make reference to this specification
in specifying magic numbers, base URIs, and use of the BOM.
These registrations MAY reference the application/xml registration in
this document in specifying interoperability and fragment identifier
considerations, if these considerations are not overridden by issues
specific to that media type.
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>. Fragment Identifiers</span>
Uniform Resource Identifiers (URIs) can contain fragment identifiers
(see <a href="./rfc3986#section-3.5">Section 3.5 of [RFC3986]</a>). Specifying the syntax and semantics
of fragment identifiers is devolved by [<a href="./rfc3986" title=""Uniform Resource Identifier (URI): Generic Syntax"">RFC3986</a>] to the appropriate
media type registration.
The syntax and semantics of fragment identifiers for the XML media
types defined in this specification are based on the
[<a href="#ref-XPointerFramework">XPointerFramework</a>] W3C Recommendation. It allows simple names and
more complex constructions based on named schemes. When the syntax
of a fragment identifier part of any URI or Internationalized
Resource Identifier (IRI) ([<a href="./rfc3987" title=""Internationalized Resource Identifiers (IRIs)"">RFC3987</a>]) with a retrieved media type
governed by this specification conforms to the syntax specified in
[<a href="#ref-XPointerFramework">XPointerFramework</a>], conforming applications MUST interpret such
fragment identifiers as designating whatever is specified by the
[<a href="#ref-XPointerFramework">XPointerFramework</a>] together with any other specifications governing
the XPointer schemes used in those identifiers that the applications
support. Conforming applications MUST support the 'element' scheme
as defined in [<a href="#ref-XPointerElement">XPointerElement</a>], but need not support other schemes.
If an XPointer error is reported in the attempt to process the part,
this specification does not define an interpretation for the part.
A registry of XPointer schemes [<a href="#ref-XPtrReg" title=""XPointer Registry"">XPtrReg</a>] is maintained at the W3C.
Generic processors of XML MIME entities SHOULD NOT implement
unregistered XPointer schemes ([<a href="#ref-XPtrRegPolicy">XPtrRegPolicy</a>] describes requirements
and procedures for registering schemes).
See <a href="#section-4.2">Section 4.2</a> for additional requirements that apply when an XML-
based media type follows the naming convention '+xml'.
If [<a href="#ref-XPointerFramework">XPointerFramework</a>] and [<a href="#ref-XPointerElement">XPointerElement</a>] are inappropriate for
some XML-based media type, it SHOULD NOT follow the naming convention
'+xml'.
<span class="grey">Thompson & Lilley Standards Track [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey"><a href="./rfc7303">RFC 7303</a> XML Media Types July 2014</span>
When a URI has a fragment identifier, it is encoded by a limited
subset of the repertoire of US-ASCII characters, see
[<a href="#ref-XPointerFramework">XPointerFramework</a>] for details.
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>. The Base URI</span>
An XML MIME entity of type application/xml, text/xml, application/
xml-external-parsed-entity, or text/xml-external-parsed-entity MAY
use the xml:base attribute, as described in [<a href="#ref-XMLBase" title=""XML Base (Second Edition)"">XMLBase</a>], to embed a
base URI in that entity for use in resolving relative URI references
(see <a href="./rfc3986#section-5.1">Section 5.1 of [RFC3986]</a>).
Note that the base URI itself might be embedded in a different MIME
entity, since the default value for the xml:base attribute can be
specified in an external DTD subset or external parameter entity.
Since conforming XML processors need not always read and process
external entities, the effect of such an external default is
uncertain; therefore, its use is NOT RECOMMENDED.
<span class="h2"><a class="selflink" id="section-7" href="#section-7">7</a>. XML Versions</span>
application/xml, application/xml-external-parsed-entity, application/
xml-dtd, text/xml, and text/xml-external-parsed-entity are to be used
with [<a href="#ref-XML" title=""Extensible Markup Language (XML) 1.0 (Fifth Edition)"">XML</a>]. In all examples herein where version="1.0" is shown, it
is understood that version="1.1" might also appear, providing the
content does indeed conform to [<a href="#ref-XML1.1" title=""Extensible Markup Language (XML) 1.1 (Second Edition)"">XML1.1</a>].
The normative requirement of this specification upon XML documents
and processors is to follow the requirements of [<a href="#ref-XML" title=""Extensible Markup Language (XML) 1.0 (Fifth Edition)"">XML</a>], Section 4.3.3.
Except for minor clarifications, that section is substantially
identical from the first edition to the current (5th) edition of XML
1.0, and for XML 1.1 first or second edition [<a href="#ref-XML1.1" title=""Extensible Markup Language (XML) 1.1 (Second Edition)"">XML1.1</a>]. Therefore,
references herein to [<a href="#ref-XML" title=""Extensible Markup Language (XML) 1.0 (Fifth Edition)"">XML</a>] may be interpreted as referencing any
existing version or edition of XML, or any subsequent edition or
version that makes no incompatible changes to that section.
Specifications and recommendations based on or referring to this RFC
SHOULD indicate any limitations on the particular versions or
editions of XML to be used.
<span class="h2"><a class="selflink" id="section-8" href="#section-8">8</a>. Examples</span>
This section is non-normative. In particular, note that all
[<a href="./rfc2119" title=""Key words for use in RFCs to Indicate Requirement Levels"">RFC2119</a>] language herein reproduces or summarizes the consequences
of normative statements already made above, and has no independent
normative force, and accordingly does not appear in uppercase.
<span class="grey">Thompson & Lilley Standards Track [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey"><a href="./rfc7303">RFC 7303</a> XML Media Types July 2014</span>
The examples below give the MIME Content-Type header, including the
charset parameter, if present and the XML declaration or Text
declaration (which includes the encoding declaration) inside the XML
MIME entity. For UTF-16 examples, the Byte Order Mark character
appropriately UTF-16 encoded is denoted as "{BOM}", and the XML or
Text declaration is assumed to come at the beginning of the XML MIME
entity, immediately following the encoded BOM. Note that other MIME
headers may be present, and the XML MIME entity will normally contain
other data in addition to the XML declaration; the examples focus on
the Content-Type header and the encoding declaration for clarity.
Although they show a content type of 'application/xml', all the
examples below apply to all five media types declared below in
<a href="#section-9">Section 9</a>, as well as to any media types declared using the '+xml'
convention (with the exception of the examples involving the charset
parameter for any such media types that do not enable its use). See
the XML MIME entities table (<a href="#section-4.1">Section 4.1</a>, Paragraph 1) for discussion
of which types are appropriate for which varieties of XML MIME
entity.
<span class="h3"><a class="selflink" id="section-8.1" href="#section-8.1">8.1</a>. UTF-8 Charset</span>
Content-Type: application/xml; charset=utf-8
<?xml version="1.0" encoding="utf-8"?>
or
<?xml version="1.0"?>
UTF-8 is the recommended encoding for use with all the media types
defined in this specification. Since the charset parameter is
provided and there is no overriding BOM, conformant MIME and XML
processors must treat the enclosed entity as UTF-8 encoded.
If sent using a 7-bit transport (e.g., SMTP [<a href="./rfc5321" title=""Simple Mail Transfer Protocol"">RFC5321</a>]), in general, a
UTF-8 XML MIME entity must use a content-transfer-encoding of either
quoted-printable or base64. For an 8-bit clean transport (e.g.,
8BITMIME ESMTP or NNTP), or a binary clean transport (e.g., BINARY
ESMTP or HTTP), no content-transfer-encoding is necessary (or even
possible, in the case of HTTP).
<span class="grey">Thompson & Lilley Standards Track [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc7303">RFC 7303</a> XML Media Types July 2014</span>
<span class="h3"><a class="selflink" id="section-8.2" href="#section-8.2">8.2</a>. UTF-16 Charset</span>
Content-Type: application/xml; charset=utf-16
{BOM}<?xml version="1.0" encoding="utf-16"?>
or
{BOM}<?xml version="1.0"?>
For the three application/media types defined above, if sent using a
7-bit transport (e.g., SMTP) or an 8-bit clean transport (e.g.,
8BITMIME ESMTP or NNTP), the XML MIME entity must be encoded in
quoted-printable or base64; for a binary clean transport (e.g.,
BINARY ESMTP or HTTP), no content-transfer-encoding is necessary (or
even possible, in the case of HTTP).
As described in [<a href="./rfc2781" title=""UTF-16, an encoding of ISO 10646"">RFC2781</a>], the UTF-16 family must not be used with
media types under the top-level type "text" except over HTTP or HTTPS
(see Section A.2 of HTTP [<a href="./rfc7231" title=""Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content"">RFC7231</a>] for details). Hence, one of the
two text/media types defined above can be used with this example only
when the XML MIME entity is transmitted via HTTP or HTTPS, which use
a MIME-like mechanism and are binary-clean protocols and hence do not
perform CR and LF transformations and allow NUL octets. Since HTTP
is binary clean, no content-transfer-encoding is necessary (or even
possible).
<span class="h3"><a class="selflink" id="section-8.3" href="#section-8.3">8.3</a>. Omitted Charset and 8-Bit MIME Entity</span>
Content-Type: application/xml
<?xml version="1.0" encoding="iso-8859-1"?>
Since the charset parameter is not provided in the Content-Type
header and there is no overriding BOM, conformant XML processors must
treat the "iso-8859-1" encoding as authoritative. Conformant XML-
unaware MIME processors should make no assumptions about the
character encoding of the XML MIME entity.
<span class="h3"><a class="selflink" id="section-8.4" href="#section-8.4">8.4</a>. Omitted Charset and 16-Bit MIME Entity</span>
Content-Type: application/xml
{BOM}<?xml version="1.0" encoding="utf-16"?>
or
{BOM}<?xml version="1.0"?>
<span class="grey">Thompson & Lilley Standards Track [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc7303">RFC 7303</a> XML Media Types July 2014</span>
This example shows a 16-bit MIME entity with no charset parameter.
However, since there is a BOM, conformant processors must treat the
entity as UTF-16 encoded.
Omitting the charset parameter is not recommended in conjunction with
media types under the top-level type "application" when used with
transports other than HTTP or HTTPS. Media types under the top-level
type "text" should not be used for 16-bit MIME with transports other
than HTTP or HTTPS (see discussion above in
<a href="#section-8.2">Section 8.2</a>, Paragraph 7).
<span class="h3"><a class="selflink" id="section-8.5" href="#section-8.5">8.5</a>. Omitted Charset, No Internal Encoding Declaration</span>
Content-Type: application/xml
<?xml version='1.0'?>
In this example, the charset parameter has been omitted, there is no
internal encoding declaration, and there is no BOM. Since there is
no BOM or charset parameter, the XML processor follows the
requirements in <a href="#section-4.3.3">Section 4.3.3</a>, and optionally applies the mechanism
described in <a href="#appendix-F">Appendix F</a> (which is non-normative) of [<a href="#ref-XML" title=""Extensible Markup Language (XML) 1.0 (Fifth Edition)"">XML</a>] to
determine an encoding of UTF-8. Although the XML MIME entity does
not contain an encoding declaration, provided the encoding actually
_is_ UTF-8, this is a conforming XML MIME entity.
A conformant XML-unaware MIME processor should make no assumptions
about the character encoding of the XML MIME entity.
See <a href="#section-8.1">Section 8.1</a> for transport-related issues for UTF-8 XML MIME
entities.
<span class="h3"><a class="selflink" id="section-8.6" href="#section-8.6">8.6</a>. UTF-16BE Charset</span>
Content-Type: application/xml; charset=utf-16be
<?xml version='1.0' encoding='utf-16be'?>
Observe that, as required for this encoding, there is no BOM. Since
the charset parameter is provided and there is no overriding BOM,
conformant MIME and XML processors must treat the enclosed entity as
UTF-16BE encoded.
See also the additional considerations in the UTF-16 example in
<a href="#section-8.2">Section 8.2</a>.
<span class="grey">Thompson & Lilley Standards Track [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc7303">RFC 7303</a> XML Media Types July 2014</span>
<span class="h3"><a class="selflink" id="section-8.7" href="#section-8.7">8.7</a>. Non-UTF Charset</span>
Content-Type: application/xml; charset=iso-2022-kr
<?xml version="1.0" encoding="iso-2022-kr"?>
This example shows the use of a non-UTF character encoding (in this
case Hangul, but this example is intended to cover all non-UTF-family
character encodings). Since the charset parameter is provided and
there is no overriding BOM, conformant processors must treat the
enclosed entity as encoded per <a href="./rfc1557">RFC 1557</a>.
Since ISO-2022-KR [<a href="./rfc1557" title=""Korean Character Encoding for Internet Messages"">RFC1557</a>] has been defined to use only 7 bits of
data, no content-transfer-encoding is necessary with any transport:
for character sets needing 8 or more bits, considerations such as
those discussed above (Sections <a href="#section-8.1">8.1</a> and <a href="#section-8.2">8.2</a>) would apply.
<span class="h3"><a class="selflink" id="section-8.8" href="#section-8.8">8.8</a>. INCONSISTENT EXAMPLE: Conflicting Charset and Internal Encoding</span>
<span class="h3"> Declaration</span>
Content-Type: application/xml; charset=iso-8859-1
<?xml version="1.0" encoding="utf-8"?>
Although the charset parameter is provided in the Content-Type header
and there is no BOM and the charset parameter differs from the XML
encoding declaration, conformant MIME and XML processors will
interoperate. Since the charset parameter is authoritative in the
absence of a BOM, conformant processors will treat the enclosed
entity as iso-8859-1 encoded. That is, the "UTF-8" encoding
declaration will be ignored.
Conformant processors generating XML MIME entities must not label
conflicting character encoding information between the MIME Content-
Type and the XML declaration unless they have definitive information
about the actual encoding, for example, as a result of systematic
transcoding. In particular, the addition by servers of an explicit,
site-wide charset parameter default has frequently lead to
interoperability problems for XML documents.
<span class="h3"><a class="selflink" id="section-8.9" href="#section-8.9">8.9</a>. INCONSISTENT EXAMPLE: Conflicting Charset and BOM</span>
Content-Type: application/xml; charset=iso-8859-1
{BOM}<?xml version="1.0"?>
<span class="grey">Thompson & Lilley Standards Track [Page 18]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-19" ></span>
<span class="grey"><a href="./rfc7303">RFC 7303</a> XML Media Types July 2014</span>
Although the charset parameter is provided in the Content-Type
header, there is a BOM, so MIME and XML processors may not
interoperate. Since the BOM parameter is authoritative for
conformant XML processors, they will treat the enclosed entity as
UTF-16 encoded. That is, the "iso-8859-1" charset parameter will be
ignored. XML-unaware MIME processors on the other hand may be
unaware of the BOM and so treat the entity as encoded in iso-8859-1.
Conformant processors generating XML MIME entities must not label
conflicting character encoding information between the MIME Content-
Type and an entity-initial BOM.
<span class="h2"><a class="selflink" id="section-9" href="#section-9">9</a>. IANA Considerations</span>
<span class="h3"><a class="selflink" id="section-9.1" href="#section-9.1">9.1</a>. application/xml Registration</span>
Type name: application
Subtype name: xml
Required parameters: none
Optional parameters: charset
See <a href="#section-3">Section 3</a>.
Encoding considerations: Depending on the character encoding used,
XML MIME entities can consist of 7bit, 8bit, or binary data
[<a href="./rfc6838" title=""Media Type Specifications and Registration Procedures"">RFC6838</a>]. For 7-bit transports, 7bit data, for example, US-
ASCII-encoded data, does not require content-transfer-encoding,
but 8bit or binary data, for example, UTF-8 or UTF-16 data, MUST
be content-transfer-encoded in quoted-printable or base64. For
8-bit clean transport (e.g., 8BITMIME ESMTP [<a href="./rfc6152" title=""SMTP Service Extension for 8-bit MIME Transport"">RFC6152</a>] or NNTP
[<a href="./rfc3977" title=""Network News Transfer Protocol (NNTP)"">RFC3977</a>]), 7bit or 8bit data, for example, US-ASCII or UTF-8
data, does not require content-transfer-encoding, but binary data,
for example, data with a UTF-16 encoding, MUST be content-
transfer-encoded in base64. For binary clean transports (e.g.,
BINARY ESMTP [<a href="./rfc3030" title=""SMTP Service Extensions for Transmission of Large and Binary MIME Messages"">RFC3030</a>] or HTTP [<a href="./rfc7230" title=""Hypertext Transfer Protocol (HTTP/1.1): Message Syntax and Routing"">RFC7230</a>]), no content-transfer-
encoding is necessary (or even possible, in the case of HTTP) for
7bit, 8bit, or binary data.
Security considerations: See <a href="#section-10">Section 10</a>.
Interoperability considerations: XML has proven to be interoperable
across both generic and task-specific applications and for import
and export from multiple XML authoring and editing tools.
Validating processors provide maximum interoperability, because
they have to handle all aspects of XML. Although a non-validating
<span class="grey">Thompson & Lilley Standards Track [Page 19]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-20" ></span>
<span class="grey"><a href="./rfc7303">RFC 7303</a> XML Media Types July 2014</span>
processor may be more efficient, it might not handle all aspects.
For further information, see <a href="#section-2.9">Section 2.9</a> "Standalone Document
Declaration" and <a href="#section-5">Section 5</a> "Conformance" of [<a href="#ref-XML" title=""Extensible Markup Language (XML) 1.0 (Fifth Edition)"">XML</a>] .
In practice, character set issues have proved to be the biggest
source of interoperability problems. The use of UTF-8, and
careful attention to the guidelines set out in <a href="#section-3">Section 3</a>, are the
best ways to avoid such problems.
Published specification: Extensible Markup Language (XML) 1.0 (Fifth
Edition) [<a href="#ref-XML" title=""Extensible Markup Language (XML) 1.0 (Fifth Edition)"">XML</a>] or subsequent editions or versions thereof.
Applications that use this media type: XML is device, platform, and
vendor neutral and is supported by generic and task-specific
applications and a wide range of generic XML tools (editors,
parsers, Web agents, ...).
Additional information:
Magic number(s): None.
Although no byte sequences can be counted on to always be
present, XML MIME entities in ASCII-compatible character sets
(including UTF-8) often begin with hexadecimal 3C 3F 78 6D 6C
("<?xml"), and those in UTF-16 often begin with hexadecimal FE
FF 00 3C 00 3F 00 78 00 6D 00 6C or FF FE 3C 00 3F 00 78 00 6D
00 6C 00 (the BOM followed by "<?xml"). For more information,
see <a href="#appendix-F">Appendix F</a> of [<a href="#ref-XML" title=""Extensible Markup Language (XML) 1.0 (Fifth Edition)"">XML</a>].
File extension(s): .xml
Macintosh File Type Code(s): "TEXT"
Base URI: See <a href="#section-6">Section 6</a>
Person and email address for further information: See Authors'
Addresses section
Intended usage: COMMON
Author: See Authors' Addresses section
Change controller: The XML specification is a work product of the
World Wide Web Consortium's XML Core Working Group. The W3C has
change control over <a href="./rfc7303">RFC 7303</a>.
<span class="grey">Thompson & Lilley Standards Track [Page 20]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-21" ></span>
<span class="grey"><a href="./rfc7303">RFC 7303</a> XML Media Types July 2014</span>
<span class="h3"><a class="selflink" id="section-9.2" href="#section-9.2">9.2</a>. text/xml Registration</span>
The registration information for text/xml is in all respects the same
as that given for application/xml above (<a href="#section-9.1">Section 9.1</a>), except that
the "Type name" is "text".
<span class="h3"><a class="selflink" id="section-9.3" href="#section-9.3">9.3</a>. application/xml-external-parsed-entity Registration</span>
Type name: application
Subtype name: xml-external-parsed-entity
Required parameters: none
Optional parameters: charset
See <a href="#section-3">Section 3</a>.
Encoding considerations: Same as for application/xml (<a href="#section-9.1">Section 9.1</a>).
Security considerations: See <a href="#section-10">Section 10</a>.
Interoperability considerations: XML external parsed entities are as
interoperable as XML documents, though they have a less tightly
constrained structure and therefore need to be referenced by XML
documents for proper handling by XML processors. Similarly, XML
documents cannot be reliably used as external parsed entities
because external parsed entities are prohibited from having
standalone document declarations or DTDs. Identifying XML
external parsed entities with their own content type enhances
interoperability of both XML documents and XML external parsed
entities.
Published specification: Same as for application/xml (<a href="#section-9.1">Section 9.1</a>).
Applications which use this media type: Same as for application/xml
(<a href="#section-9.1">Section 9.1</a>).
Additional information:
Magic number(s): Same as for application/xml (<a href="#section-9.1">Section 9.1</a>).
File extension(s): .xml or .ent
Macintosh File Type Code(s): "TEXT"
Base URI: See <a href="#section-6">Section 6</a>
<span class="grey">Thompson & Lilley Standards Track [Page 21]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-22" ></span>
<span class="grey"><a href="./rfc7303">RFC 7303</a> XML Media Types July 2014</span>
Person and email address for further information: See Authors'
Addresses section.
Intended usage: COMMON
Author: See Authors' Addresses section.
Change controller: The XML specification is a work product of the
World Wide Web Consortium's XML Core Working Group. The W3C has
change control over <a href="./rfc7303">RFC 7303</a>.
<span class="h3"><a class="selflink" id="section-9.4" href="#section-9.4">9.4</a>. text/xml-external-parsed-entity Registration</span>
The registration information for text/xml-external-parsed-entity is
in all respects the same as that given for application/xml-external-
parsed-entity above (<a href="#section-9.3">Section 9.3</a>), except that the "Type name" is
"text".
<span class="h3"><a class="selflink" id="section-9.5" href="#section-9.5">9.5</a>. application/xml-dtd Registration</span>
Type name: application
Subtype name: xml-dtd
Required parameters: none
Optional parameters: charset
See <a href="#section-3">Section 3</a>.
Encoding considerations: Same as for application/xml (<a href="#section-9.1">Section 9.1</a>).
Security considerations: See <a href="#section-10">Section 10</a>.
Interoperability considerations: XML DTDs have proven to be
interoperable by DTD authoring tools and XML validators, among
others.
Published specification: Same as for application/xml (<a href="#section-9.1">Section 9.1</a>).
Applications which use this media type: DTD authoring tools handle
external DTD subsets as well as external parameter entities. XML
validators may also access external DTD subsets and external
parameter entities.
<span class="grey">Thompson & Lilley Standards Track [Page 22]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-23" ></span>
<span class="grey"><a href="./rfc7303">RFC 7303</a> XML Media Types July 2014</span>
Additional information:
Magic number(s): Same as for application/xml (<a href="#section-9.1">Section 9.1</a>).
File extension(s): .dtd or .mod
Macintosh File Type Code(s): "TEXT"
Person and email address for further information: See Authors'
Addresses section.
Intended usage: COMMON
Author: See Authors' Addresses section.
Change controller: The XML specification is a work product of the
World Wide Web Consortium's XML Core Working Group. The W3C has
change control over <a href="./rfc7303">RFC 7303</a>.
<span class="h3"><a class="selflink" id="section-9.6" href="#section-9.6">9.6</a>. The '+xml' Naming Convention for XML-Based Media Types</span>
This section supersedes the earlier registration of the '+xml' suffix
[<a href="./rfc6839" title=""Additional Media Type Structured Syntax Suffixes"">RFC6839</a>].
This specification recommends the use of the '+xml' naming convention
for identifying XML-based media types, in line with the recognition
in [<a href="./rfc6838" title=""Media Type Specifications and Registration Procedures"">RFC6838</a>] of structured syntax name suffixes. This allows the use
of generic XML processors and technologies on a wide variety of
different XML document types at a minimum cost, using existing
frameworks for media type registration.
See <a href="#section-4.2">Section 4.2</a> for guidance on when and how to register a media
subtype that is '+xml' based, and <a href="#section-4.3">Section 4.3</a> on registering a media
subtype for XML but _not_ using '+xml'.
<span class="h4"><a class="selflink" id="section-9.6.1" href="#section-9.6.1">9.6.1</a>. The '+xml' Structured Syntax Suffix Registration</span>
Name: Extensible Markup Language (XML)
+suffix: +xml
Reference: <a href="./rfc7303">RFC 7303</a>
Encoding considerations: Same as <a href="#section-9.1">Section 9.1</a>.
Fragment identifier considerations: Registrations that use this
'+xml' convention MUST also make reference to this document,
specifically <a href="#section-5">Section 5</a>, in specifying fragment identifier syntax
<span class="grey">Thompson & Lilley Standards Track [Page 23]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-24" ></span>
<span class="grey"><a href="./rfc7303">RFC 7303</a> XML Media Types July 2014</span>
and semantics, and they MAY restrict the syntax to a specified
subset of schemes, except that they MUST NOT disallow barenames or
'element' scheme pointers. They MAY further require support for
other registered schemes. They also MAY add additional syntax
(which MUST NOT overlap with [<a href="#ref-XPointerFramework">XPointerFramework</a>] syntax) together
with associated semantics, and they MAY add additional semantics
for barename XPointers that, as provided for in <a href="#section-5">Section 5</a>, will
only apply when this document does not define an interpretation.
In practice, these constraints imply that for a fragment
identifier addressed to an instance of a specific "xxx/yyy+xml"
type, there are three cases:
For fragment identifiers matching the syntax defined in
[<a href="#ref-XPointerFramework">XPointerFramework</a>], where the fragment identifier resolves
per the rules specified there, then process as specified
there;
For fragment identifiers matching the syntax defined in
[<a href="#ref-XPointerFramework">XPointerFramework</a>], where the fragment identifier does
_not_ resolve per the rules specified there, then process as
specified in "xxx/yyy+xml";
For fragment identifiers _not_ matching the syntax defined
in [<a href="#ref-XPointerFramework">XPointerFramework</a>], then process as specified in "xxx/
yyy+xml". A fragment identifier of the form
"xywh=160,120,320,240", as defined in [<a href="#ref-MediaFrags">MediaFrags</a>], which
might be used in a URI for an XML-encoded image, would fall
in this category.
Interoperability considerations: Same as <a href="#section-9.1">Section 9.1</a>. See above,
and also <a href="#section-3">Section 3</a>, for guidelines on the use of the 'charset'
parameter.
Security considerations: See <a href="#section-10">Section 10</a>.
Contact: See Authors' Addresses section.
Author: See Authors' Addresses section.
Change controller: The XML specification is a work product of the
World Wide Web Consortium's XML Core Working Group. The W3C has
change control over <a href="./rfc7303">RFC 7303</a>.
<span class="grey">Thompson & Lilley Standards Track [Page 24]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-25" ></span>
<span class="grey"><a href="./rfc7303">RFC 7303</a> XML Media Types July 2014</span>
<span class="h2"><a class="selflink" id="section-10" href="#section-10">10</a>. Security Considerations</span>
XML MIME entities contain information that may be parsed and further
processed by the recipient. These entities may contain, and
recipients may permit, explicit system level commands to be executed
while processing the data. To the extent that a recipient
application executes arbitrary command strings from within XML MIME
entities, they may be at risk.
In general, any information stored outside of the direct control of
the user -- including CSS style sheets, XSL transformations, XML-
entity declarations, and DTDs -- can be a source of insecurity, by
either obvious or subtle means. For example, a tiny "whiteout
attack" modification made to a "master" style sheet could make words
in critical locations disappear in user documents, without directly
modifying the user document or the stylesheet it references. Thus,
the security of any XML document is vitally dependent on all of the
documents recursively referenced by that document.
The XML-entity lists and DTDs for XHTML 1.0 [<a href="#ref-XHTML" title=""XHTML 1.0: The Extensible HyperText Markup Language"">XHTML</a>], for instance,
are likely to be a widely exploited set of resources. They will be
used and trusted by many developers, few of whom will know much about
the level of security on the W3C's servers, or on any similarly
trusted repository.
The simplest attack involves adding declarations that break
validation. Adding extraneous declarations to a list of character
XML-entities can effectively "break the contract" used by documents.
A tiny change that produces a fatal error in a DTD could halt XML
processing on a large scale. Extraneous declarations are fairly
obvious, but more sophisticated tricks, like changing attributes from
being optional to required, can be difficult to track down. Perhaps
the most dangerous option available to attackers, when external DTD
subsets or external parameter entities or other externally specified
defaulting is involved, is redefining default values for attributes:
for example, if developers have relied on defaulted attributes for
security, a relatively small change might expose enormous quantities
of information.
Apart from the structural possibilities, another option, "XML-entity
spoofing," can be used to insert text into documents, vandalizing and
perhaps conveying an unintended message. Because XML permits
multiple XML-entity declarations, and the first declaration takes
precedence, it is possible to insert malicious content where an XML-
entity reference is used, such as by inserting the full text of
Winnie the Pooh in place of every occurrence of &mdash;.
<span class="grey">Thompson & Lilley Standards Track [Page 25]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-26" ></span>
<span class="grey"><a href="./rfc7303">RFC 7303</a> XML Media Types July 2014</span>
Security considerations will vary by domain of use. For example, XML
medical records will have much more stringent privacy and security
considerations than XML library metadata. Similarly, use of XML as a
parameter marshalling syntax necessitates a case by case security
review.
XML may also have some of the same security concerns as plain text.
Like plain text, XML can contain escape sequences that, when
displayed, have the potential to change the display processor
environment in ways that adversely affect subsequent operations.
Possible effects include, but are not limited to, locking the
keyboard, changing display parameters so subsequent displayed text is
unreadable, or even changing display parameters to deliberately
obscure or distort subsequent displayed material so that its meaning
is lost or altered. Display processors SHOULD either filter such
material from displayed text or else make sure to reset all important
settings after a given display operation is complete.
With some terminal devices, sending particular character sequences to
the display processor can change the output of subsequent key
presses. If this is possible the display of a text object containing
such character sequences could reprogram keys to perform some illicit
or dangerous action when the key is subsequently pressed by the user.
In some cases not only can keys be programmed, they can be triggered
remotely, making it possible for a text display operation to directly
perform some unwanted action. As such, the ability to program keys
SHOULD be blocked either by filtering or by disabling the ability to
program keys entirely.
Note that it is also possible to construct XML documents that make
use of what XML terms "[XML-]entity references" to construct repeated
expansions of text. Recursive expansions are prohibited by [<a href="#ref-XML" title=""Extensible Markup Language (XML) 1.0 (Fifth Edition)"">XML</a>] and
XML processors are required to detect them. However, even non-
recursive expansions may cause problems with the finite computing
resources of computers, if they are performed many times. For
example, consider the case where XML-entity A consists of 100 copies
of XML-entity B, which in turn consists of 100 copies of XML-entity
C, and so on.
<span class="grey">Thompson & Lilley Standards Track [Page 26]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-27" ></span>
<span class="grey"><a href="./rfc7303">RFC 7303</a> XML Media Types July 2014</span>
<span class="h2"><a class="selflink" id="section-11" href="#section-11">11</a>. References</span>
<span class="h3"><a class="selflink" id="section-11.1" href="#section-11.1">11.1</a>. Normative References</span>
[<a id="ref-IANA-CHARSETS">IANA-CHARSETS</a>]
IANA, "Character Sets Registry", 2013,
<<a href="http://www.iana.org/assignments/character-sets/">http://www.iana.org/assignments/character-sets/</a>>.
[<a id="ref-RFC2045">RFC2045</a>] Freed, N. and N. Borenstein, "Multipurpose Internet Mail
Extensions (MIME) Part One: Format of Internet Message
Bodies", <a href="./rfc2045">RFC 2045</a>, November 1996.
[<a id="ref-RFC2046">RFC2046</a>] Freed, N. and N. Borenstein, "Multipurpose Internet Mail
Extensions (MIME) Part Two: Media Types", <a href="./rfc2046">RFC 2046</a>,
November 1996.
[<a id="ref-RFC2119">RFC2119</a>] Bradner, S., "Key words for use in RFCs to Indicate
Requirement Levels", <a href="https://www.rfc-editor.org/bcp/bcp14">BCP 14</a>, <a href="./rfc2119">RFC 2119</a>, March 1997.
[<a id="ref-RFC2781">RFC2781</a>] Hoffman, P. and F. Yergeau, "UTF-16, an encoding of ISO
10646", <a href="./rfc2781">RFC 2781</a>, February 2000.
[<a id="ref-RFC2978">RFC2978</a>] Freed, N. and J. Postel, "IANA Charset Registration
Procedures", <a href="https://www.rfc-editor.org/bcp/bcp19">BCP 19</a>, <a href="./rfc2978">RFC 2978</a>, October 2000.
[<a id="ref-RFC3986">RFC3986</a>] Berners-Lee, T., Fielding, R., and L. Masinter, "Uniform
Resource Identifier (URI): Generic Syntax", STD 66, <a href="./rfc3986">RFC</a>
<a href="./rfc3986">3986</a>, January 2005.
[<a id="ref-RFC3987">RFC3987</a>] Duerst, M. and M. Suignard, "Internationalized Resource
Identifiers (IRIs)", <a href="./rfc3987">RFC 3987</a>, January 2005.
[<a id="ref-RFC6657">RFC6657</a>] Melnikov, A. and J. Reschke, "Update to MIME regarding
"charset" Parameter Handling in Textual Media Types", <a href="./rfc6657">RFC</a>
<a href="./rfc6657">6657</a>, July 2012.
[<a id="ref-RFC6838">RFC6838</a>] Freed, N., Klensin, J., and T. Hansen, "Media Type
Specifications and Registration Procedures", <a href="https://www.rfc-editor.org/bcp/bcp13">BCP 13</a>, <a href="./rfc6838">RFC</a>
<a href="./rfc6838">6838</a>, January 2013.
[<a id="ref-RFC6839">RFC6839</a>] Hansen, T. and A. Melnikov, "Additional Media Type
Structured Syntax Suffixes", <a href="./rfc6839">RFC 6839</a>, January 2013.
[<a id="ref-RFC7230">RFC7230</a>] Fielding, R. and J. Reschke, "Hypertext Transfer Protocol
(HTTP/1.1): Message Syntax and Routing", <a href="./rfc7230">RFC 7230</a>, June
2014.
<span class="grey">Thompson & Lilley Standards Track [Page 27]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-28" ></span>
<span class="grey"><a href="./rfc7303">RFC 7303</a> XML Media Types July 2014</span>
[<a id="ref-RFC7231">RFC7231</a>] Fielding, R. and J. Reschke, "Hypertext Transfer Protocol
(HTTP/1.1): Semantics and Content", <a href="./rfc7231">RFC 7231</a>, June 2014.
[<a id="ref-UNICODE">UNICODE</a>] The Unicode Consortium, "The Unicode Standard, Version
7.0.0", (Mountain View, CA: The Unicode Consortium, 2014
ISBN 978-1-936213-09-2),
<<a href="http://www.unicode.org/versions/Unicode7.0.0/">http://www.unicode.org/versions/Unicode7.0.0/</a>>.
[<a id="ref-XML">XML</a>] Bray, T., Paoli, J., Sperberg-McQueen, C., Maler, E., and
F. Yergeau, "Extensible Markup Language (XML) 1.0 (Fifth
Edition)", W3C Recommendation REC-xml, November 2008,
<<a href="http://www.w3.org/TR/2008/REC-xml-20081126/">http://www.w3.org/TR/2008/REC-xml-20081126/</a>>.
Latest version available at <<a href="http://www.w3.org/TR/xml">http://www.w3.org/TR/xml</a>>.
[<a id="ref-XML1.1">XML1.1</a>] Bray, T., Paoli, J., Sperberg-McQueen, C., Maler, E.,
Yergeau, F., and J. Cowan, "Extensible Markup Language
(XML) 1.1 (Second Edition)", W3C Recommendation REC-xml,
September 2006,
<<a href="http://www.w3.org/TR/2006/REC-xml11-20060816/">http://www.w3.org/TR/2006/REC-xml11-20060816/</a>>.
Latest version available at <<a href="http://www.w3.org/TR/xml11">http://www.w3.org/TR/xml11</a>>.
[<a id="ref-XMLBase">XMLBase</a>] Marsh, J. and R. Tobin, "XML Base (Second Edition)", W3C
Recommendation REC-xmlbase-20090128, January 2009,
<<a href="http://www.w3.org/TR/2009/REC-xmlbase-20090128/">http://www.w3.org/TR/2009/REC-xmlbase-20090128/</a>>.
Latest version available at
<<a href="http://www.w3.org/TR/xmlbase">http://www.w3.org/TR/xmlbase</a>>.
[<a id="ref-XPointerElement">XPointerElement</a>]
Grosso, P., Maler, E., Marsh, J., and N. Walsh, "XPointer
element() Scheme", W3C Recommendation REC-XPointer-
Element, March 2003,
<<a href="http://www.w3.org/TR/2003/REC-xptr-element-20030325/">http://www.w3.org/TR/2003/REC-xptr-element-20030325/</a>>.
Latest version available at
<<a href="http://www.w3.org/TR/xptr-element">http://www.w3.org/TR/xptr-element</a>>.
[<a id="ref-XPointerFramework">XPointerFramework</a>]
Grosso, P., Maler, E., Marsh, J., and N. Walsh, "XPointer
Framework", W3C Recommendation REC-XPointer-Framework,
March 2003,
<<a href="http://www.w3.org/TR/2003/REC-xptr-framework-20030325/">http://www.w3.org/TR/2003/REC-xptr-framework-20030325/</a>>.
Latest version available at
<<a href="http://www.w3.org/TR/xptr-framework">http://www.w3.org/TR/xptr-framework</a>>.
<span class="grey">Thompson & Lilley Standards Track [Page 28]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-29" ></span>
<span class="grey"><a href="./rfc7303">RFC 7303</a> XML Media Types July 2014</span>
[<a id="ref-XPtrReg">XPtrReg</a>] Hazael-Massieux, D., "XPointer Registry", 2005,
<<a href="http://www.w3.org/2005/04/xpointer-schemes/">http://www.w3.org/2005/04/xpointer-schemes/</a>>.
[<a id="ref-XPtrRegPolicy">XPtrRegPolicy</a>]
Hazael-Massieux, D., "XPointer Scheme Name Registry
Policy", 2005,
<<a href="http://www.w3.org/2005/04/xpointer-policy.html">http://www.w3.org/2005/04/xpointer-policy.html</a>>.
<span class="h3"><a class="selflink" id="section-11.2" href="#section-11.2">11.2</a>. Informative References</span>
[<a id="ref-ASCII">ASCII</a>] American National Standards Institute, "Coded Character
Set -- 7-bit American Standard Code for Information
Interchange", ANSI X3.4, 1986.
[<a id="ref-AWWW">AWWW</a>] Jacobs, I. and N. Walsh, "Architecture of the World Wide
Web, Volume One", W3C Recommendation REC-webarch-20041215,
December 2004,
<<a href="http://www.w3.org/TR/2004/REC-webarch-20041215/">http://www.w3.org/TR/2004/REC-webarch-20041215/</a>>.
Latest version available at
<<a href="http://www.w3.org/TR/webarch">http://www.w3.org/TR/webarch</a>>.
[<a id="ref-FYN">FYN</a>] Mendelsohn, N., "The Self-Describing Web", W3C TAG Finding
selfDescribingDocuments-2009-02-07, February 2009,
<<a href="http://www.w3.org/2001/tag/doc/selfDescribingDocuments-2009-02-07.html">http://www.w3.org/2001/tag/doc/</a>
<a href="http://www.w3.org/2001/tag/doc/selfDescribingDocuments-2009-02-07.html">selfDescribingDocuments-2009-02-07.html</a>>.
Latest version available at
<<a href="http://www.w3.org/2001/tag/doc/selfDescribingDocuments.html">http://www.w3.org/2001/tag/doc/</a>
<a href="http://www.w3.org/2001/tag/doc/selfDescribingDocuments.html">selfDescribingDocuments.html</a>>
[<a id="ref-Infoset">Infoset</a>] Cowan, J. and R. Tobin, "XML Information Set (Second
Edition)", W3C Recommendation REC-xml-infoset-20040204,
Febuary 2004,
<<a href="http://www.w3.org/TR/2004/REC-xml-infoset-20040204/">http://www.w3.org/TR/2004/REC-xml-infoset-20040204/</a>>.
Latest version available at
<<a href="http://www.w3.org/TR/xml-infoset/">http://www.w3.org/TR/xml-infoset/</a>>.
[<a id="ref-MediaFrags">MediaFrags</a>]
Troncy, R., Mannens, E., Pfeiffer, S., and D. Van Deursen,
"Media Fragments URI 1.0 (basic)", W3C Recommendation
media-frags, September 2012,
<<a href="http://www.w3.org/TR/2012/REC-media-frags-20120925/">http://www.w3.org/TR/2012/REC-media-frags-20120925/</a>>.
Latest version available at
<<a href="http://www.w3.org/TR/media-frags">http://www.w3.org/TR/media-frags</a>>.
<span class="grey">Thompson & Lilley Standards Track [Page 29]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-30" ></span>
<span class="grey"><a href="./rfc7303">RFC 7303</a> XML Media Types July 2014</span>
[<a id="ref-RFC1557">RFC1557</a>] Choi, U., Chon, K., and H. Park, "Korean Character
Encoding for Internet Messages", <a href="./rfc1557">RFC 1557</a>, December 1993.
[<a id="ref-RFC2376">RFC2376</a>] Whitehead, E. and M. Murata, "XML Media Types", <a href="./rfc2376">RFC 2376</a>,
July 1998.
[<a id="ref-RFC2616">RFC2616</a>] Fielding, R., Gettys, J., Mogul, J., Frystyk, H.,
Masinter, L., Leach, P., and T. Berners-Lee, "Hypertext
Transfer Protocol -- HTTP/1.1", <a href="./rfc2616">RFC 2616</a>, June 1999.
[<a id="ref-RFC3023">RFC3023</a>] Murata, M., St. Laurent, S., and D. Kohn, "XML Media
Types", <a href="./rfc3023">RFC 3023</a>, January 2001.
[<a id="ref-RFC3030">RFC3030</a>] Vaudreuil, G., "SMTP Service Extensions for Transmission
of Large and Binary MIME Messages", <a href="./rfc3030">RFC 3030</a>, December
2000.
[<a id="ref-RFC3977">RFC3977</a>] Feather, C., "Network News Transfer Protocol (NNTP)", <a href="./rfc3977">RFC</a>
<a href="./rfc3977">3977</a>, October 2006.
[<a id="ref-RFC5226">RFC5226</a>] Narten, T. and H. Alvestrand, "Guidelines for Writing an
IANA Considerations Section in RFCs", <a href="https://www.rfc-editor.org/bcp/bcp26">BCP 26</a>, <a href="./rfc5226">RFC 5226</a>,
May 2008.
[<a id="ref-RFC5321">RFC5321</a>] Klensin, J., "Simple Mail Transfer Protocol", <a href="./rfc5321">RFC 5321</a>,
October 2008.
[<a id="ref-RFC6152">RFC6152</a>] Klensin, J., Freed, N., Rose, M., and D. Crocker, "SMTP
Service Extension for 8-bit MIME Transport", STD 71, <a href="./rfc6152">RFC</a>
<a href="./rfc6152">6152</a>, March 2011.
[<a id="ref-Sivonen">Sivonen</a>] Sivonen, H. and others, "Mozilla bug: Remove support for
UTF-32 per HTML5 spec", October 2011,
<<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=604317#c6">https://bugzilla.mozilla.org/show_bug.cgi?id=604317#c6</a>>.
[<a id="ref-TAGMIME">TAGMIME</a>] Bray, T., Ed., "Internet Media Type registration,
consistency of use", April 2004,
<<a href="http://www.w3.org/2001/tag/2004/0430-mime">http://www.w3.org/2001/tag/2004/0430-mime</a>>.
[<a id="ref-XHTML">XHTML</a>] Pemberton, S. and et al, "XHTML 1.0: The Extensible
HyperText Markup Language", W3C Recommendation xhtml1,
December 1999,
<<a href="http://www.w3.org/TR/2000/REC-xhtml1-20000126/">http://www.w3.org/TR/2000/REC-xhtml1-20000126/</a>>.
Latest version available at <<a href="http://www.w3.org/TR/xhtml1">http://www.w3.org/TR/xhtml1</a>>.
<span class="grey">Thompson & Lilley Standards Track [Page 30]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-31" ></span>
<span class="grey"><a href="./rfc7303">RFC 7303</a> XML Media Types July 2014</span>
[<a id="ref-XMLModel">XMLModel</a>] Grosso, P. and J. Kosek, "Associating Schemas with XML
documents 1.0 (Third Edition)", W3C Working Group Note
NOTE-xml-model-20121009, October 2012,
<<a href="http://www.w3.org/TR/2012/NOTE-xml-model-20121009/">http://www.w3.org/TR/2012/NOTE-xml-model-20121009/</a>>.
Latest version available at
<<a href="http://www.w3.org/TR/xml-model">http://www.w3.org/TR/xml-model</a>>.
[<a id="ref-XMLNS10">XMLNS10</a>] Bray, T., Hollander, D., Layman, A., Tobin, R., and H.
Thompson, "Namespaces in XML 1.0 (Third Edition)", W3C
Recommendation REC-xml-names-20091208, December 2009,
<<a href="http://www.w3.org/TR/2009/REC-xml-names-20091208/">http://www.w3.org/TR/2009/REC-xml-names-20091208/</a>>.
Latest version available at
<<a href="http://www.w3.org/TR/xml-names">http://www.w3.org/TR/xml-names</a>>.
[<a id="ref-XMLNS11">XMLNS11</a>] Bray, T., Hollander, D., Layman, A., and R. Tobin,
"Namespaces in XML 1.1 (Second Edition)", W3C
Recommendation REC-xml-names11-20060816, August 2006,
<<a href="http://www.w3.org/TR/2006/REC-xml-names11-20060816/">http://www.w3.org/TR/2006/REC-xml-names11-20060816/</a>>.
Latest version available at
<<a href="http://www.w3.org/TR/xml-names11">http://www.w3.org/TR/xml-names11</a>>.
[<a id="ref-XMLSS">XMLSS</a>] Clark, J., Pieters, S., and H. Thompson, "Associating
Style Sheets with XML documents 1.0 (Second Edition)", W3C
Recommendation REC-xml-stylesheet-20101028, October 2010,
<<a href="http://www.w3.org/TR/2010/REC-xml-stylesheet-20101028/">http://www.w3.org/TR/2010/REC-xml-stylesheet-20101028/</a>>.
Latest version available at
<<a href="http://www.w3.org/TR/xml-stylesheet">http://www.w3.org/TR/xml-stylesheet</a>>.
[<a id="ref-XMLid">XMLid</a>] Marsh, J., Veillard, D., and N. Walsh, "xml:id Version
1.0", W3C Recommendation REC-xml-id-20050909, September
2005, <<a href="http://www.w3.org/TR/2005/REC-xml-id-20050909/">http://www.w3.org/TR/2005/REC-xml-id-20050909/</a>>.
Latest version available at
<<a href="http://www.w3.org/TR/xml-id">http://www.w3.org/TR/xml-id</a>>.
<span class="grey">Thompson & Lilley Standards Track [Page 31]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-32" ></span>
<span class="grey"><a href="./rfc7303">RFC 7303</a> XML Media Types July 2014</span>
<span class="h2"><a class="selflink" id="appendix-A" href="#appendix-A">Appendix A</a>. Why Use the '+xml' Suffix for XML-Based MIME Types?</span>
[<a id="ref-RFC3023">RFC3023</a>] contains a detailed discussion of the (at the time) novel
use of a suffix, a practice that has since become widespread. Those
interested in a historical perspective on this topic are referred to
<a href="./rfc3023#appendix-A">[RFC3023], Appendix A</a>.
The registration process for new '+xml' media types is described in
[<a href="./rfc6838" title=""Media Type Specifications and Registration Procedures"">RFC6838</a>].
<span class="h2"><a class="selflink" id="appendix-B" href="#appendix-B">Appendix B</a>. Core XML Specifications</span>
The following specifications each articulate key aspects of XML
document semantics:
Namespaces in XML 1.0 [<a href="#ref-XMLNS10" title=""Namespaces in XML 1.0 (Third Edition)"">XMLNS10</a>]/Namespaces in XML 1.1 [<a href="#ref-XMLNS11" title=""Namespaces in XML 1.1 (Second Edition)"">XMLNS11</a>]
XML Information Set [<a href="#ref-Infoset" title=""XML Information Set (Second Edition)"">Infoset</a>]
xml:id [<a href="#ref-XMLid" title=""xml:id Version 1.0"">XMLid</a>]
XML Base [<a href="#ref-XMLBase" title=""XML Base (Second Edition)"">XMLBase</a>]
Associating Style Sheets with XML documents [<a href="#ref-XMLSS" title=""Associating Style Sheets with XML documents 1.0 (Second Edition)"">XMLSS</a>]
Associating Schemas with XML documents [<a href="#ref-XMLModel" title=""Associating Schemas with XML documents 1.0 (Third Edition)"">XMLModel</a>]
The W3C Technical Architecture group has produced two documents that
are also relevant:
The Self-Describing Web [<a href="#ref-FYN" title=""The Self-Describing Web"">FYN</a>] discusses the overall principles of
how document semantics are determined on the Web.
Architecture of the World Wide Web, Volume One [<a href="#ref-AWWW" title=""Architecture of the World Wide Web, Volume One"">AWWW</a>],
Section 4.5.4, discusses the specific role of XML Namespace
documents in this process.
<span class="h2"><a class="selflink" id="appendix-C" href="#appendix-C">Appendix C</a>. Operational Considerations</span>
This section provides an informal summary of the major operational
considerations that arise when exchanging XML MIME entities over a
network.
<span class="grey">Thompson & Lilley Standards Track [Page 32]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-33" ></span>
<span class="grey"><a href="./rfc7303">RFC 7303</a> XML Media Types July 2014</span>
<span class="h3"><a class="selflink" id="appendix-C.1" href="#appendix-C.1">C.1</a>. General Considerations</span>
The existence of both XML-aware and XML-unaware agents handling XML
MIME entities can compromise introperability. Generic transcoding
proxies pose a particular risk in this regard. Detailed advice about
the handling of BOMs when transcoding can be found in <a href="#section-3.3">Section 3.3</a>.
This specification requires XML consumers to treat BOMs as
authoritative: this is in principle a backwards-incompatibility. In
practice, serious interoperability issues already exist when BOMs are
used. Making BOMs authoritative, in conjunction with the deprecation
of the UTF-32 encoding form and the requirement to include an XML
encoding declaration in certain cases (<a href="#section-3.1">Section 3.1</a>), is intended to
improve in-practice interoperability as much as possible over time.
This specification establishes <a href="#section-5">Section 5</a> as the basis for
interpreting URIs for XML MIME entities that include fragment
identifiers, mandates support only for shorthand ("simple name") and
'element'-scheme fragments and deprecates support for unregistered
XPointer schemes by XML MIME entity processors. Accordingly, URIs
will interoperate best if they use only simple names and 'element'-
scheme fragment identifiers, with registered schemes varying widely
in the degree of support to be found in generic tools. XPointer
scheme authors can only expect generic tool support if they register
their schemes.
<span class="h3"><a class="selflink" id="appendix-C.2" href="#appendix-C.2">C.2</a>. Considerations for Producers</span>
Interoperability for all XML MIME entities is maximized by the use of
UTF-8, without a BOM. When UTF-8 is _not_ used, a charset parameter
and/or a BOM improve interoperability, particularly when XML-unaware
consumers may be involved.
In the very rare case where the substantive content of a non-UNICODE
XML external parsed entity begins with the hexadecimal octet
sequences 0xFE 0xFF, 0xFF 0xFE or 0xEF 0xBB 0xBF, including an XML
text declaration will forestall the mistaken detection of a BOM.
The use of UTF-32 for XML MIME entities puts interoperability at very
high risk.
Web-server configurations that supply default charset parameters risk
misrepresenting XML MIME entities. Allowing users to control the
value of charset parameters improves interoperability.
<span class="grey">Thompson & Lilley Standards Track [Page 33]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-34" ></span>
<span class="grey"><a href="./rfc7303">RFC 7303</a> XML Media Types July 2014</span>
Supplying a mistaken charset parameter is worse than supplying none
at all. In particular, generic processors such as transcoders, when
processing based on a mistaken charset parameter, if they do not fail
altogether are likely to produce arbitrarily bogus results from which
the original is not recoverable.
<span class="h3"><a class="selflink" id="appendix-C.3" href="#appendix-C.3">C.3</a>. Considerations for Consumers</span>
Consumers of XML MIME entities can maximize interoperability by
1. Taking a BOM as authoritative if it is present in an XML MIME
entity;
2. In the absence of a BOM, taking a charset parameter as
authoritative if it is present.
Assuming a default character encoding in the absence of a charset
parameter harms interoperability.
Although support for UTF-32 is not required by [<a href="#ref-XML" title=""Extensible Markup Language (XML) 1.0 (Fifth Edition)"">XML</a>] itself, and this
specification deprecates its use, consumers that check for UTF-32
BOMs can thereby avoid mistakenly processing UTF-32 entities as
(invalid) UTF-16 entities.
<span class="h2"><a class="selflink" id="appendix-D" href="#appendix-D">Appendix D</a>. Changes from <a href="./rfc3023">RFC 3023</a></span>
There are numerous and significant differences between this
specification and [<a href="./rfc3023" title="a practice that has since become widespread. Those interested in a historical perspective on this topic are referred to [RFC3023">RFC3023</a>], which it obsoletes. This appendix
summarizes the major differences only.
XPointer ([<a href="#ref-XPointerFramework">XPointerFramework</a>] and [<a href="#ref-XPointerElement">XPointerElement</a>]) has been
added as fragment identifier syntax for all the XML media types,
and the XPointer Registry ([<a href="#ref-XPtrReg" title=""XPointer Registry"">XPtrReg</a>]) mentioned
[<a id="ref-XMLBase">XMLBase</a>] has been added as a mechanism for specifying base URIs
The language regarding character sets was updated to correspond to
the W3C TAG finding Internet Media Type registration, consistency
of use [<a href="#ref-TAGMIME" title=""Internet Media Type registration, consistency of use"">TAGMIME</a>]
Priority is now given to a BOM if present
Many references are updated, and the existence of XML 1.1 and
relevance of this specification to it acknowledged
A number of justifications and contextualizations that were
appropriate when XML was new have been removed, including the
whole of the original <a href="#appendix-A">Appendix A</a>
<span class="grey">Thompson & Lilley Standards Track [Page 34]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-35" ></span>
<span class="grey"><a href="./rfc7303">RFC 7303</a> XML Media Types July 2014</span>
<span class="h2"><a class="selflink" id="appendix-E" href="#appendix-E">Appendix E</a>. Acknowledgements</span>
MURATA Makoto (FAMILY Given) and Alexey Melnikov made early and
important contributions to the effort to revise [<a href="./rfc3023" title="a practice that has since become widespread. Those interested in a historical perspective on this topic are referred to [RFC3023">RFC3023</a>].
This specification reflects the input of numerous participants to the
ietf-xml-mime@imc.org, xml-mime@ietf.org, and apps-discuss@ietf.org
mailing lists, though any errors are the responsibility of the
authors. Special thanks to:
Mark Baker, James Clark, Dan Connolly, Martin Duerst, Ned Freed,
Yaron Goland, Bjoern Hoehrmann, Rick Jelliffe, Murray S. Kucherawy,
Larry Masinter, David Megginson, S. Moonesamy, Keith Moore, Chris
Newman, Gavin Nicol, Julian Reschke, Marshall Rose, Jim Whitehead,
Erik Wilde, and participants of the XML activity and the TAG at the
W3C.
Jim Whitehead and Simon St. Laurent were editors of [<a href="./rfc2376" title=""XML Media Types"">RFC2376</a>] and
[<a href="./rfc3023" title="a practice that has since become widespread. Those interested in a historical perspective on this topic are referred to [RFC3023">RFC3023</a>], respectively.
Authors' Addresses
Henry S. Thompson
University of Edinburgh
EMail: ht@inf.ed.ac.uk
URI: <a href="http://www.ltg.ed.ac.uk/~ht/">http://www.ltg.ed.ac.uk/~ht/</a>
Chris Lilley
World Wide Web Consortium
2004, Route des Lucioles - B.P. 93 06902
Sophia Antipolis Cedex
France
EMail: chris@w3.org
URI: <a href="http://www.w3.org/People/chris/">http://www.w3.org/People/chris/</a>
Thompson & Lilley Standards Track [Page 35]
</pre>
|