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
|
<pre>Internet Engineering Task Force (IETF) M. Phillips
Request for Comments: 6167 P. Adams
Category: Informational IBM
ISSN: 2070-1721 D. Rokicki
Software AG
E. Johnson
TIBCO
April 2011
<span class="h1">URI Scheme for Java(tm) Message Service 1.0</span>
Abstract
This document defines the format of Uniform Resource Identifiers
(URIs) as defined in <a href="./rfc3986">RFC 3986</a>, for designating connections and
destination addresses used in the Java(tm) Messaging Service (JMS).
It was originally designed for particular uses, but applies generally
wherever a JMS URI is needed to describe the connection to a JMS
provider, and access to a JMS Destination. The syntax of this JMS
URI is not compatible with previously existing, but unregistered,
"jms" URI schemes. However, the expressiveness of the scheme
described herein should satisfy the requirements of all existing
circumstances.
Status of This Memo
This document is not an Internet Standards Track specification; it is
published for informational purposes.
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). Not all documents
approved by the IESG are a candidate for any level of Internet
Standard; see <a href="./rfc5741#section-2">Section 2 of RFC 5741</a>.
Information about the current status of this document, any errata,
and how to provide feedback on it may be obtained at
<a href="http://www.rfc-editor.org/info/rfc6167">http://www.rfc-editor.org/info/rfc6167</a>.
<span class="grey">Phillips, et al. Informational [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc6167">RFC 6167</a> jms" URI Scheme April 2011</span>
Copyright Notice
Copyright (c) 2011 IETF Trust and the persons identified as the
document authors. All rights reserved.
This document is subject to <a href="https://www.rfc-editor.org/bcp/bcp78">BCP 78</a> and the IETF Trust's Legal
Provisions Relating to IETF Documents
(<a href="http://trustee.ietf.org/license-info">http://trustee.ietf.org/license-info</a>) in effect on the date of
publication of this document. Please review these documents
carefully, as they describe your rights and restrictions with respect
to this document. Code Components extracted from this document must
include Simplified BSD License text as described in Section 4.e of
the Trust Legal Provisions and are provided without warranty as
described in the Simplified BSD License.
This document may contain material from IETF Documents or IETF
Contributions published or made publicly available before November
10, 2008. The person(s) controlling the copyright in some of this
material may not have granted the IETF Trust the right to allow
modifications of such material outside the IETF Standards Process.
Without obtaining an adequate license from the person(s) controlling
the copyright in such materials, this document may not be modified
outside the IETF Standards Process, and derivative works of it may
not be created outside the IETF Standards Process, except to format
it for publication as an RFC or to translate it into languages other
than English.
<span class="grey">Phillips, et al. Informational [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc6167">RFC 6167</a> jms" URI Scheme April 2011</span>
Table of Contents
<a href="#section-1">1</a>. Introduction ....................................................<a href="#page-3">3</a>
<a href="#section-1.1">1.1</a>. Requirements Notation ......................................<a href="#page-4">4</a>
<a href="#section-2">2</a>. URI Scheme Name .................................................<a href="#page-5">5</a>
<a href="#section-3">3</a>. Syntax of a JMS URI .............................................<a href="#page-5">5</a>
<a href="#section-4">4</a>. URI Scheme Semantics ............................................<a href="#page-5">5</a>
<a href="#section-4.1">4.1</a>. Shared Parameters ..........................................<a href="#page-6">6</a>
<a href="#section-4.2">4.2</a>. "jndi" Variant .............................................<a href="#page-7">7</a>
<a href="#section-4.3">4.3</a>. Vendor Destination Names -- Variants "queue" and "topic" ..11
<a href="#section-4.4">4.4</a>. Custom Parameters .........................................<a href="#page-12">12</a>
<a href="#section-5">5</a>. Encoding Considerations ........................................<a href="#page-13">13</a>
<a href="#section-6">6</a>. Applications/Protocols That Use the JMS URI ....................<a href="#page-13">13</a>
<a href="#section-7">7</a>. Interoperability Considerations ................................<a href="#page-13">13</a>
<a href="#section-8">8</a>. Security Considerations ........................................<a href="#page-14">14</a>
<a href="#section-8.1">8.1</a>. Reliability and Consistency ...............................<a href="#page-14">14</a>
<a href="#section-8.2">8.2</a>. Malicious Construction ....................................<a href="#page-14">14</a>
<a href="#section-8.3">8.3</a>. Back-End Transcoding ......................................<a href="#page-15">15</a>
<a href="#section-8.4">8.4</a>. Semantic Attacks ..........................................<a href="#page-15">15</a>
<a href="#section-8.5">8.5</a>. Other Security Concerns ...................................<a href="#page-16">16</a>
<a href="#section-9">9</a>. IANA Considerations ............................................<a href="#page-16">16</a>
<a href="#section-9.1">9.1</a>. URI Scheme Registration ...................................<a href="#page-16">16</a>
<a href="#section-9.2">9.2</a>. "jms" URI Scheme Registries ...............................<a href="#page-17">17</a>
<a href="#section-10">10</a>. Contributors ..................................................<a href="#page-18">18</a>
<a href="#section-11">11</a>. Acknowledgements ..............................................<a href="#page-19">19</a>
<a href="#section-12">12</a>. References ....................................................<a href="#page-20">20</a>
<a href="#section-12.1">12.1</a>. Normative References .....................................<a href="#page-20">20</a>
<a href="#section-12.2">12.2</a>. Informative References ...................................<a href="#page-21">21</a>
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>. Introduction</span>
The "jms" URI scheme is used to designate a javax.jms.Destination
object and an associated javax.jms.ConnectionFactory object [<a href="#ref-JMS" title=""Java Message Service"">JMS</a>],
and, optionally, to provide additional information concerning the way
that the Destination object is to be used. Probably the most common,
and certainly the most compatible, way in Java to retrieve such
Destinations is via Java Naming and Directory Information (JNDI)
[<a href="#ref-JNDI" title=""Java Naming and Directory Interface Application Programming Interface"">JNDI</a>] methods. So as to extend compatibility to existing vendor
mechanisms beyond JNDI lookup, the JMS URI syntax allows variants on
the core syntax. The variant exists as an explicit part of the
syntax so that tools that are otherwise unfamiliar with the variant
can recognize the presence of a URI with an alternate interpretation.
<span class="grey">Phillips, et al. Informational [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc6167">RFC 6167</a> jms" URI Scheme April 2011</span>
In its simplest and most interoperable form, this URI scheme starts
with "jms:jndi:" plus a JNDI name for a Destination. Since
interaction with some resources might require JNDI contextual
information or JMS header fields and properties to be specified as
well, the "jndi" variant of the "jms" URI scheme includes support for
supplying this additional JNDI information as query parameters.
While the "jndi" variant provides compatibility, vendors can define
additional variants. This specification defines three variants:
"jndi", "queue", and "topic". Vendors defining additional variants
are strongly encouraged to register them with IANA as documented in
<a href="#section-9.2.1">Section 9.2.1</a>.
While the "jms" URI scheme allows the location of network resources,
it does not map to a single underlying protocol, unlike most other
URI schemes that do so. Instead, it achieves interoperability
through the use of a common Java-based API [<a href="#ref-JAVA" title=""Oracle Technology for Java Developers"">JAVA</a>] for messaging.
Because of this, interoperability is dependent upon the
implementation of the API and its capabilities; two implementations
of JMS might or might not interoperate in practice. Furthermore, it
might be impractical to use JMS URIs in non-Java environments.
As a consequence of building upon an API, rather than a protocol, the
utility of a JMS URI depends on the context in which it is used.
That context includes agreement on the same JMS provider or
underlying protocol; agreement on how to look up endpoints (JNDI);
and, when using serialized Java object messages, sufficiently similar
Java Class environments that serialized objects can be appropriately
read and written. Users of this scheme need to establish the
necessary shared-context parts as just enumerated -- a context that
can span the globe, or merely a small local network. With that
shared context, this URI scheme enables endpoint identification in a
uniform way, and the means to connect to those endpoints.
<span class="h3"><a class="selflink" id="section-1.1" href="#section-1.1">1.1</a>. Requirements Notation</span>
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 [<a href="./rfc2119" title=""Key words for use in RFCs to Indicate Requirement Levels"">RFC2119</a>].
All syntax descriptions use the ABNF specified by [<a href="./rfc5234" title=""Augmented BNF for Syntax Specifications: ABNF"">RFC5234</a>],
"Augmented BNF for Syntax Specifications: ABNF".
Note that some examples in this document wrap long JMS URIs for
readability. The line breaks are not part of the actual URIs.
<span class="grey">Phillips, et al. Informational [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc6167">RFC 6167</a> jms" URI Scheme April 2011</span>
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>. URI Scheme Name</span>
The name of the URI scheme is "jms".
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>. Syntax of a JMS URI</span>
The following ABNF describes the "jms" scheme URI syntax:
jms-uri = "jms:" jms-variant ":" jms-dest
[ "?" param *( "&" param ) ]
jms-variant = segment-nz-nc
jms-dest = segment-nz ; specific meaning per variant
param = param-name "=" param-value
param-name = 1*(unreserved / pct-encoded)
param-value = *(unreserved / pct-encoded)
segment-nz-nc = <as defined in <a href="./rfc3986">RFC 3986</a>>
path-rootless = <as defined in <a href="./rfc3986">RFC 3986</a>>
unreserved = <as defined in <a href="./rfc3986">RFC 3986</a>>
pct-encoded = <as defined in <a href="./rfc3986">RFC 3986</a>>
The URIs are percent-encoded UTF-8 [<a href="./rfc3629" title=""UTF-8, a transformation format of ISO 10646"">RFC3629</a>]. Please see <a href="#section-5">Section 5</a>
of this document for encoding considerations.
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>. URI Scheme Semantics</span>
JMS URIs are used to locate JMS [<a href="#ref-JMS" title=""Java Message Service"">JMS</a>] Destination resources and do
not specify actions to be taken on those resources. Operations
available on JMS Destinations are fully and normatively defined by
the JMS specification and as such are out of scope for this URI
specification.
The required portions of the syntax include the terminal of "jms" for
the URI scheme name; the <jms-variant> element to indicate the
variant of the scheme; and the <jms-dest> element, which identifies
the Destination based on the chosen variant. For the <jms-variant>
element, this document defines three values: "jndi", "queue", and
"topic". All the terminals resulting from <jms-variant> and
<jms-dest> production rules are case-sensitive.
<span class="grey">Phillips, et al. Informational [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc6167">RFC 6167</a> jms" URI Scheme April 2011</span>
Parameters further refine how to locate and use the Destination. The
parameter names and values are case-sensitive. They can occur in any
order, and each parameter name SHOULD NOT appear more than once. In
the event that a parameter appears multiple times, all but the last
instance of the parameter MUST be ignored. For comparison purposes,
the absence of a parameter does not mean the same thing as a URI with
a parameter set to a default value, due to the potential variation in
default values as determined by the context of a specific use.
Each variant can have query parameters specific to that variation.
All such variant-specific parameters SHOULD use the name of the
variant as the prefix to the parameters. For example, a vendor-
specific variant of "vnd.example.ex" might also define a parameter
with a name like "vnd.example.exParameter". Parameters that apply
across multiple variants -- perhaps because they are generally
applicable, such as JMS settings -- MUST NOT have a name that starts
with the name of any known variant. This pattern enables tools that
are otherwise unfamiliar with a particular variant to distinguish
those parameters that are specific to a variant from those that are
more generally applicable.
Examples of the URI scheme include:
jms:jndi:SomeJndiNameForDestination?
jndiInitialContextFactory=
com.example.jndi.JndiFactory&priority=3
jms:queue:ExampleQueueName?timeToLive=1000
<span class="h3"><a class="selflink" id="section-4.1" href="#section-4.1">4.1</a>. Shared Parameters</span>
In addition to the required particles, the "jms" URI scheme supports
the following shared parameters, which are available to all variants.
These parameters correspond to headers and properties on the JMS
Messages to be sent. For the parameters deliveryMode, timeToLive,
and priority, the default values might be specified in the context of
a specific use, for example by environment variables, or in the
configuration of a particular network application. JMS also defines
default values for these properties. The context default is hereby
defined as the default value in the context of a specific use, or the
JMS default for a particular property if the context does not define
a default.
<span class="grey">Phillips, et al. Informational [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc6167">RFC 6167</a> jms" URI Scheme April 2011</span>
<span class="h4"><a class="selflink" id="section-4.1.1" href="#section-4.1.1">4.1.1</a>. deliveryMode</span>
Indicates whether the request message is persistent or not. This
property corresponds to the JMS message header field
"JMSDeliveryMode" defined in <a href="#section-3.4.2">Section 3.4.2</a> of the JMS 1.1
specification [<a href="#ref-JMS" title=""Java Message Service"">JMS</a>]. The value of this parameter MUST be
"PERSISTENT" or "NON_PERSISTENT". If this parameter is not
specified, then the context default MUST be used.
<span class="h4"><a class="selflink" id="section-4.1.2" href="#section-4.1.2">4.1.2</a>. timeToLive</span>
The lifetime, in milliseconds, of the request message, specified as a
decimal number. This property corresponds to the JMS Time-To-Live
value defined in <a href="#section-4.8">Section 4.8</a> of the JMS 1.1 specification. If this
parameter is not specified, then the context default MUST be used.
<span class="h4"><a class="selflink" id="section-4.1.3" href="#section-4.1.3">4.1.3</a>. priority</span>
The JMS priority associated with the request message. As per
<a href="#section-3.4.10">Section 3.4.10</a> of the JMS 1.1 specification, this MUST be a value
between 0 and 9 inclusive, specified as a decimal number. This
corresponds to the JMS message header field "JMSPriority". If this
parameter is not specified, then the context default MUST be used.
<span class="h4"><a class="selflink" id="section-4.1.4" href="#section-4.1.4">4.1.4</a>. replyToName</span>
This property corresponds to the JMS message header field
"JMSReplyTo" defined in <a href="#section-3.4.6">Section 3.4.6</a> of the JMS 1.1 specification.
As interpreted by the particular variant, this property value
specifies the JMS Destination object to which a response message
ought to be sent.
<span class="h3"><a class="selflink" id="section-4.2" href="#section-4.2">4.2</a>. "jndi" Variant</span>
The "jndi" variant implies the use of JNDI for discovering the
Destination object. When this is specified as the variant, the
<jms-dest> portion of the syntax is the name for JNDI lookup
purposes. Additional JNDI-specific parameters can be specified. The
JNDI-specific parameters SHOULD only be processed when the URI
variant is "jndi".
<span class="h4"><a class="selflink" id="section-4.2.1" href="#section-4.2.1">4.2.1</a>. JNDI Parameters</span>
<span class="h5"><a class="selflink" id="section-4.2.1.1" href="#section-4.2.1.1">4.2.1.1</a>. jndiConnectionFactoryName</span>
Specifies the JNDI name of the Java class (see <a href="#section-3.8">Section 3.8</a>,
"Identifiers", of [<a href="#ref-JLS" title=""The Java Language Specification, Third Edition"">JLS</a>] for the specification of a legal Java class
name) providing the connection factory.
<span class="grey">Phillips, et al. Informational [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc6167">RFC 6167</a> jms" URI Scheme April 2011</span>
<span class="h5"><a class="selflink" id="section-4.2.1.2" href="#section-4.2.1.2">4.2.1.2</a>. jndiInitialContextFactory</span>
Specifies the fully qualified Java class name of the
"InitialContextFactory" implementation class to use.
<span class="h5"><a class="selflink" id="section-4.2.1.3" href="#section-4.2.1.3">4.2.1.3</a>. jndiURL</span>
Specifies the JNDI provider URL, in a form consistent with
javax.naming.spi.NamingManager.getURLContext(String scheme, Hashtable
environment) as defined in the JNDI specification [<a href="#ref-JNDI" title=""Java Naming and Directory Interface Application Programming Interface"">JNDI</a>].
<span class="h5"><a class="selflink" id="section-4.2.1.4" href="#section-4.2.1.4">4.2.1.4</a>. Additional JNDI Parameters</span>
It is possible that connecting to a JNDI provider requires additional
parameters. These parameters can be passed in as custom parameters
(see <a href="#section-4.4">Section 4.4</a>). To identify a custom parameter as JNDI specific,
the parameter name needs to start with the prefix "jndi-".
For example, if the JNDI provider requires a parameter named
"com.example.jndi.someParameter", you can supply the parameter in the
URI as: jndi-com.example.jndi.someParameter=someValue
<span class="h4"><a class="selflink" id="section-4.2.2" href="#section-4.2.2">4.2.2</a>. Example of Performing a JNDI Lookup</span>
To perform a lookup based on a "jndi" variant URI using Java APIs, an
application might start by creating a JNDI InitialContext object.
The InitialContext object can then be used to look up the JMS
ConnectionFactory object (using the "jndiConnectionFactoryName" URI
parameter), the target JMS Destination object (using the <jms-dest>
portion of the JMS URI), and the "replyToName" JMS Destination object
(if the "replyToName" parameter is specified on the URI). The
application creates the InitialContext object by first setting up two
properties: "Context.INITIAL_CONTEXT_FACTORY", with the value of the
jndiInitialContextFactory JMS URI parameter; and
"Context.PROVIDER_URL", with the value of the jndiURL URI parameter;
and then passing the two properties to the InitialContext
constructor.
To locate a connection factory or Destination object, the application
passes the name of the object into the InitialContext.lookup()
method.
<span class="grey">Phillips, et al. Informational [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc6167">RFC 6167</a> jms" URI Scheme April 2011</span>
For example, the JMS URI...
jms:jndi:REQ_QUEUE
?jndiURL=file:/C:/JMSAdmin
&jndiInitialContextFactory
=com.sun.jndi.fscontext.RefFSContextFactory
&jndiConnectionFactoryName=CONNFACT
&replyToName=RESP_QUEUE
...would be used by the following (non-normative) code sample to
locate and retrieve a JMS ConnectionFactory called "CONNFACT", and
JMS Destinations called "REQ_QUEUE" and "RESP_QUEUE", from a file-
system JNDI context called "c:/JMSAdmin".
/*
* Preconditions on URI:
* - portion <jms-dest> has been parsed into variable "jms_dest"
* - parameters "jndiConnectionFactoryName",
* "jndiInitialContextFactory", "replyToName", and "jndiURL" have
* been parsed into variables of the same name.
*/
Hashtable environment = new Hashtable();
environment.put(Context.INITIAL_CONTEXT_FACTORY,
jndiInitialContextFactory);
environment.put(Context.PROVIDER_URL, jndiURL);
/*
* Create File-System Initial Context
*/
Context ctx = new InitialContext(environment);
/*
* Now get the JMS ConnectionFactory and Destination. These will
* be used later on in the application to create the JMS
* Connection and send/receive messages.
*/
ConnectionFactory jmsConnFact = (ConnectionFactory)
ctx.lookup(jndiConnectionFactoryName);
Destination requestDest = (Destination) ctx.lookup(jms_dest);
Destination replyDest = (Destination) ctx.lookup(replyToName);
The ConnectionFactory is used to create a Connection, which itself is
used to create a Session. The Session can then be used to create the
MessageProducer, which sends messages to the target Destination; and
the MessageConsumer, which receives messages from the replyToName
Destination (as shown in the following code extract).
<span class="grey">Phillips, et al. Informational [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc6167">RFC 6167</a> jms" URI Scheme April 2011</span>
/*
* Create a producer to send a message to the request Destination
* that was specified in the URI, then create the message, setting
* the replyToName Destination in the message to the one specified
* in the URI, and send it.
*/
MessageProducer producer = sess.createProducer(requestDest);
BytesMessage reqMsg = sess.createBytesMessage();
reqMsg.setJMSReplyTo(replyDest);
producer.send(reqMsg);
/*
* Create a consumer to get a message from the replyToName
* Destination using a selector to get the specific response to
* this request. The responder sets the correlation ID of the
* response to the message ID of the request message.
*/
MessageConsumer consumer = sess.createConsumer(replyDest,
"JMSCorrelationID = '" + reqMsg.getJMSMessageID() + "'");
Message respMsg = (Message) consumer.receive(300000);
<span class="h5"><a class="selflink" id="section-4.2.2.1" href="#section-4.2.2.1">4.2.2.1</a>. Performing a JNDI Lookup with Custom Parameters</span>
Any parameters with a prefix of "jndi-" MUST be used to set custom
properties when establishing a connection to the JNDI provider. The
name of the custom property is derived by removing the "jndi-" prefix
from the URI parameter name, and the value of the property is the
value of the parameter.
For example, the JMS URI...
jms:jndi:REQ_QUEUE
?jndiURL=file:/C:/JMSAdmin
&jndiInitialContextFactory
=com.sun.jndi.fscontext.RefFSContextFactory
&jndiConnectionFactoryName=CONNFACT
&jndi-com.example.jndi.someParameter=someValue
...instructs the consumer to use the following properties to connect
to the JNDI provider:
java.naming.provider.url=file:/C:/JMSAdmin
java.naming.factory.initial=
com.sun.jndi.fscontext.RefFSContextFactory
com.example.jndi.someParameter=someValue
<span class="grey">Phillips, et al. Informational [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc6167">RFC 6167</a> jms" URI Scheme April 2011</span>
<span class="h3"><a class="selflink" id="section-4.3" href="#section-4.3">4.3</a>. Vendor Destination Names -- Variants "queue" and "topic"</span>
The JMS Session object provides a means to directly access Queues and
Topics. Specifically, it has the methods Session.createQueue(String
name) and Session.createTopic(String name). These methods can be
used to "create" the Java representation of an existing JMS Topic or
Queue.
Since the Session interface requires external knowledge about whether
a given name relates to a Queue or Topic, rather than introducing one
new variant, this section defines two variants. A JMS URI can
indicate which of these methods to use by specifying the appropriate
variant -- either "queue" or "topic". For example:
jms:queue:ExampleQueueName
to identify a JMS Queue Destination, and
jms:topic:ExampleTopicName
to identify a JMS Topic Destination.
JMS only specifies one way to obtain the names used by these APIs.
With a JMS Queue or Topic available, an implementation can call
Queue.getQueueName() or Topic.getTopicName(), respectively, both of
which return a String object. To create a correct corresponding URI,
the resulting string MUST use standard URI escape mechanisms so that
the resulting characters conform to the production <jms-dest>.
<span class="h4"><a class="selflink" id="section-4.3.1" href="#section-4.3.1">4.3.1</a>. Treatment of replyToName Parameter</span>
When used with the "queue" and "topic" variants, the replyToName
parameter, specified in <a href="#section-4.1.4">Section 4.1.4</a>, always refers to a name of a
JMS Queue to look up via the Session.createQueue() method, or its
equivalent. For either variant, if a JMS Topic is instead required
as a response Destination, a JMS URI can employ the
"topicReplyToName" parameter. This parameter defines a name to look
up with the Session.createTopic() method, or its equivalent.
A JMS URI MUST NOT specify both a "topicReplyToName" and a
"replyToName" parameter.
<span class="h4"><a class="selflink" id="section-4.3.2" href="#section-4.3.2">4.3.2</a>. Obtaining a Session via JNDI</span>
Using the Session.createQueue() and Session.createTopic() methods
assumes that a client program has already obtained a Session object.
Where does that Session object come from -- how does a client get it?
One way to get a Session is simply to access vendor-specific APIs.
<span class="grey">Phillips, et al. Informational [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc6167">RFC 6167</a> jms" URI Scheme April 2011</span>
Another way to get a Session object is to simply revert to using
JNDI. That is, if a Session is not available to the client from some
other context, the "queue" and "topic" variants MAY reuse the URL
parameters specified in <a href="#section-4.2.1">Section 4.2.1</a>, "JNDI Parameters". Via JNDI,
those parameters will identify a ConnectionFactory, which can then be
used to obtain a Session object.
Combining the "queue" and "topic" variants with JNDI lookup for an
implementation of ConnectionFactory raises an important consideration
for JMS URI clients. Once clients employ JNDI for one part of
discovering a Destination, they almost certainly could use a vendor-
neutral JNDI lookup for a Destination object itself, rather than
using vendor-specific means. As a result, clients need to carefully
consider whether it makes sense to use JNDI for one part of this
problem, without using it for the other.
<span class="h4"><a class="selflink" id="section-4.3.3" href="#section-4.3.3">4.3.3</a>. Limitations of "queue" and "topic"</span>
The JMS specification clearly identifies the two methods on the
Session interface as returning vendor-specific names for
Destinations. Consequently, users of the "jms" URI scheme ought to
carefully consider when these two variants might be employed. If
users plan on switching between JMS vendors, they might also need to
plan on regenerating resources that contain URIs in this vendor-
specific form.
A JMS vendor can provide alternate ways to obtain the names that can
be passed to Session.createQueue() and Session.createTopic(). When
using names derived from those alternate means, users of this URI
specification are encouraged to verify that the obtained names work
as expected in all circumstances.
<span class="h3"><a class="selflink" id="section-4.4" href="#section-4.4">4.4</a>. Custom Parameters</span>
The set of parameters is extensible. Any other vendor- or
application-defined parameter can be supplied, in the URI, by passing
it as <param-name>=<param-value>, just like the set of well-known
parameters.
WARNING: Vendors and applications MUST NOT include sensitive
information (such as authorization tokens) in a URI. Other means of
authorization, authentication, and identification ought to be used.
Also see the security discussion below about properties that might be
duplicated as JMS message properties.
<span class="grey">Phillips, et al. Informational [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey"><a href="./rfc6167">RFC 6167</a> jms" URI Scheme April 2011</span>
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>. Encoding Considerations</span>
The "jms" URI scheme distinguishes between <unreserved> characters
and <pct-encoded> characters, as defined in [<a href="./rfc3986" title=""Uniform Resource Identifier (URI): Generic Syntax"">RFC3986</a>]. Apart from
these encoding considerations, the characters "?" and "&" MUST be
encoded when they appear within the <jms-dest> particle (for example,
a JNDI name) or in query parameters. The character ":" SHOULD be
escaped when appearing in the <jms-dest> portion of the syntax.
Conversions to and from Internationalized Resource Identifiers (IRIs)
follow the rules of <a href="./rfc3987">RFC 3987</a>, Sections <a href="#section-3.1">3.1</a> and <a href="#section-3.2">3.2</a>. As per
Sections <a href="#section-1.2">1.2</a>-c. and 6.4 of [<a href="./rfc3987" title=""Internationalized Resource Identifiers (IRIs)"">RFC3987</a>], all parts of the JMS URI MUST
use the UTF-8 encoding when converting to and from the IRI format.
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>. Applications/Protocols That Use the JMS URI</span>
A variety of vendors provide implementations of the JMS Service
Provider Interface (SPI). These products interoperate at the API
level, in the Java programming language.
Some vendors have provided additional products that interoperate with
their own SPI implementations. These extensions might also be able
to make use of this URI scheme.
The vendors working on this URI scheme are also working on a
specification for carrying SOAP messages over their respective
implementations of JMS [<a href="#ref-SOAP-JMS" title=""SOAP over Java Message Service 1.0"">SOAP-JMS</a>]. In addition, the Service
Component Architecture Bindings technical committee (TC) [<a href="#ref-SCA-TC" title=""OASIS Service Component Architecture / Bindings (SCA- Bindings) TC"">SCA-TC</a>] at
OASIS employs the "jms" URI scheme to identify JMS Destinations in
[<a href="#ref-SCA-JMS" title=""Service Component Architecture JMS Binding Specification Version 1.1"">SCA-JMS</a>].
<span class="h2"><a class="selflink" id="section-7" href="#section-7">7</a>. Interoperability Considerations</span>
This "jms" URI scheme focuses on identifying a JMS Destination
object, and some characteristics of communication using that
Destination, and specifically excludes any notion of describing how
JMS itself is implemented and how it delivers messages. As a
consequence of this focus, interoperability concerns are limited to
how implementations obtain and use a Destination object.
This scheme definition describes three variants for obtaining a
Destination. These variants achieve their aims with the use of JNDI
and JMS APIs, with no new APIs or protocols defined here. As a
consequence of using JNDI and JMS, interoperability concerns might
arise if implementations do not conform to the specifications for
those APIs. Further, the use of Java, and JNDI in particular, means
that the configuration of the execution environment and the use of
Java ClassLoaders can affect the interpretation of any given URI.
<span class="grey">Phillips, et al. Informational [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey"><a href="./rfc6167">RFC 6167</a> jms" URI Scheme April 2011</span>
Consumers of these URIs are urged to consider the scope and
consistency of the environment across which these URIs will be
shared.
As described in <a href="#section-4">Section 4</a>, others can define additional variants,
which provide the means to describe how to look up JMS Destination
objects in a manner specific to some environment. For any new
variant, the shared parameters defined in <a href="#section-4.1">Section 4.1</a> MUST have the
same meaning in that variant as they do here. That way, tools and
people can safely copy these parameters between environments. Note
that while additional variants might seem more flexible, employing
variants not defined here might make it more difficult to switch to
an alternate JMS provider.
<span class="h2"><a class="selflink" id="section-8" href="#section-8">8</a>. Security Considerations</span>
<a href="./rfc3986#section-7">Section 7 of [RFC3986]</a> identifies some of the security concerns that
ought to be addressed by this specification.
<span class="h3"><a class="selflink" id="section-8.1" href="#section-8.1">8.1</a>. Reliability and Consistency</span>
This specification identifies only the variant (<jms-variant>) and
variant-specific details (<jms-dest>) as an essential part of the
URI. For reliability and consistency purposes, these variants are
the only part that can reasonably be expected to be stable. Other
optional JMS configuration and message properties indicated as URI
parameters, like "timeToLive", can reasonably be determined by the
sender of a message, without affecting the recipient. Insofar as a
recipient might wish to dictate certain parameters, such as the
"jndiConnectionFactoryName", those parameters can be specified.
<span class="h3"><a class="selflink" id="section-8.2" href="#section-8.2">8.2</a>. Malicious Construction</span>
<span class="h4"><a class="selflink" id="section-8.2.1" href="#section-8.2.1">8.2.1</a>. Recipient Concerns</span>
A malicious consumer of a service using a JMS URI could send, as part
of a JMS message, a URI with a parameter such as "timeToLive" with a
value specified in the URI that differs from the corresponding JMS
message property ("JMSExpiration" header field, in this example). In
the case of such messages with such URIs, recipients are strongly
cautioned to avoid applying processing logic based on particular URI
parameters. Discrepancies in the message could be used to exploit
differences in behavior between the selectors that a JMS-based
application might use to affect which messages it sees, and the
processing of the rest of the application. As defined in this
document, the parameters of concern include:
<span class="grey">Phillips, et al. Informational [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey"><a href="./rfc6167">RFC 6167</a> jms" URI Scheme April 2011</span>
deliveryMode
timeToLive
priority
Message senders are strongly urged to remove from the URI extra
parameters like the above in environments where the data will be
redundant with information specified elsewhere in the JMS message.
Any use of additional parameters, either as a part of a definition of
a new variant or for more general use, SHOULD also specify whether
those parameters ought to be removed by a sender as specified here.
If a recipient is aware of the "jms" URI scheme, and it receives a
message containing a JMS URI, it MUST ignore or discard parameters
that it does not recognize.
<span class="h4"><a class="selflink" id="section-8.2.2" href="#section-8.2.2">8.2.2</a>. Sender Concerns</span>
A third party could intercept and replace a URI containing any of the
JMS/JNDI configuration parameters, such as
"jndiConnectionFactoryName", "jndiInitialContextFactory", or
"jndiURL". As these parameters can affect how an implementation
establishes an initial connection, such parameters could be used as a
means to subvert communications. This could possibly result in
re-routing communications to third parties, who could then monitor
sent messages. Clients SHOULD NOT use these URI parameters unless
assured of their validity in trusted environments.
<span class="h3"><a class="selflink" id="section-8.3" href="#section-8.3">8.3</a>. Back-End Transcoding</span>
This specification, in using the URI specification and building
around the JMS specification, has no particular transcoding issues.
Any such issues are problems with the underlying implementation of
Java and the Java Messaging Service being employed.
<span class="h3"><a class="selflink" id="section-8.4" href="#section-8.4">8.4</a>. Semantic Attacks</span>
A possible semantic attack on the "jndi" variant could be
accomplished by replacing characters of the JMS URI from one language
with equivalent-looking characters from another language, known as an
"Internationalized Domain Name (IDN) homograph attack" [<a href="#ref-HOMOGRAPH" title=""IDN Homograph attack"">HOMOGRAPH</a>].
This kind of attack could occur in a variety of ways. For example,
<span class="grey">Phillips, et al. Informational [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc6167">RFC 6167</a> jms" URI Scheme April 2011</span>
if an environment allows for the automatic registration of JNDI
Destination names, a malicious actor could register and then
publicize an alternate of an existing Destination name. Such an
environment ought to prevent the use of homograph equivalents,
perhaps by restricting allowed characters, so that clients do not
accidentally send their requests to unintended Destinations.
The "queue" and "topic" variants are subject to the same concerns as
the "jndi" variant. In addition, because the Destination names are
vendor defined, URIs employing these two variants might employ
special characters that significantly change the meaning of the URI.
It is possible that the introduction of a single character --
difficult for a human to notice -- might dramatically change the
intended meaning of a URI. In situations where this might be an
issue, users of this URI are urged to strongly consider the "jndi"
variant instead.
<span class="h3"><a class="selflink" id="section-8.5" href="#section-8.5">8.5</a>. Other Security Concerns</span>
This specification does not define or anticipate any use for IP
addresses as part of the URI, so no issues around IP addresses, rare
or otherwise, are raised by this specification.
This specification does not define any characteristics of a "jms"
scheme URI that contain sensitive information.
<span class="h2"><a class="selflink" id="section-9" href="#section-9">9</a>. IANA Considerations</span>
<span class="h3"><a class="selflink" id="section-9.1" href="#section-9.1">9.1</a>. URI Scheme Registration</span>
IANA registered the Java Message Service URI scheme described in this
document, according to the following scheme registration request,
using the template from [<a href="./rfc4395" title=""Guidelines and Registration Procedures for New URI Schemes"">RFC4395</a>]:
o URI scheme name: jms
o Status: Provisional
o URI scheme syntax: See <a href="#section-3">Section 3</a>
o URI scheme semantics: See <a href="#section-4">Section 4</a>
o Encoding considerations: See <a href="#section-5">Section 5</a>
o Applications/protocols that use this URI scheme name: See
<a href="#section-6">Section 6</a>
o Interoperability considerations: See <a href="#section-7">Section 7</a>
<span class="grey">Phillips, et al. Informational [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc6167">RFC 6167</a> jms" URI Scheme April 2011</span>
o Security considerations: See <a href="#section-8">Section 8</a>
o Contact: See the Authors' Addresses section
o References: See the References section
<span class="h3"><a class="selflink" id="section-9.2" href="#section-9.2">9.2</a>. "jms" URI Scheme Registries</span>
Per this URI scheme, IANA has created a registry for possible
"variants". IANA can reject obviously bogus registrations.
<span class="h4"><a class="selflink" id="section-9.2.1" href="#section-9.2.1">9.2.1</a>. JMS URI Variants</span>
This registry provides a listing of "jms" URI scheme variants.
Variant names beginning with "vnd." are reserved for vendor
extensions. Such variants should follow a pattern of
vnd.<vendorname>.<label>. The <vendorname> corresponds to the
iana-vendor-tag production from [<a href="./rfc6075" title=""The Internet Assigned Number Authority (IANA) Application Configuration Access Protocol (ACAP) Vendor Subtrees Registry"">RFC6075</a>], and vendor.<vendorname>
must already be registered in the Application Configuration Access
Protocol (ACAP) Vendor Subtree. The <label> is chosen by said
vendor.
All variant names are to be registered on a first come, first served
basis.
Variants must conform to the "jms-variant" production above. Since
variants occur in URIs, they ought to be short, and MUST NOT be more
than forty characters in length.
This document defines the "jndi", "queue", and "topic" variants
initially included in the registry.
<span class="h4"><a class="selflink" id="section-9.2.2" href="#section-9.2.2">9.2.2</a>. "jms" URI Scheme Variant Registration Template</span>
This template describes the fields that must be present to register a
new variant for use in a JMS URI.
To: iana@iana.org
Subject: Registration of JMS URI variant name
JMS URI variant name: Variants must conform to the "jms-variant"
production above. Since variants occur in URIs, they ought to be
short, and MUST NOT be more than forty characters in length.
Description: A description of the purpose of the variant being
registered.
<span class="grey">Phillips, et al. Informational [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc6167">RFC 6167</a> jms" URI Scheme April 2011</span>
Contact Information: Name(s) and email address(es) to contact for
more information about this registration.
Description URL: If available, a URL for a document describing the
details of how the variant works.
Comments: Any comments the requester thinks are relevant to this
request.
Change Controller: Contact information for the person who controls
further changes to this variant definition.
<span class="h4"><a class="selflink" id="section-9.2.3" href="#section-9.2.3">9.2.3</a>. Change Control</span>
Once a JMS URI variant registration has been published by IANA, the
change controller can request a change to its definition. The change
request follows the same procedure as the registration request.
The change controller of a JMS URI variant can pass responsibility
for the JMS URI variant to another person or agency by informing
IANA; this can be done without discussion or review.
JMS URI variant registrations MUST NOT be deleted; mechanisms that
are no longer believed appropriate for use can be marked as obsolete
in the Comment field.
In exceptional circumstances, the IESG can reassign responsibility
for a JMS URI variant.
The IESG is considered to be the owner of all JMS URI variants that
are on the IETF Standards Track.
<span class="h2"><a class="selflink" id="section-10" href="#section-10">10</a>. Contributors</span>
The authors gratefully acknowledge the contributions of:
Phil Adams
International Business Machines Corporation
EMail: phil_adams@us.ibm.com
Glen Daniels
WSO2
EMail: glen@wso2.com
Peter Easton
Progress Software
EMail: peaston@progress.com
<span class="grey">Phillips, et al. Informational [Page 18]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-19" ></span>
<span class="grey"><a href="./rfc6167">RFC 6167</a> jms" URI Scheme April 2011</span>
Tim Frank
Software AG.
EMail: tim.frank@softwareag.com
Lei Jin
BEA Systems, Inc. until March 2007
Eric Johnson
TIBCO Software Inc.
EMail: eric@tibco.com
Vinod Kumar
BEA Systems, Inc. until May 2007
Amelia A. Lewis
TIBCO Software Inc.
EMail: alewis@tibco.com
Roland Merrick
International Business Machines Corporation until June 2009
Mark Phillips
International Business Machines Corporation
EMail: m8philli@uk.ibm.com
Derek Rokicki
Software AG.
EMail: derek.rokicki@softwareag.com
Stephen Todd
International Business Machines Corporation until April 2007
Dongbo Xiao
Oracle Corp.
EMail: dongbo.xiao@oracle.com
Prasad Yendluri
Software AG.
EMail: prasad.yendluri@softwareag.com
<span class="h2"><a class="selflink" id="section-11" href="#section-11">11</a>. Acknowledgements</span>
Oracle and Java are registered trademarks of Oracle and/or its
affiliates. Other names may be trademarks of their respective
owners.
<span class="grey">Phillips, et al. Informational [Page 19]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-20" ></span>
<span class="grey"><a href="./rfc6167">RFC 6167</a> jms" URI Scheme April 2011</span>
<span class="h2"><a class="selflink" id="section-12" href="#section-12">12</a>. References</span>
<span class="h3"><a class="selflink" id="section-12.1" href="#section-12.1">12.1</a>. Normative References</span>
[<a id="ref-JLS">JLS</a>] Sun Microsystems, Inc., "The Java Language
Specification, Third Edition", January 2005,
<<a href="http://java.sun.com/docs/books/jls/third_edition/html/j3TOC.html">http://java.sun.com/docs/books/jls/third_edition/html/</a>
<a href="http://java.sun.com/docs/books/jls/third_edition/html/j3TOC.html">j3TOC.html</a>>.
[<a id="ref-JMS">JMS</a>] Hapner, M., Burridge, R., Sharma, R., Fialli, J., and K.
Stout, "Java Message Service", April 2002,
<<a href="http://java.sun.com/products/jms/">http://java.sun.com/products/jms/</a>>.
[<a id="ref-JNDI">JNDI</a>] Sun Microsystems, Inc., "Java Naming and Directory
Interface Application Programming Interface", July 1999,
<<a href="http://java.sun.com/products/jndi/docs.html">http://java.sun.com/products/jndi/docs.html</a>>.
[<a id="ref-RFC2119">RFC2119</a>] Bradner, S., "Key words for use in RFCs to Indicate
Requirement Levels", <a href="https://www.rfc-editor.org/bcp/bcp14">BCP 14</a>, <a href="./rfc2119">RFC 2119</a>, March 1997.
[<a id="ref-RFC3629">RFC3629</a>] Yergeau, F., "UTF-8, a transformation format of ISO
10646", STD 63, <a href="./rfc3629">RFC 3629</a>, November 2003.
[<a id="ref-RFC3986">RFC3986</a>] Berners-Lee, T., Fielding, R., and L. Masinter, "Uniform
Resource Identifier (URI): Generic Syntax", STD 66,
<a href="./rfc3986">RFC 3986</a>, January 2005.
[<a id="ref-RFC3987">RFC3987</a>] Duerst, M. and M. Suignard, "Internationalized Resource
Identifiers (IRIs)", <a href="./rfc3987">RFC 3987</a>, January 2005.
[<a id="ref-RFC4395">RFC4395</a>] Hansen, T., Hardie, T., and L. Masinter, "Guidelines and
Registration Procedures for New URI Schemes", <a href="https://www.rfc-editor.org/bcp/bcp35">BCP 35</a>,
<a href="./rfc4395">RFC 4395</a>, February 2006.
[<a id="ref-RFC5234">RFC5234</a>] Crocker, D., Ed., and P. Overell, "Augmented BNF for
Syntax Specifications: ABNF", STD 68, <a href="./rfc5234">RFC 5234</a>,
January 2008.
[<a id="ref-RFC6075">RFC6075</a>] Cridland, D., "The Internet Assigned Number Authority
(IANA) Application Configuration Access Protocol (ACAP)
Vendor Subtrees Registry", <a href="./rfc6075">RFC 6075</a>, December 2010.
<span class="grey">Phillips, et al. Informational [Page 20]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-21" ></span>
<span class="grey"><a href="./rfc6167">RFC 6167</a> jms" URI Scheme April 2011</span>
<span class="h3"><a class="selflink" id="section-12.2" href="#section-12.2">12.2</a>. Informative References</span>
[<a id="ref-HOMOGRAPH">HOMOGRAPH</a>] "IDN Homograph attack", 2011, <<a href="http://en.wikipedia.org/w/index.php?title=IDN_homograph_attack&oldid=416746950">http://en.wikipedia.org/</a>
<a href="http://en.wikipedia.org/w/index.php?title=IDN_homograph_attack&oldid=416746950">w/index.php?title=IDN_homograph_attack&oldid=416746950</a>>.
[<a id="ref-JAVA">JAVA</a>] Oracle Corporation, "Oracle Technology for Java
Developers", 2011,
<<a href="http://www.oracle.com/technetwork/java/index.html">http://www.oracle.com/technetwork/java/index.html</a>>.
[<a id="ref-SCA-JMS">SCA-JMS</a>] Holdsworth, S. and A. Karmarkar, "Service Component
Architecture JMS Binding Specification Version 1.1",
November 2010, <<a href="http://docs.oasis-open.org/opencsa/sca-bindings/sca-jmsbinding-1.1-spec.html">http://docs.oasis-open.org/opencsa/</a>
<a href="http://docs.oasis-open.org/opencsa/sca-bindings/sca-jmsbinding-1.1-spec.html">sca-bindings/sca-jmsbinding-1.1-spec.html</a>>.
[<a id="ref-SCA-TC">SCA-TC</a>] "OASIS Service Component Architecture / Bindings (SCA-
Bindings) TC", <<a href="http://www.oasis-open.org/committees/tc_home.php?wg_abbrev=sca-bindings">http://www.oasis-open.org/committees/</a>
<a href="http://www.oasis-open.org/committees/tc_home.php?wg_abbrev=sca-bindings">tc_home.php?wg_abbrev=sca-bindings</a>>.
[<a id="ref-SOAP-JMS">SOAP-JMS</a>] Adams, P., Easton, P., Johnson, E., Merrick, R., and M.
Phillips, "SOAP over Java Message Service 1.0",
October 2010,
<<a href="http://www.w3.org/TR/2010/WD-soapjms-20101026/">http://www.w3.org/TR/2010/WD-soapjms-20101026/</a>>.
<span class="grey">Phillips, et al. Informational [Page 21]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-22" ></span>
<span class="grey"><a href="./rfc6167">RFC 6167</a> jms" URI Scheme April 2011</span>
Authors' Addresses
Mark Phillips
International Business Machines Corporation
Hursley House, Hursley Park
Winchester, Hampshire SO21 2JN
United Kingdom
EMail: m8philli@uk.ibm.com
Phil Adams
International Business Machines Corporation
11501 Burnet Rd.
Austin, TX 78758
United States
EMail: phil_adams@us.ibm.com
Derek Rokicki
Software AG.
11700 Plaza America Drive
Reston, VA 20190
United States
EMail: derek.rokicki@softwareag.com
Eric Johnson
TIBCO Software Inc.
3303 Hillview Avenue
Palo Alto, CA 94304
United States
EMail: eric@tibco.com
Phillips, et al. Informational [Page 22]
</pre>
|