diff --git a/docs/src/reference/docbook/jms.xml b/docs/src/reference/docbook/jms.xml
index 24246bddfb..436f63efea 100644
--- a/docs/src/reference/docbook/jms.xml
+++ b/docs/src/reference/docbook/jms.xml
@@ -9,6 +9,12 @@
an outbound Channel Adapter which uses the JmsTemplate to convert and send a JMS Message on
demand.
+
+ As you can see from above by using JmsTemplate and MessageListener container Spring Integration relies on Spring's JMS support.
+ This is important to understand since most of the attributes exposed on these adapters will configure the underlying Spring's JmsTemplate and/or
+ MessageListener container. For more details about JmsTemplate and MessageListener container please refer to
+ Spring JMS documentation.
+
Whereas the JMS Channel Adapters are intended for unidirectional Messaging (send-only or receive-only), Spring
Integration also provides inbound and outbound JMS Gateways for request/reply operations. The inbound gateway
diff --git a/spring-integration-jms/src/main/resources/org/springframework/integration/jms/config/spring-integration-jms-2.0.xsd b/spring-integration-jms/src/main/resources/org/springframework/integration/jms/config/spring-integration-jms-2.0.xsd
index a96cf536e7..1dd9054225 100644
--- a/spring-integration-jms/src/main/resources/org/springframework/integration/jms/config/spring-integration-jms-2.0.xsd
+++ b/spring-integration-jms/src/main/resources/org/springframework/integration/jms/config/spring-integration-jms-2.0.xsd
@@ -368,7 +368,15 @@
-
+
+
+
+ The boolean property used to configure the JmsTemplate with knowledge of what JMS domain is being used. By default the value of this property is 'false'',
+ indicating that the point-to-point domain, Queues, will be used. This property used by JmsTemplate determines the behavior of dynamic destination resolution
+ via implementations of the DestinationResolver interface.
+
+
+