1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
|
Internet Engineering Task Force (IETF) M. Sweet
Request for Comments: 8010 Apple Inc.
Obsoletes: 2910, 3382 I. McDonald
Category: Standards Track High North, Inc.
ISSN: 2070-1721 January 2017
Internet Printing Protocol/1.1: Encoding and Transport
Abstract
The Internet Printing Protocol (IPP) is an application-level protocol
for distributed printing using Internet tools and technologies. This
document defines the rules for encoding IPP operations, attributes,
and values into the Internet MIME media type called
"application/ipp". It also defines the rules for transporting a
message body whose Content-Type is "application/ipp" over HTTP and/or
HTTPS. The IPP data model and operation semantics are described in
"Internet Printing Protocol/1.1: Model and Semantics" (RFC 8011).
This document obsoletes RFCs 2910 and 3382.
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 Section 2 of RFC 7841.
Information about the current status of this document, any errata,
and how to provide feedback on it may be obtained at
http://www.rfc-editor.org/info/rfc8010.
Sweet & McDonald Standards Track [Page 1]
^L
RFC 8010 IPP/1.1: Encoding and Transport January 2017
Copyright Notice
Copyright (c) 2017 IETF Trust and the persons identified as the
document authors. All rights reserved.
This document is subject to BCP 78 and the IETF Trust's Legal
Provisions Relating to IETF Documents
(http://trustee.ietf.org/license-info) in effect on the date of
publication of this document. Please review these documents
carefully, as they describe your rights and restrictions with respect
to this document. Code Components extracted from this document must
include Simplified BSD License text as described in Section 4.e of
the Trust Legal Provisions and are provided without warranty as
described in the Simplified BSD License.
Table of Contents
1. Introduction . . . . . . . . . . . . . . . . . . . . . . . . 4
2. Conventions Used in This Document . . . . . . . . . . . . . . 5
2.1. Requirements Language . . . . . . . . . . . . . . . . . . 5
2.2. Printing Terminology . . . . . . . . . . . . . . . . . . 5
2.3. Abbreviations . . . . . . . . . . . . . . . . . . . . . . 6
3. Encoding of the Operation Layer . . . . . . . . . . . . . . . 6
3.1. Picture of the Encoding . . . . . . . . . . . . . . . . . 8
3.1.1. Request and Response . . . . . . . . . . . . . . . . 8
3.1.2. Attribute Group . . . . . . . . . . . . . . . . . . . 9
3.1.3. Attribute . . . . . . . . . . . . . . . . . . . . . . 9
3.1.4. Attribute-with-one-value . . . . . . . . . . . . . . 10
3.1.5. Additional-value . . . . . . . . . . . . . . . . . . 11
3.1.6. Collection Attribute . . . . . . . . . . . . . . . . 12
3.1.7. Member Attributes . . . . . . . . . . . . . . . . . . 13
3.1.8. Alternative Picture of the Encoding of a Request or a
Response . . . . . . . . . . . . . . . . . . . . . . 14
3.2. Syntax of Encoding . . . . . . . . . . . . . . . . . . . 15
3.3. Attribute-group . . . . . . . . . . . . . . . . . . . . . 16
3.4. Required Parameters . . . . . . . . . . . . . . . . . . . 18
3.4.1. "version-number" . . . . . . . . . . . . . . . . . . 18
3.4.2. "operation-id" . . . . . . . . . . . . . . . . . . . 18
3.4.3. "status-code" . . . . . . . . . . . . . . . . . . . . 19
3.4.4. "request-id" . . . . . . . . . . . . . . . . . . . . 19
3.5. Tags . . . . . . . . . . . . . . . . . . . . . . . . . . 19
3.5.1. "delimiter-tag" Values . . . . . . . . . . . . . . . 19
3.5.2. "value-tag" Values . . . . . . . . . . . . . . . . . 20
3.6. "name-length" . . . . . . . . . . . . . . . . . . . . . . 23
3.7. (Attribute) "name" . . . . . . . . . . . . . . . . . . . 23
3.8. "value-length" . . . . . . . . . . . . . . . . . . . . . 23
3.9. (Attribute) "value" . . . . . . . . . . . . . . . . . . . 24
3.10. Data . . . . . . . . . . . . . . . . . . . . . . . . . . 25
Sweet & McDonald Standards Track [Page 2]
^L
RFC 8010 IPP/1.1: Encoding and Transport January 2017
4. Encoding of Transport Layer . . . . . . . . . . . . . . . . . 26
4.1. Printer URI, Job URI, and Job ID . . . . . . . . . . . . 26
5. IPP URI Schemes . . . . . . . . . . . . . . . . . . . . . . . 28
6. IANA Considerations . . . . . . . . . . . . . . . . . . . . . 29
7. Internationalization Considerations . . . . . . . . . . . . . 31
8. Security Considerations . . . . . . . . . . . . . . . . . . . 31
8.1. Security Conformance Requirements . . . . . . . . . . . . 31
8.1.1. Digest Authentication . . . . . . . . . . . . . . . . 32
8.1.2. Transport Layer Security (TLS) . . . . . . . . . . . 32
8.2. Using IPP with TLS . . . . . . . . . . . . . . . . . . . 33
9. Interoperability with Other IPP Versions . . . . . . . . . . 33
9.1. The "version-number" Parameter . . . . . . . . . . . . . 34
9.2. Security and URI Schemes . . . . . . . . . . . . . . . . 34
10. Changes since RFC 2910 . . . . . . . . . . . . . . . . . . . 35
11. References . . . . . . . . . . . . . . . . . . . . . . . . . 36
11.1. Normative References . . . . . . . . . . . . . . . . . . 36
11.2. Informative References . . . . . . . . . . . . . . . . . 38
Appendix A. Protocol Examples . . . . . . . . . . . . . . . . . 40
A.1. Print-Job Request . . . . . . . . . . . . . . . . . . . . 40
A.2. Print-Job Response (Successful) . . . . . . . . . . . . . 41
A.3. Print-Job Response (Failure) . . . . . . . . . . . . . . 42
A.4. Print-Job Response (Success with Attributes Ignored) . . 43
A.5. Print-URI Request . . . . . . . . . . . . . . . . . . . . 45
A.6. Create-Job Request . . . . . . . . . . . . . . . . . . . 46
A.7. Create-Job Request with Collection Attributes . . . . . . 46
A.8. Get-Jobs Request . . . . . . . . . . . . . . . . . . . . 48
A.9. Get-Jobs Response . . . . . . . . . . . . . . . . . . . . 49
Acknowledgements . . . . . . . . . . . . . . . . . . . . . . . . 51
Authors' Addresses . . . . . . . . . . . . . . . . . . . . . . . 51
Sweet & McDonald Standards Track [Page 3]
^L
RFC 8010 IPP/1.1: Encoding and Transport January 2017
1. Introduction
This document contains the rules for encoding IPP operations and
describes two layers: the transport layer and the operation layer.
The transport layer consists of an HTTP request and response. All
IPP implementations support HTTP/1.1, the relevant parts of which are
described in the following RFCs:
o Hypertext Transfer Protocol (HTTP/1.1): Message Syntax and Routing
[RFC7230]
o Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content
[RFC7231]
o Hypertext Transfer Protocol (HTTP/1.1): Conditional Requests
[RFC7232]
o Hypertext Transfer Protocol (HTTP/1.1): Caching [RFC7234]
o Hypertext Transfer Protocol (HTTP/1.1): Authentication [RFC7235]
o The 'Basic' HTTP Authentication Scheme [RFC7617]
o HTTP Digest Access Authentication [RFC7616]
IPP implementations can support HTTP/2, which is described in the
following RFCs:
o Hypertext Transfer Protocol Version 2 (HTTP/2) [RFC7540]
o HPACK - Header Compression for HTTP/2 [RFC7541]
This document specifies the HTTP headers that an IPP implementation
supports.
The operation layer consists of a message body in an HTTP request or
response. The "Internet Printing Protocol/1.1: Model and Semantics"
document [RFC8011] and subsequent extensions (collectively known as
the IPP Model) define the semantics of such a message body and the
supported values. This document specifies the encoding of an IPP
request and response message.
Sweet & McDonald Standards Track [Page 4]
^L
RFC 8010 IPP/1.1: Encoding and Transport January 2017
2. Conventions Used in This Document
2.1. Requirements Language
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this
document are to be interpreted as described in [RFC2119].
2.2. Printing Terminology
Client: Initiator of outgoing IPP session requests and sender of
outgoing IPP operation requests (Hypertext Transfer Protocol --
HTTP/1.1 [RFC7230] User Agent).
Document: An object created and managed by a Printer that contains
description, processing, and status information. A Document object
may have attached data and is bound to a single Job.
'ipp' URI: An IPP URI as defined in [RFC3510].
'ipps' URI: An IPPS URI as defined in [RFC7472].
Job: An object created and managed by a Printer that contains
description, processing, and status information. The Job also
contains zero or more Document objects.
Logical Device: A print server, software service, or gateway that
processes Jobs and either forwards or stores the processed Job or
uses one or more Physical Devices to render output.
Model: The semantics of operations, attributes, values, and status-
codes used in the Internet Printing Protocol as defined in the
Internet Printing Protocol/1.1: Model and Semantics document
[RFC8011] and subsequent extensions.
Output Device: A single Logical or Physical Device.
Physical Device: A hardware implementation of an endpoint device,
e.g., a marking engine, a fax modem, etc.
Printer: Listener for incoming IPP session requests and receiver of
incoming IPP operation requests (Hypertext Transfer Protocol --
HTTP/1.1 [RFC7230] Server) that represents one or more Physical
Devices or a Logical Device.
Sweet & McDonald Standards Track [Page 5]
^L
RFC 8010 IPP/1.1: Encoding and Transport January 2017
2.3. Abbreviations
ABNF: Augmented Backus-Naur Form [RFC5234]
ASCII: American Standard Code for Information Interchange [RFC20]
HTTP: Hypertext Transfer Protocol [RFC7230]
HTTPS: HTTP over TLS [RFC2818]
IANA: Internet Assigned Numbers Authority
IEEE: Institute of Electrical and Electronics Engineers
IESG: Internet Engineering Steering Group
IPP: Internet Printing Protocol (this document and [PWG5100.12])
ISTO: IEEE Industry Standards and Technology Organization
LPD: Line Printer Daemon Protocol [RFC1179]
PWG: IEEE-ISTO Printer Working Group
RFC: Request for Comments
TCP: Transmission Control Protocol [RFC793]
TLS: Transport Layer Security [RFC5246]
URI: Uniform Resource Identifier [RFC3986]
URL: Uniform Resource Locator [RFC3986]
UTF-8: Unicode Transformation Format - 8-bit [RFC3629]
3. Encoding of the Operation Layer
The operation layer is the message body part of the HTTP request or
response and it MUST contain a single IPP operation request or IPP
operation response. Each request or response consists of a sequence
of values and attribute groups. Attribute groups consist of a
sequence of attributes each of which is a name and value. Names and
values are ultimately sequences of octets.
The encoding consists of octets as the most primitive type. There
are several types built from octets, but three important types are
integers, character strings, and octet strings, on which most other
Sweet & McDonald Standards Track [Page 6]
^L
RFC 8010 IPP/1.1: Encoding and Transport January 2017
data types are built. Every character string in this encoding MUST
be a sequence of characters where the characters are associated with
some charset [RFC2978] and some natural language. A character string
MUST be in "reading order" with the first character in the value
(according to reading order) being the first character in the
encoding. A character string whose associated charset is US-ASCII
and whose associated natural language is US English is henceforth
called a US-ASCII-STRING. A character string whose associated
charset and natural language are specified in a request or response
as described in the Model is henceforth called a LOCALIZED-STRING.
An octet string MUST be in "Model order" with the first octet in the
value (according to the Model order) being the first octet in the
encoding. Every integer in this encoding MUST be encoded as a signed
integer using two's-complement binary encoding with big-endian format
(also known as "network order" and "most significant byte first").
The number of octets for an integer MUST be 1, 2, or 4, depending on
usage in the protocol. A one-octet integer, henceforth called a
SIGNED-BYTE, is used for the version-number and tag fields. A two-
byte integer, henceforth called a SIGNED-SHORT, is used for the
operation-id, status-code, and length fields. A four-byte integer,
henceforth called a SIGNED-INTEGER, is used for value fields and the
request-id.
The following two sections present the encoding of the operation
layer in two ways:
o informally through pictures and description
o formally through Augmented Backus-Naur Form (ABNF), as specified
by RFC 5234 [RFC5234]
An operation request or response MUST use the encoding described in
these two sections.
Sweet & McDonald Standards Track [Page 7]
^L
RFC 8010 IPP/1.1: Encoding and Transport January 2017
3.1. Picture of the Encoding
3.1.1. Request and Response
An operation request or response is encoded as follows:
-----------------------------------------------
| version-number | 2 bytes - required
-----------------------------------------------
| operation-id (request) |
| or | 2 bytes - required
| status-code (response) |
-----------------------------------------------
| request-id | 4 bytes - required
-----------------------------------------------
| attribute-group | n bytes - 0 or more
-----------------------------------------------
| end-of-attributes-tag | 1 byte - required
-----------------------------------------------
| data | q bytes - optional
-----------------------------------------------
Figure 1: IPP Message Format
The first three fields in the above diagram contain the value of
attributes described in Section 4.1.1 of the Model and Semantics
document [RFC8011].
The fourth field is the "attribute-group" field, and it occurs 0 or
more times. Each "attribute-group" field represents a single group
of attributes, such as an Operation Attributes group or a Job
Attributes group (see the Model). The Model specifies the required
attribute groups and their order for each operation request and
response.
The "end-of-attributes-tag" field is always present, even when the
"data" is not present. The Model specifies whether the "data" field
is present for each operation request and response.
Sweet & McDonald Standards Track [Page 8]
^L
RFC 8010 IPP/1.1: Encoding and Transport January 2017
3.1.2. Attribute Group
Each "attribute-group" field is encoded as follows:
-----------------------------------------------
| begin-attribute-group-tag | 1 byte
----------------------------------------------------------
| attribute | p bytes |- 0 or more
----------------------------------------------------------
Figure 2: Attribute Group Encoding
An "attribute-group" field contains zero or more "attribute" fields.
Note that the values of the "begin-attribute-group-tag" field and the
"end-of-attributes-tag" field are called "delimiter-tags".
3.1.3. Attribute
An "attribute" field is encoded as follows:
-----------------------------------------------
| attribute-with-one-value | q bytes
----------------------------------------------------------
| additional-value | r bytes |- 0 or more
----------------------------------------------------------
Figure 3: Attribute Encoding
When an attribute is single valued (e.g., "copies" with a value of
10) or multi-valued with one value (e.g., "sides-supported" with just
the value 'one-sided'), it is encoded with just an "attribute-with-
one-value" field. When an attribute is multi-valued with n values
(e.g., "sides-supported" with the values 'one-sided' and 'two-sided-
long-edge'), it is encoded with an "attribute-with-one-value" field
followed by n-1 "additional-value" fields.
Sweet & McDonald Standards Track [Page 9]
^L
RFC 8010 IPP/1.1: Encoding and Transport January 2017
3.1.4. Attribute-with-one-value
Each "attribute-with-one-value" field is encoded as follows:
-----------------------------------------------
| value-tag | 1 byte
-----------------------------------------------
| name-length (value is u) | 2 bytes
-----------------------------------------------
| name | u bytes
-----------------------------------------------
| value-length (value is v) | 2 bytes
-----------------------------------------------
| value | v bytes
-----------------------------------------------
Figure 4: Single Value Attribute Encoding
An "attribute-with-one-value" field is encoded with five subfields:
o The "value-tag" field specifies the attribute syntax, e.g., 0x44
for the attribute syntax 'keyword'.
o The "name-length" field specifies the length of the "name" field
in bytes, e.g., u in the above diagram or 15 for the name "sides-
supported".
o The "name" field contains the textual name of the attribute, e.g.,
"sides-supported".
o The "value-length" field specifies the length of the "value" field
in bytes, e.g., v in the above diagram or 9 for the (keyword)
value 'one-sided'.
o The "value" field contains the value of the attribute, e.g., the
textual value 'one-sided'.
Sweet & McDonald Standards Track [Page 10]
^L
RFC 8010 IPP/1.1: Encoding and Transport January 2017
3.1.5. Additional-value
Each "additional-value" field is encoded as follows:
-----------------------------------------------
| value-tag | 1 byte
-----------------------------------------------
| name-length (value is 0x0000) | 2 bytes
-----------------------------------------------
| value-length (value is w) | 2 bytes
-----------------------------------------------
| value | w bytes
-----------------------------------------------
Figure 5: Additional Attribute Value Encoding
An "additional-value" is encoded with four subfields:
o The "value-tag" field specifies the attribute syntax, e.g., 0x44
for the attribute syntax 'keyword'.
o The "name-length" field has the value of 0 in order to signify
that it is an "additional-value". The value of the "name-length"
field distinguishes an "additional-value" field ("name-length" is
0) from an "attribute-with-one-value" field ("name-length" is not
0).
o The "value-length" field specifies the length of the "value" field
in bytes, e.g., w in the above diagram or 19 for the (keyword)
value 'two-sided-long-edge'.
o The "value" field contains the value of the attribute, e.g., the
textual value 'two-sided-long-edge'.
Sweet & McDonald Standards Track [Page 11]
^L
RFC 8010 IPP/1.1: Encoding and Transport January 2017
3.1.6. Collection Attribute
Collection attributes create a named group containing related
"member" attributes. The "attribute-with-one-value" field for a
collection attribute is encoded as follows:
-----------------------------------------------
| value-tag (value is 0x34) | 1 byte
-----------------------------------------------
| name-length (value is u) | 2 bytes
-----------------------------------------------
| name | u bytes
-----------------------------------------------
| value-length (value is 0x0000) | 2 bytes
-----------------------------------------------------------
| member-attribute | q bytes |-0 or more
-----------------------------------------------------------
| end-value-tag (value is 0x37) | 1 byte
-----------------------------------------------
| end-name-length (value is 0x0000) | 2 bytes
-----------------------------------------------
| end-value-length (value is 0x0000) | 2 bytes
-----------------------------------------------
Figure 6: Collection Attribute Encoding
Collection attribute is encoded with eight subfields:
o The "value-tag" field specifies the start attribute syntax: 0x34
for the attribute syntax 'begCollection'.
o The "name-length" field specifies the length of the "name" field
in bytes, e.g., u in the above diagram or 9 for the name "media-
col". Additional collection attribute values use a name length of
0x0000.
o The "name" field contains the textual name of the attribute, e.g.,
"media-col".
o The "value-length" field specifies a length of 0x0000.
o The "member-attribute" field contains member attributes encoded as
defined in Section 3.1.7.
o The "end-value-tag" field specifies the end attribute syntax: 0x37
for the attribute syntax 'endCollection'.
o The "end-name-length" field specifies a length of 0x0000.
Sweet & McDonald Standards Track [Page 12]
^L
RFC 8010 IPP/1.1: Encoding and Transport January 2017
o The "end-value-length" field specifies a length of 0x0000.
3.1.7. Member Attributes
Each "member-attribute" field is encoded as follows:
-----------------------------------------------
| value-tag (value is 0x4a) | 1 byte
-----------------------------------------------
| name-length (value is 0x0000) | 2 bytes
-----------------------------------------------
| value-length (value is w) | 2 bytes
-----------------------------------------------
| value (member-name) | w bytes
-----------------------------------------------
| member-value-tag | 1 byte
-----------------------------------------------
| name-length (value is 0x0000) | 2 bytes
-----------------------------------------------
| member-value-length (value is x) | 2 bytes
-----------------------------------------------
| member-value | x bytes
-----------------------------------------------
Figure 7: Member Attribute Encoding
A "member-attribute" is encoded with eight subfields:
o The "value-tag" field specifies 0x4a for the attribute syntax
'memberAttrName'.
o The "name-length" field has the value of 0 in order to signify
that it is a "member-attribute" contained in the collection.
o The "value-length" field specifies the length of the "value" field
in bytes, e.g., w in the above diagram or 10 for the member
attribute name 'media-type'. Additional member attribute values
are specified using a value length of 0.
o The "value" field contains the name of the member attribute, e.g.,
the textual value 'media-type'.
o The "member-value-tag" field specifies the attribute syntax for
the member attribute, e.g., 0x44 for the attribute syntax
'keyword'.
Sweet & McDonald Standards Track [Page 13]
^L
RFC 8010 IPP/1.1: Encoding and Transport January 2017
o The second "name-length" field has the value of 0 in order to
signify that it is a "member-attribute" contained in the
collection.
o The "member-value-length" field specifies the length of the member
attribute value, e.g., x in the above diagram or 10 for the value
'stationery'.
o The "member-value" field contains the value of the attribute,
e.g., the textual value 'stationery'.
3.1.8. Alternative Picture of the Encoding of a Request or a Response
From the standpoint of a parser that performs an action based on a
"tag" value, the encoding consists of:
-----------------------------------------------
| version-number | 2 bytes - required
-----------------------------------------------
| operation-id (request) |
| or | 2 bytes - required
| status-code (response) |
-----------------------------------------------
| request-id | 4 bytes - required
-----------------------------------------------------------
| tag (delimiter-tag or value-tag) | 1 byte |
----------------------------------------------- |-0 or more
| empty or rest of attribute | x bytes |
-----------------------------------------------------------
| end-of-attributes-tag | 1 byte - required
-----------------------------------------------
| data | y bytes - optional
-----------------------------------------------
Figure 8: Encoding Based on Value Tags
The following shows what fields the parser would expect after each
type of "tag":
o "begin-attribute-group-tag": expect zero or more "attribute"
fields
o "value-tag": expect the remainder of an "attribute-with-one-value"
or an "additional-value"
o "end-of-attributes-tag": expect that "attribute" fields are
complete and there is optional "data"
Sweet & McDonald Standards Track [Page 14]
^L
RFC 8010 IPP/1.1: Encoding and Transport January 2017
3.2. Syntax of Encoding
The ABNF [RFC5234] syntax for an IPP message is shown in Figure 9.
ipp-message = ipp-request / ipp-response
ipp-request = version-number operation-id request-id
*attribute-group end-of-attributes-tag data
ipp-response = version-number status-code request-id
*attribute-group end-of-attributes-tag data
version-number = major-version-number minor-version-number
major-version-number = SIGNED-BYTE
minor-version-number = SIGNED-BYTE
operation-id = SIGNED-SHORT ; mapping from model
status-code = SIGNED-SHORT ; mapping from model
request-id = SIGNED-INTEGER ; whose value is > 0
attribute-group = begin-attribute-group-tag *attribute
attribute = attribute-with-one-value *additional-value
attribute-with-one-value = value-tag name-length name
value-length value
additional-value = value-tag zero-name-length
value-length value
name-length = SIGNED-SHORT ; number of octets of 'name'
name = LALPHA *( LALPHA / DIGIT / "-" / "_" / "." )
value-length = SIGNED-SHORT ; number of octets of 'value'
value = OCTET-STRING
data = OCTET-STRING
zero-name-length = %x00.00 ; name-length of 0
value-tag = %x10-ff ; see Section 3.5.2
begin-attribute-group-tag = %x00-02 / %x04-0f ; see Section 3.5.1
end-of-attributes-tag = %x03 ; tag of 3
; see Section 3.5.1
SIGNED-BYTE = BYTE
SIGNED-SHORT = 2BYTE
SIGNED-INTEGER = 4BYTE
DIGIT = %x30-39 ; "0" to "9"
LALPHA = %x61-7A ; "a" to "z"
BYTE = %x00-ff
OCTET-STRING = *BYTE
Figure 9: ABNF of IPP Message Format
Sweet & McDonald Standards Track [Page 15]
^L
RFC 8010 IPP/1.1: Encoding and Transport January 2017
Figure 10 defines additional terms that are referenced in this
document and provides an alternate grouping of the delimiter tags.
delimiter-tag = begin-attribute-group-tag / ; see Section 3.5.1
end-of-attributes-tag
begin-attribute-group-tag = %x00 / operation-attributes-tag /
job-attributes-tag / printer-attributes-tag /
unsupported-attributes-tag / future-group-tags
operation-attributes-tag = %x01 ; tag of 1
job-attributes-tag = %x02 ; tag of 2
end-of-attributes-tag = %x03 ; tag of 3
printer-attributes-tag = %x04 ; tag of 4
unsupported-attributes-tag = %x05 ; tag of 5
future-group-tags = %x06-0f ; future extensions
Figure 10: ABNF for Attribute Group Tags
3.3. Attribute-group
Each "attribute-group" field MUST be encoded with the "begin-
attribute-group-tag" field followed by zero or more "attribute" sub-
fields.
Sweet & McDonald Standards Track [Page 16]
^L
RFC 8010 IPP/1.1: Encoding and Transport January 2017
Table 1 maps the Model group name to value of the "begin-attribute-
group-tag" field:
+----------------+--------------------------------------------------+
| Model Document | "begin-attribute-group-tag" field values |
| Group | |
+----------------+--------------------------------------------------+
| Operation | "operations-attributes-tag" |
| Attributes | |
+----------------+--------------------------------------------------+
| Job Template | "job-attributes-tag" |
| Attributes | |
+----------------+--------------------------------------------------+
| Job Object | "job-attributes-tag" |
| Attributes | |
+----------------+--------------------------------------------------+
| Unsupported | "unsupported-attributes-tag" |
| Attributes | |
+----------------+--------------------------------------------------+
| Requested | (Get-Job-Attributes) "job-attributes-tag" |
| Attributes | |
+----------------+--------------------------------------------------+
| Requested | (Get-Printer-Attributes)"printer-attributes-tag" |
| Attributes | |
+----------------+--------------------------------------------------+
| Document | in a special position at the end of the message |
| Content | as described in Section 3.1.1. |
+----------------+--------------------------------------------------+
Table 1: Group Values
For each operation request and response, the Model prescribes the
required and optional attribute groups, along with their order.
Within each attribute group, the Model prescribes the required and
optional attributes, along with their order.
When the Model requires an attribute group in a request or response
and the attribute group contains zero attributes, a request or
response SHOULD encode the attribute group with the "begin-attribute-
group-tag" field followed by zero "attribute" fields. For example,
if the Client requests a single unsupported attribute with the Get-
Printer-Attributes operation, the Printer MUST return no "attribute"
fields, and it SHOULD return a "begin-attribute-group-tag" field for
the Printer Attributes group. The Unsupported Attributes group is
not such an example. According to the Model, the Unsupported
Attributes group SHOULD be present only if the Unsupported Attributes
group contains at least one attribute.
Sweet & McDonald Standards Track [Page 17]
^L
RFC 8010 IPP/1.1: Encoding and Transport January 2017
A receiver of a request MUST be able to process the following as
equivalent empty attribute groups:
a. A "begin-attribute-group-tag" field with zero following
"attribute" fields.
b. A missing, but expected, "begin-attribute-group-tag" field.
When the Model requires a sequence of an unknown number of attribute
groups, each of the same type, the encoding MUST contain one "begin-
attribute-group-tag" field for each attribute group, even when an
"attribute-group" field contains zero "attribute" sub-fields. For
example, the Get-Jobs operation may return zero attributes for some
Jobs and not others. The "begin-attribute-group-tag" field followed
by zero "attribute" fields tells the recipient that there is a Job in
queue for which no information is available except that it is in the
queue.
3.4. Required Parameters
Some operation elements are called parameters in the Model. They
MUST be encoded in a special position and they MUST NOT appear as
operation attributes. These parameters are described in the
subsections below.
3.4.1. "version-number"
The "version-number" field consists of a major and minor version-
number, each of which is represented by a SIGNED-BYTE. The major
version-number is the first byte of the encoding and the minor
version-number is the second byte of the encoding. The protocol
described in [RFC8011] has a major version-number of 1 (0x01) and a
minor version-number of 1 (0x01). The ABNF for these two bytes is
%x01.01.
Note: See Section 9 for more information on the "version-number"
field and IPP version numbers.
3.4.2. "operation-id"
The "operation-id" field contains an operation-id value as defined in
the Model. The value is encoded as a SIGNED-SHORT and is located in
the third and fourth bytes of the encoding of an operation request.
Sweet & McDonald Standards Track [Page 18]
^L
RFC 8010 IPP/1.1: Encoding and Transport January 2017
3.4.3. "status-code"
The "status-code" field contains a status-code value as defined in
the Model. The value is encoded as a SIGNED-SHORT and is located in
the third and fourth bytes of the encoding of an operation response.
If an IPP status-code is returned, then the HTTP status-code MUST be
200 (OK). With any other HTTP status-code value, the HTTP response
MUST NOT contain an IPP message body, and thus no IPP status-code is
returned.
3.4.4. "request-id"
The "request-id" field contains the request-id value as defined in
the Model. The value is encoded as a SIGNED-INTEGER and is located
in the fifth through eighth bytes of the encoding.
3.5. Tags
There are two kinds of tags:
o delimiter tags: delimit major sections of the protocol, namely
attribute groups and data
o value tags: specify the type of each attribute value
Tags are part of the IANA IPP registry [IANA-IPP]
3.5.1. "delimiter-tag" Values
Table 2 specifies the values for the delimiter tags defined in this
document. These tags are registered, along with tags defined in
other documents, in the "Attribute Group Tags" registry.
+-----------------+------------------------------+
| Tag Value (Hex) | Meaning |
+-----------------+------------------------------+
| 0x00 | Reserved |
| 0x01 | "operation-attributes-tag" |
| 0x02 | "job-attributes-tag" |
| 0x03 | "end-of-attributes-tag" |
| 0x04 | "printer-attributes-tag" |
| 0x05 | "unsupported-attributes-tag" |
+-----------------+------------------------------+
Table 2: "delimiter-tag" Values
Sweet & McDonald Standards Track [Page 19]
^L
RFC 8010 IPP/1.1: Encoding and Transport January 2017
When a "begin-attribute-group-tag" field occurs in the protocol, it
means that zero or more following attributes up to the next group tag
are attributes belonging to the attribute group specified by the
value of the "begin-attribute-group-tag". For example, if the value
of "begin-attribute-group-tag" is 0x01, the following attributes are
members of the Operations Attributes group.
The "end-of-attributes-tag" (value 0x03) MUST occur exactly once in
an operation and MUST be the last "delimiter-tag". If the operation
has a document-data group, the Document data in that group follows
the "end-of-attributes-tag".
The order and presence of "attribute-group" fields (whose beginning
is marked by the "begin-attribute-group-tag" subfield) for each
operation request and each operation response MUST be that defined in
the Model.
A Printer MUST treat a "delimiter-tag" (values from 0x00 through
0x0f) differently from a "value-tag" (values from 0x10 through 0xff)
so that the Printer knows there is an entire attribute group as
opposed to a single value.
3.5.2. "value-tag" Values
The remaining tables show values for the "value-tag" field, which is
the first octet of an attribute. The "value-tag" field specifies the
type of the value of the attribute.
Table 3 specifies the "out-of-band" values for the "value-tag" field
defined in this document. These tags are registered, along with tags
defined in other documents, in the "Out-of-Band Attribute Value Tags"
registry.
+-----------------+-------------+
| Tag Value (Hex) | Meaning |
+-----------------+-------------+
| 0x10 | unsupported |
| 0x12 | unknown |
| 0x13 | no-value |
+-----------------+-------------+
Table 3: Out-of-Band Values
Sweet & McDonald Standards Track [Page 20]
^L
RFC 8010 IPP/1.1: Encoding and Transport January 2017
Table 4 specifies the integer values defined in this document for the
"value-tag" field; they are registered in the "Attribute Syntaxes"
registry.
+----------------+--------------------------------------------------+
| Tag Value | Meaning |
| (Hex) | |
+----------------+--------------------------------------------------+
| 0x20 | Unassigned integer data type (see IANA IPP |
| | registry) |
| 0x21 | integer |
| 0x22 | boolean |
| 0x23 | enum |
| 0x24-0x2f | Unassigned integer data types (see IANA IPP |
| | registry) |
+----------------+--------------------------------------------------+
Table 4: Integer Tags
Table 5 specifies the octetString values defined in this document for
the "value-tag" field; they are registered in the "Attribute
Syntaxes" registry.
+---------------+---------------------------------------------------+
| Tag Value | Meaning |
| (Hex) | |
+---------------+---------------------------------------------------+
| 0x30 | octetString with an unspecified format |
| 0x31 | dateTime |
| 0x32 | resolution |
| 0x33 | rangeOfInteger |
| 0x34 | begCollection |
| 0x35 | textWithLanguage |
| 0x36 | nameWithLanguage |
| 0x37 | endCollection |
| 0x38-0x3f | Unassigned octetString data types (see IANA IPP |
| | registry) |
+---------------+---------------------------------------------------+
Table 5: octetString Tags
Sweet & McDonald Standards Track [Page 21]
^L
RFC 8010 IPP/1.1: Encoding and Transport January 2017
Table 6 specifies the character-string values defined in this
document for the "value-tag" field; they are registered in the
"Attribute Syntaxes" registry.
+---------------+---------------------------------------------------+
| Tag Value | Meaning |
| (Hex) | |
+---------------+---------------------------------------------------+
| 0x40 | Unassigned character-string data type (see IANA |
| | IPP registry) |
| 0x41 | textWithoutLanguage |
| 0x42 | nameWithoutLanguage |
| 0x43 | Unassigned character-string data type (see IANA |
| | IPP registry) |
| 0x44 | keyword |
| 0x45 | uri |
| 0x46 | uriScheme |
| 0x47 | charset |
| 0x48 | naturalLanguage |
| 0x49 | mimeMediaType |
| 0x4a | memberAttrName |
| 0x4b-0x5f | Unassigned character-string data types (see IANA |
| | IPP registry) |
+---------------+---------------------------------------------------+
Table 6: String Tags
Note: An attribute value always has a type, which is explicitly
specified by its tag; one such tag value is "nameWithoutLanguage".
An attribute's name has an implicit type, which is keyword.
The values 0x60-0xff are reserved for future type definitions in
Standards Track documents.
The tag 0x7f is reserved for extending types beyond the 255 values
available with a single byte. A tag value of 0x7f MUST signify that
the first four bytes of the value field are interpreted as the tag
value. Note this future extension doesn't affect parsers that are
unaware of this special tag. The tag is like any other unknown tag,
and the value length specifies the length of a value, which contains
a value that the parser treats atomically. Values from 0x00000000 to
0x3fffffff are reserved for definition in future Standards Track
documents. The values 0x40000000 to 0x7fffffff are reserved for
vendor extensions.
Sweet & McDonald Standards Track [Page 22]
^L
RFC 8010 IPP/1.1: Encoding and Transport January 2017
3.6. "name-length"
The "name-length" field consists of a SIGNED-SHORT and specifies the
number of octets in the immediately following "name" field. The
value of this field excludes the two bytes of the "name-length"
field. For example, if the "name" field contains 'sides', the value
of this field is 5.
If a "name-length" field has a value of zero, the following "name"
field is empty and the following value is treated as an additional
value for the attribute encoded in the nearest preceding "attribute-
with-one-value" field. Within an attribute group, if two or more
attributes have the same name, the attribute group is malformed (see
[RFC8011]). The zero-length name is the only mechanism for multi-
valued attributes.
3.7. (Attribute) "name"
The "name" field contains the name of an attribute. The Model
specifies such names.
3.8. "value-length"
The "value-length" field consists of a SIGNED-SHORT, which specifies
the number of octets in the immediately following "value" field. The
value of this field excludes the two bytes of the "value-length"
field. For example, if the "value" field contains the keyword
(string) value 'one-sided', the value of this field is 9.
For any of the types represented by binary signed integers, the
sender MUST encode the value in exactly four octets.
For any of the types represented by binary signed bytes, e.g., the
boolean type, the sender MUST encode the value in exactly one octet.
For any of the types represented by character strings, the sender
MUST encode the value with all the characters of the string and
without any padding characters.
For "out-of-band" values for the "value-tag" field defined in this
document, such as 'unsupported', the "value-length" MUST be 0 and the
"value" empty; the "value" has no meaning when the "value-tag" has
one of these "out-of-band" values. For future "out-of-band" "value-
tag" fields, the same rule holds unless the definition explicitly
states that the "value-length" MAY be non-zero and the "value" non-
empty
Sweet & McDonald Standards Track [Page 23]
^L
RFC 8010 IPP/1.1: Encoding and Transport January 2017
3.9. (Attribute) "value"
The syntax types (specified by the "value-tag" field) and most of the
details of the representation of attribute values are defined in the
Model. Table 7 augments the information in the Model and defines the
syntax types from the Model in terms of the five basic types defined
in Section 3. The five types are US-ASCII-STRING, LOCALIZED-STRING,
SIGNED-INTEGER, SIGNED-SHORT, SIGNED-BYTE, and OCTET-STRING.
+----------------------+--------------------------------------------+
| Syntax of Attribute | Encoding |
| Value | |
+----------------------+--------------------------------------------+
| textWithoutLanguage, | LOCALIZED-STRING |
| nameWithoutLanguage | |
+----------------------+--------------------------------------------+
| textWithLanguage | OCTET-STRING consisting of four fields: a |
| | SIGNED-SHORT, which is the number of |
| | octets in the following field; a value of |
| | type natural-language; a SIGNED-SHORT, |
| | which is the number of octets in the |
| | following field; and a value of type |
| | textWithoutLanguage. The length of a |
| | textWithLanguage value MUST be 4 + the |
| | value of field a + the value of field c. |
+----------------------+--------------------------------------------+
| nameWithLanguage | OCTET-STRING consisting of four fields: a |
| | SIGNED-SHORT, which is the number of |
| | octets in the following field; a value of |
| | type natural-language; a SIGNED-SHORT, |
| | which is the number of octets in the |
| | following field; and a value of type |
| | nameWithoutLanguage. The length of a |
| | nameWithLanguage value MUST be 4 + the |
| | value of field a + the value of field c. |
+----------------------+--------------------------------------------+
| charset, | US-ASCII-STRING |
| naturalLanguage, | |
| mimeMediaType, | |
| keyword, uri, and | |
| uriScheme | |
+----------------------+--------------------------------------------+
| boolean | SIGNED-BYTE where 0x00 is 'false' and 0x01 |
| | is 'true' |
+----------------------+--------------------------------------------+
| integer and enum | a SIGNED-INTEGER |
Sweet & McDonald Standards Track [Page 24]
^L
RFC 8010 IPP/1.1: Encoding and Transport January 2017
+----------------------+--------------------------------------------+
| dateTime | OCTET-STRING consisting of eleven octets |
| | whose contents are defined by |
| | "DateAndTime" in RFC 2579 [RFC2579] |
+----------------------+--------------------------------------------+
| resolution | OCTET-STRING consisting of nine octets of |
| | two SIGNED-INTEGERs followed by a SIGNED- |
| | BYTE. The first SIGNED-INTEGER contains |
| | the value of cross-feed direction |
| | resolution. The second SIGNED-INTEGER |
| | contains the value of feed direction |
| | resolution. The SIGNED-BYTE contains the |
| | units value. |
+----------------------+--------------------------------------------+
| rangeOfInteger | Eight octets consisting of two SIGNED- |
| | INTEGERs. The first SIGNED-INTEGER |
| | contains the lower bound and the second |
| | SIGNED-INTEGER contains the upper bound. |
+----------------------+--------------------------------------------+
| 1setOf X | Encoding according to the rules for an |
| | attribute with more than one value. Each |
| | value X is encoded according to the rules |
| | for encoding its type. |
+----------------------+--------------------------------------------+
| octetString | OCTET-STRING |
+----------------------+--------------------------------------------+
| collection | Encoding as defined in Section 3.1.6. |
+----------------------+--------------------------------------------+
Table 7: Attribute Value Encoding
The attribute syntax type of the value determines its encoding and
the value of its "value-tag".
3.10. Data
The "data" field MUST include any data required by the operation.
Sweet & McDonald Standards Track [Page 25]
^L
RFC 8010 IPP/1.1: Encoding and Transport January 2017
4. Encoding of Transport Layer
HTTP/1.1 [RFC7230] is the REQUIRED transport layer for this protocol.
HTTP/2 [RFC7540] is an OPTIONAL transport layer for this protocol.
The operation layer has been designed with the assumption that the
transport layer contains the following information:
o the target URI for the operation; and
o the total length of the data in the operation layer, either as a
single length or as a sequence of chunks each with a length.
Printer implementations MUST support HTTP over the IANA-assigned
well-known port 631 (the IPP default port), although a Printer
implementation can support HTTP over some other port as well.
Each HTTP operation MUST use the POST method where the request-target
is the object target of the operation and where the "Content-Type" of
the message body in each request and response MUST be "application/
ipp". The message body MUST contain the operation layer and MUST
have the syntax described in Section 3.2, "Syntax of Encoding". A
Client implementation MUST adhere to the rules for a Client described
for HTTP [RFC7230]. A Printer (server) implementation MUST adhere to
the rules for an origin server described for HTTP [RFC7230].
An IPP server sends a response for each request that it receives. If
an IPP server detects an error, it MAY send a response before it has
read the entire request. If the HTTP layer of the IPP server
completes processing the HTTP headers successfully, it MAY send an
intermediate response, such as "100 Continue", with no IPP data
before sending the IPP response. A Client MUST expect such a variety
of responses from an IPP server. For further information on HTTP,
consult the HTTP documents [RFC7230].
An HTTP/1.1 server MUST support chunking for IPP requests, and an IPP
Client MUST support chunking for IPP responses according to HTTP/1.1
[RFC7230].
4.1. Printer URI, Job URI, and Job ID
All Printer and Job objects are identified by a Uniform Resource
Identifier (URI) [RFC3986] so that they can be persistently and
unambiguously referenced. Jobs can also be identified by a
combination of Printer URI and Job ID.
Sweet & McDonald Standards Track [Page 26]
^L
RFC 8010 IPP/1.1: Encoding and Transport January 2017
Some operation elements are encoded twice, once as the request-target
on the HTTP request-line and a second time as a REQUIRED operation
attribute in the application/ipp entity. These attributes are the
target for the operation and are called "printer-uri" and "job-uri".
Note: The target URI is included twice in an operation referencing
the same IPP object, but the two URIs can be different. For example,
the HTTP request-target can be relative while the IPP request URI is
absolute.
HTTP allows Clients to generate and send a relative URI rather than
an absolute URI. A relative URI identifies a resource with the scope
of the HTTP server but does not include scheme, host, or port. The
following statements characterize how URIs are used in the mapping of
IPP onto HTTP:
1. Although potentially redundant, a Client MUST supply the target
of the operation both as an operation attribute and as a URI at
the HTTP layer. The rationale for this decision is to maintain a
consistent set of rules for mapping "application/ipp" to possibly
many communication layers, even where URIs are not used as the
addressing mechanism in the transport layer.
2. Even though these two URIs might not be literally identical (one
being relative and the other being absolute), they MUST both
reference the same IPP object.
3. The URI in the HTTP layer is either relative or absolute and is
used by the HTTP server to route the HTTP request to the correct
resource relative to that HTTP server.
4. Once the HTTP server resource begins to process the HTTP request,
it can get the reference to the appropriate IPP Printer object
from either the HTTP URI (using to the context of the HTTP server
for relative URIs) or from the URI within the operation request;
the choice is up to the implementation.
5. HTTP URIs can be relative or absolute, but the target URI in the
IPP operation attribute MUST be an absolute URI.
Sweet & McDonald Standards Track [Page 27]
^L
RFC 8010 IPP/1.1: Encoding and Transport January 2017
5. IPP URI Schemes
The IPP URI schemes are 'ipp' [RFC3510] and 'ipps' [RFC7472].
Clients and Printers MUST support the ipp-URI value in the following
IPP attributes:
o Job attributes:
* job-uri
* job-printer-uri
o Printer attributes:
* printer-uri-supported
o Operation attributes:
* job-uri
* printer-uri
Each of the above attributes identifies a Printer or Job. The
ipp-URI and ipps-URI are intended as the value of the attributes in
this list. All of these attributes have a syntax type of 'uri', but
there are attributes with a syntax type of 'uri' that do not use the
'ipp' scheme, e.g., "job-more-info".
If a Printer registers its URI with a directory service, the Printer
MUST register an ipp-URI or ipps-URI.
When a Client sends a request, it MUST convert a target ipp-URI to a
target http-URL (or ipps-URI to a target https-URI) for the HTTP
layer according to the following steps:
1. change the 'ipp' scheme to 'http' or 'ipps' scheme to 'https';
and
2. add an explicit port 631 if the ipp-URL or ipps-URL does not
contain an explicit port. Note that port 631 is the IANA-
assigned well-known port for the 'ipp' and 'ipps' schemes.
The Client MUST use the target http-URL or https-URL in both the HTTP
request-line and HTTP headers, as specified by HTTP [RFC7230].
However, the Client MUST use the target ipp-URI or ipps-URI for the
value of the "printer-uri" or "job-uri" operation attribute within
the application/ipp body of the request. The server MUST use the
Sweet & McDonald Standards Track [Page 28]
^L
RFC 8010 IPP/1.1: Encoding and Transport January 2017
ipp-URI or ipps-URI for the value of the "printer-uri", "job-uri", or
"printer-uri-supported" attributes within the application/ipp body of
the response.
For example, when an IPP Client sends a request directly, i.e., no
proxy, to an ipp-URI "ipp://printer.example.com/ipp/print/myqueue",
it opens a TCP connection to port 631 (the IPP implicit port) on the
host "printer.example.com" and sends the following data:
POST /ipp/print/myqueue HTTP/1.1
Host: printer.example.com:631
Content-type: application/ipp
Transfer-Encoding: chunked
...
"printer-uri" 'ipp://printer.example.com/ipp/print/myqueue'
(encoded in application/ipp message body)
...
Figure 11: Direct IPP Request
As another example, when an IPP Client sends the same request as
above via a proxy "myproxy.example.com", it opens a TCP connection to
the proxy port 8080 on the proxy host "myproxy.example.com" and sends
the following data:
POST http://printer.example.com:631/ipp/print/myqueue HTTP/1.1
Host: printer.example.com:631
Content-type: application/ipp
Transfer-Encoding: chunked
...
"printer-uri" 'ipp://printer.example.com/ipp/print/myqueue'
(encoded in application/ipp message body)
...
Figure 12: Proxied IPP Request
The proxy then connects to the IPP origin server with headers that
are the same as the "no-proxy" example above.
6. IANA Considerations
The IANA-PRINTER-MIB [RFC3805] has been updated to reference this
document; the current version is available from
<http://www.iana.org>.
See the IANA Considerations in the document "Internet Printing
Protocol/1.1: Model and Semantics" [RFC8011] for information on IANA
considerations for IPP extensions. IANA has updated the existing
Sweet & McDonald Standards Track [Page 29]
^L
RFC 8010 IPP/1.1: Encoding and Transport January 2017
'application/ipp' media type registration (whose contents are defined
in Section 3 "Encoding of the Operation Layer") with the following
information.
Type name: application
Subtype name: ipp
Required parameters: N/A
Optional parameters: N/A
Encoding considerations: IPP requests/responses MAY contain long
lines and ALWAYS contain binary data (for example, attribute value
lengths).
Security considerations: IPP requests/responses do not introduce any
security risks not already inherent in the underlying transport
protocols. Protocol mixed-version interworking rules in [RFC8011] as
well as protocol-encoding rules in this document are complete and
unambiguous. See also the security considerations in this document
and [RFC8011].
Interoperability considerations: IPP requests (generated by Clients)
and responses (generated by servers) MUST comply with all conformance
requirements imposed by the normative specifications [RFC8011] and
this document. Protocol-encoding rules specified in RFC 8010 are
comprehensive so that interoperability between conforming
implementations is guaranteed (although support for specific optional
features is not ensured). Both the "charset" and "natural-language"
of all IPP attribute values that are a LOCALIZED-STRING are explicit
within IPP requests/responses (without recourse to any external
information in HTTP, SMTP, or other message transport headers).
Published specifications: RFCs 8010 and 8011
Applications that use this media type: Internet Printing Protocol
(IPP) print clients and print servers that communicate using HTTP/
HTTPS or other transport protocols. Messages of type "application/
ipp" are self-contained and transport independent, including
"charset" and "natural-language" context for any LOCALIZED-STRING
value.
Fragment identifier considerations: N/A
Sweet & McDonald Standards Track [Page 30]
^L
RFC 8010 IPP/1.1: Encoding and Transport January 2017
Additional information:
Deprecated alias names for this type: N/A
Magic number(s): N/A
File extension(s): N/A
Macintosh file type code(s): N/A
Person & email address to contact for further information:
ISTO PWG IPP Workgroup <ipp@pwg.org>
Intended usage: COMMON
Restrictions on usage: N/A
Author: ISTO PWG IPP Workgroup <ipp@pwg.org>
Change controller: ISTO PWG IPP Workgroup <ipp@pwg.org>
Provisional registration? (standards tree only): No
7. Internationalization Considerations
See the section on "Internationalization Considerations" in the
document "Internet Printing Protocol/1.1: Model and Semantics"
[RFC8011] for information on internationalization. This document
adds no additional issues.
8. Security Considerations
The IPP Model and Semantics document [RFC8011] discusses high-level
security requirements (Client Authentication, Server Authentication,
and Operation Privacy). Client Authentication is the mechanism by
which the Client proves its identity to the server in a secure
manner. Server Authentication is the mechanism by which the server
proves its identity to the Client in a secure manner. Operation
Privacy is defined as a mechanism for protecting operations from
eavesdropping.
Message Integrity is addressed in the document "Internet Printing
Protocol (IPP) over HTTPS Transport Binding and the 'ipps' URI
Scheme" [RFC7472].
8.1. Security Conformance Requirements
This section defines the security requirements for IPP Clients and
IPP objects.
Sweet & McDonald Standards Track [Page 31]
^L
RFC 8010 IPP/1.1: Encoding and Transport January 2017
8.1.1. Digest Authentication
IPP Clients and Printers SHOULD support Digest Authentication
[RFC7616]. Use of the Message Integrity feature (qop="auth-int") is
OPTIONAL.
Note: Previous versions of this specification required support for
the MD5 algorithms; however, [RFC7616] makes SHA2-256 mandatory to
implement and deprecates MD5, only allowing its use for backwards
compatibility reasons. IPP implementations that support Digest
Authentication MUST support SHA2-256 and SHOULD support MD5 for
backwards compatibility.
Note: The reason that IPP Clients and Printers SHOULD (rather than
MUST) support Digest Authentication is that there is a certain class
of Output Devices where it does not make sense. Specifically, a low-
end device with limited ROM space and low paper throughput may not
need Client Authentication. This class of device typically requires
firmware designers to make trade-offs between protocols and
functionality to arrive at the lowest-cost solution possible.
Factored into the designer's decisions is not just the size of the
code, but also the testing, maintenance, usefulness, and time-to-
market impact for each feature delivered to the customer. Forcing
such low-end devices to provide security in order to claim IPP/1.1
conformance would not make business sense. Print devices that have
high-volume throughput and have available ROM space will typically
provide support for Client Authentication that safeguards the device
from unauthorized access because these devices are prone to a high
loss of consumables and paper if unauthorized access occurs.
8.1.2. Transport Layer Security (TLS)
IPP Clients and Printers SHOULD support Transport Layer Security
(TLS) [RFC5246] [RFC7525] for Server Authentication and Operation
Privacy. IPP Printers MAY also support TLS for Client
Authentication. IPP Clients and Printers MAY support Basic
Authentication [RFC7617] for User Authentication if the channel is
secure, e.g., IPP over HTTPS [RFC7472]. IPP Clients and Printers
SHOULD NOT support Basic Authentication over insecure channels.
The IPP Model and Semantics document [RFC8011] defines two Printer
attributes ("uri-authentication-supported" and "uri-security-
supported") that the Client can use to discover the security policy
of a Printer. That document also outlines IPP-specific security
considerations and is the primary reference for security implications
with regard to the IPP itself.
Sweet & McDonald Standards Track [Page 32]
^L
RFC 8010 IPP/1.1: Encoding and Transport January 2017
Note: Because previous versions of this specification did not require
TLS support, this version cannot require it for IPP/1.1. However,
since printing often involves a great deal of sensitive or private
information (medical reports, performance reviews, banking
information, etc.) and network monitoring is pervasive ([RFC7258]),
implementors are strongly encouraged to include TLS support.
Note: Because IPP Printers typically use self-signed X.509
certificates, IPP Clients SHOULD support Trust On First Use (defined
in [RFC7435]) in addition to traditional X.509 certificate
validation.
8.2. Using IPP with TLS
IPP uses the "Upgrading to TLS Within HTTP/1.1" mechanism [RFC2817]
for 'ipp' URIs. The Client requests a secure TLS connection by using
the HTTP "Upgrade" header while the server agrees in the HTTP
response. The switch to TLS occurs either because the server grants
the Client's request to upgrade to TLS or a server asks to switch to
TLS in its response. Secure communication begins with a server's
response to switch to TLS.
IPP uses the "HTTPS: HTTP over TLS" mechanism [RFC2818] for 'ipps'
URIs. The Client and server negotiate a secure TLS connection
immediately and unconditionally.
9. Interoperability with Other IPP Versions
It is beyond the scope of this specification to mandate conformance
with versions of IPP other than 1.1. IPP was deliberately designed,
however, to make supporting other versions easy. IPP objects
(Printers, Jobs, etc.) SHOULD:
o understand any valid request whose major "version-number" is
greater than 0; and
o respond appropriately with a response containing the same
"version-number" parameter value used by the Client in the request
(if the Client-supplied "version-number" is supported) or the
highest "version-number" supported by the Printer (if the Client-
supplied "version-number" is not supported).
IPP Clients SHOULD:
o understand any valid response whose major "version-number" is
greater than 0.
Sweet & McDonald Standards Track [Page 33]
^L
RFC 8010 IPP/1.1: Encoding and Transport January 2017
9.1. The "version-number" Parameter
The following are rules regarding the "version-number" parameter (see
Section 3.3):
1. Clients MUST send requests containing a "version-number"
parameter with the highest supported value, e.g., '1.1', '2.0',
etc., and SHOULD try supplying alternate version numbers if they
receive a 'server-error-version-not-supported' error return in a
response. For example, if a Client sends an IPP/2.0 request that
is rejected with the 'server-error-version-not-supported' error
and an IPP/1.1 "version-number", it SHOULD retry by sending an
IPP/1.1 request.
2. IPP objects (Printers, Jobs, etc.) MUST accept requests
containing a "version-number" parameter with a '1.1' value (or
reject the request for reasons other than 'server-error-version-
not-supported').
3. IPP objects SHOULD either accept requests whose major version is
greater than 0 or reject such requests with the 'server-error-
version-not-supported' status-code. See Section 4.1.8 of
[RFC8011].
4. In any case, security MUST NOT be compromised when a Client
supplies a lower "version-number" parameter in a request. For
example, if an IPP/2.0 conforming Printer accepts version '1.1'
requests and is configured to enforce Digest Authentication, it
MUST do the same for a version '1.1' request.
9.2. Security and URI Schemes
The following are rules regarding security, the "version-number"
parameter, and the URI scheme supplied in target attributes and
responses:
1. When a Client supplies a request, the "printer-uri" or "job-uri"
target operation attribute MUST have the same scheme as that
indicated in one of the values of the "printer-uri-supported"
Printer attribute.
2. When the Printer returns the "job-printer-uri" or "job-uri" Job
Description attributes, it SHOULD return the same scheme ('ipp',
'ipps', etc.) that the Client supplied in the "printer-uri" or
"job-uri" target operation attributes in the Get-Job-Attributes
or Get-Jobs request, rather than the scheme used when the Job was
created. However, when a Client requests Job attributes using
the Get-Job-Attributes or Get-Jobs operations, the Jobs and Job
Sweet & McDonald Standards Track [Page 34]
^L
RFC 8010 IPP/1.1: Encoding and Transport January 2017
attributes that the Printer returns depends on: (1) the security
in effect when the Job was created, (2) the security in effect in
the query request, and (3) the security policy in force.
3. The Printer MUST enforce its security and privacy policies based
on the owner of the IPP object and the URI scheme and/or
credentials supplied by the Client in the current request.
10. Changes since RFC 2910
The following changes have been made since the publication of
RFC 2910:
o Added references to current IPP extension specifications.
o Added optional support for HTTP/2.
o Added collection attribute syntax from RFC 3382.
o Fixed typographical errors.
o Now reference TLS/1.2 and no longer mandate the TLS/1.0 MTI
ciphersuites.
o Updated all references.
o Updated document organization to follow current style.
o Updated example ipp: URIs to follow guidelines in RFC 7472.
o Updated version compatibility for all versions of IPP.
o Updated HTTP Digest Authentication to optional for Clients.
o Removed references to (Experimental) IPP/1.0 and usage of
http:/https: URLs.
Sweet & McDonald Standards Track [Page 35]
^L
RFC 8010 IPP/1.1: Encoding and Transport January 2017
11. References
11.1. Normative References
[PWG5100.12]
Sweet, M. and I. McDonald, "IPP Version 2.0, 2.1, and
2.2", October 2015, <http://ftp.pwg.org/pub/pwg/standards/
std-ipp20-20151030-5100.12.pdf>.
[RFC20] Cerf, V., "ASCII format for network interchange", STD 80,
RFC 20, DOI 10.17487/RFC0020, October 1969,
<http://www.rfc-editor.org/info/rfc20>.
[RFC793] Postel, J., "Transmission Control Protocol", STD 7,
RFC 793, DOI 10.17487/RFC0793, September 1981,
<http://www.rfc-editor.org/info/rfc793>.
[RFC2119] Bradner, S., "Key words for use in RFCs to Indicate
Requirement Levels", BCP 14, RFC 2119,
DOI 10.17487/RFC2119, March 1997,
<http://www.rfc-editor.org/info/rfc2119>.
[RFC2579] McCloghrie, K., Ed., Perkins, D., Ed., and J.
Schoenwaelder, Ed., "Textual Conventions for SMIv2",
STD 58, RFC 2579, DOI 10.17487/RFC2579, April 1999,
<http://www.rfc-editor.org/info/rfc2579>.
[RFC2817] Khare, R. and S. Lawrence, "Upgrading to TLS Within
HTTP/1.1", RFC 2817, DOI 10.17487/RFC2817, May 2000,
<http://www.rfc-editor.org/info/rfc2817>.
[RFC2818] Rescorla, E., "HTTP Over TLS", RFC 2818,
DOI 10.17487/RFC2818, May 2000,
<http://www.rfc-editor.org/info/rfc2818>.
[RFC2978] Freed, N. and J. Postel, "IANA Charset Registration
Procedures", BCP 19, RFC 2978, DOI 10.17487/RFC2978,
October 2000, <http://www.rfc-editor.org/info/rfc2978>.
[RFC3510] Herriot, R. and I. McDonald, "Internet Printing
Protocol/1.1: IPP URL Scheme", RFC 3510,
DOI 10.17487/RFC3510, April 2003,
<http://www.rfc-editor.org/info/rfc3510>.
[RFC3629] Yergeau, F., "UTF-8, a transformation format of ISO
10646", STD 63, RFC 3629, DOI 10.17487/RFC3629, November
2003, <http://www.rfc-editor.org/info/rfc3629>.
Sweet & McDonald Standards Track [Page 36]
^L
RFC 8010 IPP/1.1: Encoding and Transport January 2017
[RFC3986] Berners-Lee, T., Fielding, R., and L. Masinter, "Uniform
Resource Identifier (URI): Generic Syntax", STD 66,
RFC 3986, DOI 10.17487/RFC3986, January 2005,
<http://www.rfc-editor.org/info/rfc3986>.
[RFC5234] Crocker, D., Ed. and P. Overell, "Augmented BNF for Syntax
Specifications: ABNF", STD 68, RFC 5234,
DOI 10.17487/RFC5234, January 2008,
<http://www.rfc-editor.org/info/rfc5234>.
[RFC5246] Dierks, T. and E. Rescorla, "The Transport Layer Security
(TLS) Protocol Version 1.2", RFC 5246,
DOI 10.17487/RFC5246, August 2008,
<http://www.rfc-editor.org/info/rfc5246>.
[RFC7230] Fielding, R., Ed. and J. Reschke, Ed., "Hypertext Transfer
Protocol (HTTP/1.1): Message Syntax and Routing",
RFC 7230, DOI 10.17487/RFC7230, June 2014,
<http://www.rfc-editor.org/info/rfc7230>.
[RFC7231] Fielding, R., Ed. and J. Reschke, Ed., "Hypertext Transfer
Protocol (HTTP/1.1): Semantics and Content", RFC 7231,
DOI 10.17487/RFC7231, June 2014,
<http://www.rfc-editor.org/info/rfc7231>.
[RFC7232] Fielding, R., Ed. and J. Reschke, Ed., "Hypertext Transfer
Protocol (HTTP/1.1): Conditional Requests", RFC 7232,
DOI 10.17487/RFC7232, June 2014,
<http://www.rfc-editor.org/info/rfc7232>.
[RFC7234] Fielding, R., Ed., Nottingham, M., Ed., and J. Reschke,
Ed., "Hypertext Transfer Protocol (HTTP/1.1): Caching",
RFC 7234, DOI 10.17487/RFC7234, June 2014,
<http://www.rfc-editor.org/info/rfc7234>.
[RFC7235] Fielding, R., Ed. and J. Reschke, Ed., "Hypertext Transfer
Protocol (HTTP/1.1): Authentication", RFC 7235,
DOI 10.17487/RFC7235, June 2014,
<http://www.rfc-editor.org/info/rfc7235>.
[RFC7472] McDonald, I. and M. Sweet, "Internet Printing Protocol
(IPP) over HTTPS Transport Binding and the 'ipps' URI
Scheme", RFC 7472, DOI 10.17487/RFC7472, March 2015,
<http://www.rfc-editor.org/info/rfc7472>.
Sweet & McDonald Standards Track [Page 37]
^L
RFC 8010 IPP/1.1: Encoding and Transport January 2017
[RFC7540] Belshe, M., Peon, R., and M. Thomson, Ed., "Hypertext
Transfer Protocol Version 2 (HTTP/2)", RFC 7540,
DOI 10.17487/RFC7540, May 2015,
<http://www.rfc-editor.org/info/rfc7540>.
[RFC7541] Peon, R. and H. Ruellan, "HPACK: Header Compression for
HTTP/2", RFC 7541, DOI 10.17487/RFC7541, May 2015,
<http://www.rfc-editor.org/info/rfc7541>.
[RFC7616] Shekh-Yusef, R., Ed., Ahrens, D., and S. Bremer, "HTTP
Digest Access Authentication", RFC 7616,
DOI 10.17487/RFC7616, September 2015,
<http://www.rfc-editor.org/info/rfc7616>.
[RFC7617] Reschke, J., "The 'Basic' HTTP Authentication Scheme",
RFC 7617, DOI 10.17487/RFC7617, September 2015,
<http://www.rfc-editor.org/info/rfc7617>.
[RFC8011] Sweet, M. and I. McDonald, "Internet Printing
Protocol/1.1: Model and Semantics", RFC 8011,
DOI 10.17487/RFC8011, January 2017,
<http://www.rfc-editor.org/info/rfc8011>.
11.2. Informative References
[IANA-IPP] IANA, "Internet Printing Protocol (IPP) Registry",
<http://www.iana.org/assignments/ipp-registrations/>.
[PWG5100.3]
Ocke, K. and T. Hastings, "Internet Printing Protocol
(IPP): Production Printing Attributes - Set1", Candidate
Standard 5100.3-2001, February 2001,
<http://ftp.pwg.org/pub/pwg/candidates/
cs-ippprodprint10-20010212-5100.3.pdf>.
[RFC1179] McLaughlin, L., "Line printer daemon protocol", RFC 1179,
DOI 10.17487/RFC1179, August 1990,
<http://www.rfc-editor.org/info/rfc1179>.
[RFC7258] Farrell, S. and H. Tschofenig, "Pervasive Monitoring Is an
Attack", BCP 188, RFC 7258, DOI 10.17487/RFC7258, May
2014, <http://www.rfc-editor.org/info/rfc7258>.
[RFC7435] Dukhovni, V., "Opportunistic Security: Some Protection
Most of the Time", RFC 7435, DOI 10.17487/RFC7435,
December 2014, <http://www.rfc-editor.org/info/rfc7435>.
Sweet & McDonald Standards Track [Page 38]
^L
RFC 8010 IPP/1.1: Encoding and Transport January 2017
[RFC7525] Sheffer, Y., Holz, R., and P. Saint-Andre,
"Recommendations for Secure Use of Transport Layer
Security (TLS) and Datagram Transport Layer Security
(DTLS)", BCP 195, RFC 7525, DOI 10.17487/RFC7525, May
2015, <http://www.rfc-editor.org/info/rfc7525>.
Sweet & McDonald Standards Track [Page 39]
^L
RFC 8010 IPP/1.1: Encoding and Transport January 2017
Appendix A. Protocol Examples
A.1. Print-Job Request
The following is an example of a Print-Job request with "job-name",
"copies", and "sides" specified. The "ipp-attribute-fidelity"
attribute is set to 'true' so that the print request will fail if the
"copies" or the "sides" attribute is not supported or their values
are not supported.
Octets Symbolic Value Protocol field
0x0101 1.1 version-number
0x0002 Print-Job operation-id
0x00000001 1 request-id
0x01 start operation- operation-
attributes attributes-tag
0x47 charset type value-tag
0x0012 name-length
attributes-charset attributes-charset name
0x0005 value-length
utf-8 UTF-8 value
0x48 natural-language value-tag
type
0x001b name-length
attributes-natural-language attributes-natural- name
language
0x0005 value-length
en-us en-US value
0x45 uri type value-tag
0x000b name-length
printer-uri printer-uri name
0x002c value-length
ipp://printer.example.com/ipp/ printer pinetree value
print/pinetree
0x42 nameWithoutLanguage value-tag
type
0x0008 name-length
job-name job-name name
0x0006 value-length
foobar foobar value
0x22 boolean type value-tag
0x0016 name-length
ipp-attribute-fidelity ipp-attribute- name
fidelity
0x0001 value-length
0x01 true value
0x02 start job-attributes job-attributes-
Sweet & McDonald Standards Track [Page 40]
^L
RFC 8010 IPP/1.1: Encoding and Transport January 2017
tag
0x21 integer type value-tag
0x0006 name-length
copies copies name
0x0004 value-length
0x00000014 20 value
0x44 keyword type value-tag
0x0005 name-length
sides sides name
0x0013 value-length
two-sided-long-edge two-sided-long-edge value
0x03 end-of-attributes end-of-
attributes-tag
%!PDF... <PDF Document> data
A.2. Print-Job Response (Successful)
Here is an example of a successful Print-Job response to the previous
Print-Job request. The Printer supported the "copies" and "sides"
attributes and their supplied values. The status-code returned is
'successful-ok'.
Octets Symbolic Value Protocol field
0x0101 1.1 version-number
0x0000 successful-ok status-code
0x00000001 1 request-id
0x01 start operation- operation-
attributes attributes-tag
0x47 charset type value-tag
0x0012 name-length
attributes-charset attributes-charset name
0x0005 value-length
utf-8 UTF-8 value
0x48 natural-language value-tag
type
0x001b name-length
attributes-natural-language attributes- name
natural-language
0x0005 value-length
en-us en-US value
0x41 textWithoutLanguag value-tag
e type
0x000e name-length
status-message status-message name
0x000d value-length
successful-ok successful-ok value
0x02 start job- job-attributes-
Sweet & McDonald Standards Track [Page 41]
^L
RFC 8010 IPP/1.1: Encoding and Transport January 2017
attributes tag
0x21 integer value-tag
0x0006 name-length
job-id job-id name
0x0004 value-length
147 147 value
0x45 uri type value-tag
0x0007 name-length
job-uri job-uri name
0x0030 value-length
ipp://printer.example.com/ipp/pr job 147 on value
int/pinetree/147 pinetree
0x23 enum type value-tag
0x0009 name-length
job-state job-state name
0x0004 value-length
0x0003 pending value
0x03 end-of-attributes end-of-
attributes-tag
A.3. Print-Job Response (Failure)
Here is an example of an unsuccessful Print-Job response to the
previous Print-Job request. It fails because, in this case, the
Printer does not support the "sides" attribute and because the value
'20' for the "copies" attribute is not supported. Therefore, no Job
is created, and neither a "job-id" nor a "job-uri" operation
attribute is returned. The error code returned is 'client-error-
attributes-or-values-not-supported' (0x040b).
Octets Symbolic Value Protocol
field
0x0101 1.1 version-
number
0x040b client-error-attributes-or- status-code
values-not-supported
0x00000001 1 request-id
0x01 start operation-attributes operation-
attributes
tag
0x47 charset type value-tag
0x0012 name-length
attributes-charset attributes-charset name
0x0005 value-length
utf-8 UTF-8 value
0x48 natural-language type value-tag
0x001b name-length
Sweet & McDonald Standards Track [Page 42]
^L
RFC 8010 IPP/1.1: Encoding and Transport January 2017
attributes-natural-language attributes-natural-language name
0x0005 value-length
en-us en-US value
0x41 textWithoutLanguage type value-tag
0x000e name-length
status-message status-message name
0x002f value-length
client-error-attributes-or- client-error-attributes-or- value
values-not-supported values-not-supported
0x05 start unsupported- unsupported-
attributes attributes
tag
0x21 integer type value-tag
0x0006 name-length
copies copies name
0x0004 value-length
0x00000014 20 value
0x10 unsupported (type) value-tag
0x0005 name-length
sides sides name
0x0000 value-length
0x03 end-of-attributes end-of-
attributes-
tag
A.4. Print-Job Response (Success with Attributes Ignored)
Here is an example of a successful Print-Job response to a Print-Job
request like the previous Print-Job request, except that the value of
"ipp-attribute-fidelity" is 'false'. The print request succeeds,
even though, in this case, the Printer supports neither the "sides"
attribute nor the value '20' for the "copies" attribute. Therefore,
a Job is created and both a "job-id" and a "job-uri" operation
attribute are returned. The unsupported attributes are also returned
in an Unsupported Attributes group. The error code returned is
'successful-ok-ignored-or-substituted-attributes' (0x0001).
Octets Symbolic Value Protocol field
0x0101 1.1 version-number
0x0001 successful-ok-ignored-or- status-code
substituted-attributes
0x00000001 1 request-id
0x01 start operation-attributes operation-
attributes-tag
0x47 charset type value-tag
0x0012 name-length
attributes-charset attributes-charset name
Sweet & McDonald Standards Track [Page 43]
^L
RFC 8010 IPP/1.1: Encoding and Transport January 2017
0x0005 value-length
utf-8 UTF-8 value
0x48 natural-language type value-tag
0x001b name-length
attributes-natural- attributes-natural-language name
language
0x0005 value-length
en-us en-US value
0x41 textWithoutLanguage type value-tag
0x000e name-length
status-message status-message name
0x002f value-length
successful-ok-ignored-or- successful-ok-ignored-or- value
substituted-attributes substituted-attributes
0x05 start unsupported- unsupported-
attributes attributes tag
0x21 integer type value-tag
0x0006 name-length
copies copies name
0x0004 value-length
0x00000014 20 value
0x10 unsupported (type) value-tag
0x0005 name-length
sides sides name
0x0000 value-length
0x02 start job-attributes job-
attributes-tag
0x21 integer value-tag
0x0006 name-length
job-id job-id name
0x0004 value-length
147 147 value
0x45 uri type value-tag
0x0007 name-length
job-uri job-uri name
0x0030 value-length
ipp://printer.example.com/ job 147 on pinetree value
ipp/print/pinetree/147
0x23 enum type value-tag
0x0009 name-length
job-state job-state name
0x0004 value-length
0x0003 pending value
0x03 end-of-attributes end-of-
attributes-tag
Sweet & McDonald Standards Track [Page 44]
^L
RFC 8010 IPP/1.1: Encoding and Transport January 2017
A.5. Print-URI Request
The following is an example of Print-URI request with "copies" and
"job-name" parameters:
Octets Symbolic Value Protocol field
0x0101 1.1 version-number
0x0003 Print-URI operation-id
0x00000001 1 request-id
0x01 start operation- operation-
attributes attributes-tag
0x47 charset type value-tag
0x0012 name-length
attributes-charset attributes-charset name
0x0005 value-length
utf-8 UTF-8 value
0x48 natural-language value-tag
type
0x001b name-length
attributes-natural-language attributes-natural- name
language
0x0005 value-length
en-us en-US value
0x45 uri type value-tag
0x000b name-length
printer-uri printer-uri name
0x002c value-length
ipp://printer.example.com/ipp/ printer pinetree value
print/pinetree
0x45 uri type value-tag
0x000c name-length
document-uri document-uri name
0x0019 value-length
ftp://foo.example.com/foo ftp://foo.example.co value
m/foo
0x42 nameWithoutLanguage value-tag
type
0x0008 name-length
job-name job-name name
0x0006 value-length
foobar foobar value
0x02 start job-attributes job-attributes-
tag
0x21 integer type value-tag
0x0006 name-length
copies copies name
0x0004 value-length
Sweet & McDonald Standards Track [Page 45]
^L
RFC 8010 IPP/1.1: Encoding and Transport January 2017
0x00000001 1 value
0x03 end-of-attributes end-of-
attributes-tag
A.6. Create-Job Request
The following is an example of Create-Job request with no parameters
and no attributes:
Octets Symbolic Value Protocol field
0x0101 1.1 version-number
0x0005 Create-Job operation-id
0x00000001 1 request-id
0x01 start operation- operation-
attributes attributes-tag
0x47 charset type value-tag
0x0012 name-length
attributes-charset attributes-charset name
0x0005 value-length
utf-8 UTF-8 value
0x48 natural-language value-tag
type
0x001b name-length
attributes-natural-language attributes-natural- name
language
0x0005 value-length
en-us en-US value
0x45 uri type value-tag
0x000b name-length
printer-uri printer-uri name
0x002c value-length
ipp://printer.example.com/ipp/ printer pinetree value
print/pinetree
0x03 end-of-attributes end-of-
attributes-tag
A.7. Create-Job Request with Collection Attributes
The following is an example of Create-Job request with the "media-
col" collection attribute [PWG5100.3] with the value "media-
size={x-dimension=21000 y-dimension=29700} media-type='stationery'":
Octets Symbolic Value Protocol field
0x0101 1.1 version-number
0x0005 Create-Job operation-id
0x00000001 1 request-id
Sweet & McDonald Standards Track [Page 46]
^L
RFC 8010 IPP/1.1: Encoding and Transport January 2017
0x01 start operation- operation-
attributes attributes-tag
0x47 charset type value-tag
0x0012 name-length
attributes-charset attributes-charset name
0x0005 value-length
utf-8 UTF-8 value
0x48 natural-language value-tag
type
0x001b name-length
attributes-natural-language attributes-natural- name
language
0x0005 value-length
en-us en-US value
0x45 uri type value-tag
0x000b name-length
printer-uri printer-uri name
0x002c value-length
ipp://printer.example.com/ipp/ printer pinetree value
print/pinetree
0x34 begCollection value-tag
0x0009 9 name-length
media-col media-col name
0x0000 0 value-length
0x4a memberAttrName value-tag
0x0000 0 name-length
0x000a 10 value-length
media-size media-size value (member-
name)
0x34 begCollection member-value-tag
0x0000 0 name-length
0x0000 0 member-value-
length
0x4a memberAttrName value-tag
0x0000 0 name-length
0x000b 11 value-length
x-dimension x-dimension value (member-
name)
0x21 integer member-value-tag
0x0000 0 name-length
0x0004 4 member-value-
length
0x00005208 21000 member-value
0x4a memberAttrName value-tag
0x0000 0 name-length
0x000b 11 value-length
y-dimension y-dimension value (member-
name)
Sweet & McDonald Standards Track [Page 47]
^L
RFC 8010 IPP/1.1: Encoding and Transport January 2017
0x21 integer member-value-tag
0x0000 0 name-length
0x0004 4 member-value-
length
0x00007404 29700 member-value
0x37 endCollection end-value-tag
0x0000 0 end-name-length
0x0000 0 end-value-length
0x4a memberAttrName value-tag
0x0000 0 name-length
0x000a 10 value-length
media-type media-type value (member-
name)
0x44 keyword member-value-tag
0x0000 0 name-length
0x000a 10 member-value-
length
stationery stationery member-value
0x37 endCollection end-value-tag
0x0000 0 end-name-length
0x0000 0 end-value-length
0x03 end-of-attributes end-of-
attributes-tag
A.8. Get-Jobs Request
The following is an example of Get-Jobs request with parameters but
no attributes:
Octets Symbolic Value Protocol field
0x0101 1.1 version-number
0x000a Get-Jobs operation-id
0x0000007b 123 request-id
0x01 start operation- operation-
attributes attributes-tag
0x47 charset type value-tag
0x0012 name-length
attributes-charset attributes-charset name
0x0005 value-length
utf-8 UTF-8 value
0x48 natural-language value-tag
type
0x001b name-length
attributes-natural-language attributes-natural- name
language
0x0005 value-length
en-us en-US value
Sweet & McDonald Standards Track [Page 48]
^L
RFC 8010 IPP/1.1: Encoding and Transport January 2017
0x45 uri type value-tag
0x000b name-length
printer-uri printer-uri name
0x002c value-length
ipp://printer.example.com/ipp/ printer pinetree value
print/pinetree
0x21 integer type value-tag
0x0005 name-length
limit limit name
0x0004 value-length
0x00000032 50 value
0x44 keyword type value-tag
0x0014 name-length
requested-attributes requested-attributes name
0x0006 value-length
job-id job-id value
0x44 keyword type value-tag
0x0000 additional value name-length
0x0008 value-length
job-name job-name value
0x44 keyword type value-tag
0x0000 additional value name-length
0x000f value-length
document-format document-format value
0x03 end-of-attributes end-of-
attributes-tag
A.9. Get-Jobs Response
The following is an example of a Get-Jobs response from a previous
request with three Jobs. The Printer returns no information about
the second Job (because of security reasons):
Octets Symbolic Value Protocol field
0x0101 1.1 version-number
0x0000 successful-ok status-code
0x0000007b 123 request-id (echoed
back)
0x01 start operation- operation-attributes-
attributes tag
0x47 charset type value-tag
0x0012 name-length
attributes-charset attributes-charset name
0x0005 value-length
utf-8 UTF-8 value
0x48 natural-language type value-tag
0x001b name-length
Sweet & McDonald Standards Track [Page 49]
^L
RFC 8010 IPP/1.1: Encoding and Transport January 2017
attributes-natural- attributes-natural- name
language language
0x0005 value-length
en-us en-US value
0x41 textWithoutLanguage value-tag
type
0x000e name-length
status-message status-message name
0x000d value-length
successful-ok successful-ok value
0x02 start job-attributes job-attributes-tag
(1st object)
0x21 integer type value-tag
0x0006 name-length
job-id job-id name
0x0004 value-length
147 147 value
0x36 nameWithLanguage value-tag
0x0008 name-length
job-name job-name name
0x000c value-length
0x0005 sub-value-length
fr-ca fr-CA value
0x0003 sub-value-length
fou fou name
0x02 start job-attributes job-attributes-tag
(2nd object)
0x02 start job-attributes job-attributes-tag
(3rd object)
0x21 integer type value-tag
0x0006 name-length
job-id job-id name
0x0004 value-length
148 149 value
0x36 nameWithLanguage value-tag
0x0008 name-length
job-name job-name name
0x0012 value-length
0x0005 sub-value-length
de-CH de-CH value
0x0009 sub-value-length
isch guet isch guet name
0x03 end-of-attributes end-of-attributes-tag
Sweet & McDonald Standards Track [Page 50]
^L
RFC 8010 IPP/1.1: Encoding and Transport January 2017
Acknowledgements
The authors would like to acknowledge the following individuals for
their contributions to the original IPP/1.1 specifications:
Sylvan Butler, Roger deBry, Tom Hastings, Robert Herriot (the
original editor of RFC 2910), Paul Moore, Kirk Ocke, Randy Turner,
John Wenn, and Peter Zehler.
Authors' Addresses
Michael Sweet
Apple Inc.
1 Infinite Loop
MS 111-HOMC
Cupertino, CA 95014
United States of America
Email: msweet@apple.com
Ira McDonald
High North, Inc.
PO Box 221
Grand Marais, MI 49839
United States of America
Phone: +1 906-494-2434
Email: blueroofmusic@gmail.com
Sweet & McDonald Standards Track [Page 51]
^L
|