[jboss-cvs] JBoss Messaging SVN: r6830 - trunk/docs/user-manual/en/modules.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Mon May 18 05:34:23 EDT 2009


Author: ataylor
Date: 2009-05-18 05:34:23 -0400 (Mon, 18 May 2009)
New Revision: 6830

Modified:
   trunk/docs/user-manual/en/modules/interoperability.xml
Log:
stomp section docs

Modified: trunk/docs/user-manual/en/modules/interoperability.xml
===================================================================
--- trunk/docs/user-manual/en/modules/interoperability.xml	2009-05-18 09:16:23 UTC (rev 6829)
+++ trunk/docs/user-manual/en/modules/interoperability.xml	2009-05-18 09:34:23 UTC (rev 6830)
@@ -2,7 +2,39 @@
 <chapter id="interoperability">
     <title>Interoperability</title>
     <para>blah</para>
-   
-
-   
+    <section>
+        <title>JMS</title>
+        <para/>
+    </section>
+    <section>
+        <title>Core Protocol</title>
+        <para/>
+    </section>
+    <section>
+        <title>AMQP</title>
+        <para/>
+    </section>
+    <section>
+        <title>Stomp and StompConnect</title>
+        <para>Stomp is a wire protocol that allows stomp clients from to communicate with Stomp
+            Brokers. Using StompConnect it is possible to turn JBM into a Stomp Broker and use any
+            of the available stomp clients. These include clients written in C, C++, c# and .net
+            etc. For more information on Stomp and StompConnect go to <ulink
+                url="http://stomp.codehaus.org/Home"/></para>
+        <para>To run Stomp first start the JBoss Messaging server and make sure that it is using
+            JNDI.</para>
+        <para>Stomp requires the file <literal>jndi.properties</literal> to be available on the
+            classpath. This should look something like:</para>
+        <programlisting>java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory
+java.naming.provider.url=jnp://localhost:1099
+java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces</programlisting>
+        <para>Make sure this file is in the classpath along with the StompConnect jar and the JBoss
+            Messaging jars and simply run <literal>java
+            org.codehaus.stomp.jms.Main</literal>.</para>
+        <para>JBoss Messaging is now available for Stomp clients to connect to.</para>
+    </section>
+    <section>
+        <title>REST</title>
+        <para/>
+    </section>
 </chapter>




More information about the jboss-cvs-commits mailing list