diff --git a/docs/src/reference/docbook/gateway.xml b/docs/src/reference/docbook/gateway.xml
index 2866abbcc3..350814309f 100644
--- a/docs/src/reference/docbook/gateway.xml
+++ b/docs/src/reference/docbook/gateway.xml
@@ -9,14 +9,26 @@
Working with Objects instead of Messages is an improvement. However, it would be even better to have no
dependency on the Spring Integration API at all - including the gateway class. For that reason, Spring
Integration also provides a GatewayProxyFactoryBean that generates a proxy for
- any interface and internally invokes the gateway methods shown above. Namespace support is also
+ any interface and internally invokes the gateway methods shown below.
+
+
+ Namespace support is also
provided as demonstrated by the following example.
- ]]>
- Then, the "fooService" can be injected into other beans, and the code that invokes the methods on that
- proxied instance of the FooService interface has no awareness of the Spring Integration API. The general
+
+ Then, the "cafeService" can be injected into other beans, and the code that invokes the methods on that
+ proxied instance of the Cafe interface has no awareness of the Spring Integration API. The general
approach is similar to that of Spring Remoting (RMI, HttpInvoker, etc.). See the "Samples" Appendix for
an example that uses this "gateway" element (in the Cafe demo).
diff --git a/docs/src/reference/docbook/jms.xml b/docs/src/reference/docbook/jms.xml
index 0ce46ee7c7..5fda3a258a 100644
--- a/docs/src/reference/docbook/jms.xml
+++ b/docs/src/reference/docbook/jms.xml
@@ -304,8 +304,9 @@
JMS Samples
- To experiment with these JMS adapters, check out the samples available within the "samples/jms" directory in
- the distribution. There are two samples included. One provides inbound and outbound Channel Adapters, and the
+ To experiment with these JMS adapters, check out JMS samples available in our new Samples Git repository
+ available here: http://git.springsource.org/+spring-integration/spring-integration/samples .
+ There are two samples included. One provides inbound and outbound Channel Adapters, and the
other provides inbound and outbound Gateways. They are configured to run with an embedded ActiveMQ process, but
the "common.xml" file can easily be modified to support either a different JMS provider or a standalone
ActiveMQ process. In other words, you can split the configuration so that the inbound and outbound adapters are