Author: ataylor
Date: 2010-01-06 06:20:38 -0500 (Wed, 06 Jan 2010)
New Revision: 8733
Modified:
trunk/docs/user-manual/en/using-jms.xml
Log:
doc fixes
Modified: trunk/docs/user-manual/en/using-jms.xml
===================================================================
--- trunk/docs/user-manual/en/using-jms.xml 2010-01-06 11:15:41 UTC (rev 8732)
+++ trunk/docs/user-manual/en/using-jms.xml 2010-01-06 11:20:38 UTC (rev 8733)
@@ -173,7 +173,7 @@
<para>For a full working example of direct instantiation please see the JMS
examples in
<xref linkend="examples"/>.</para>
<para>Here's our simple example, rewritten to not use JNDI at
all:</para>
- <para>We create the JMS ConnectionFactory object directly, note we need to
provide
+ <para>We create the JMS ConnectionFactory object via the HornetQJMSClient
Utility class, note we need to provide
connection parameters and specify which transport we are using, for more
information on
connectors please see <xref
linkend="configuring-transports"/>.</para>
<programlisting>
@@ -181,7 +181,7 @@
new TransportConfiguration(NettyConnectorFactory.class.getName());
ConnectionFactory cf = HornetQJMSClient.createConnectionFactory(transportConfiguration);
</programlisting>
- <para>We create the JMS Queue Object directly:</para>
+ <para>We create the JMS Queue Object via the HornetQJMSClient Utility
class:</para>
<programlisting>Queue orderQueue =
HornetQJMSClient.createHornetQQueue("OrderQueue");</programlisting>
<para>Next we create a JMS connection using the connection
factory:</para>
<programlisting>Connection connection =
cf.createConnection();</programlisting>