[hornetq-commits] JBoss hornetq SVN: r8738 - trunk/docs/user-manual/en.

do-not-reply at jboss.org do-not-reply at jboss.org
Wed Jan 6 07:43:14 EST 2010


Author: jmesnil
Date: 2010-01-06 07:43:13 -0500 (Wed, 06 Jan 2010)
New Revision: 8738

Modified:
   trunk/docs/user-manual/en/using-jms.xml
Log:
fixed program listing

Modified: trunk/docs/user-manual/en/using-jms.xml
===================================================================
--- trunk/docs/user-manual/en/using-jms.xml	2010-01-06 12:41:30 UTC (rev 8737)
+++ trunk/docs/user-manual/en/using-jms.xml	2010-01-06 12:43:13 UTC (rev 8738)
@@ -182,7 +182,7 @@
 ConnectionFactory cf = HornetQJMSClient.createConnectionFactory(transportConfiguration);
         </programlisting>
         <para>We create the JMS Queue Object via the HornetQJMSClient Utility class:</para>
-        <programlisting>Queue orderQueue = HornetQJMSClient.createHornetQQueue("OrderQueue");</programlisting>
+        <programlisting>Queue orderQueue = HornetQJMSClient.createQueue("OrderQueue");</programlisting>
         <para>Next we create a JMS connection using the connection factory:</para>
         <programlisting>Connection connection = cf.createConnection();</programlisting>
         <para>And we create a non transacted JMS Session, with AUTO_ACKNOWLEDGE acknowledge



More information about the hornetq-commits mailing list