[Jboss-cvs] JBoss Messaging SVN: r1330 - trunk/docs/gettingstarted/en/modules

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed Sep 20 18:23:06 EDT 2006


Author: clebert.suconic at jboss.com
Date: 2006-09-20 18:23:05 -0400 (Wed, 20 Sep 2006)
New Revision: 1330

Modified:
   trunk/docs/gettingstarted/en/modules/configuration.xml
Log:
JBMESSAGING-528

Modified: trunk/docs/gettingstarted/en/modules/configuration.xml
===================================================================
--- trunk/docs/gettingstarted/en/modules/configuration.xml	2006-09-20 21:29:56 UTC (rev 1329)
+++ trunk/docs/gettingstarted/en/modules/configuration.xml	2006-09-20 22:23:05 UTC (rev 1330)
@@ -635,8 +635,39 @@
          factory that uses the socket transport for all connections created from it.
       </para>
 
+       <para>
+         You can look at remoting configuration under:
+       </para>
+
+       <para>
+          &lt;JBoss&gt;/server/&lt;YourMessagingServer&gt;/deploy/jboss-messaging.sar/remoting-service.xml
+       </para>
+       
+       <para>
+          By default JBoss Messaging binds to ${jboss.bind.address} which can be defined by:
+          ./run.sh -c &lt;yourconfig&gt; -b yourIP.
+       </para>
+
+       <para>
+          You can change remoting-service.xml if you want for example use a
+          different communication port, or change any other network behavior.
+       </para>
   </section>
 
+  <section id="conf.callback">
+      <title>Configuring the callback</title>
 
+      <para>
+         JBoss Messaging uses a callback mechanism from Remoting that needs a Socket for callback operations. These socket properties are passed to the server by a remote call when the connection is being estabilished. As we said before we will support bidirectional protocols in future releases.
+      </para>
 
+      <para>
+         By default JBoss Messaging will execute InetAddress.getLocalHost().getHostAddress() to access your local host IP, but in case you need to setup a different IP, you can define a system property in your java arguments: 
+      </para>
+
+      <para>
+		Use java -Djboss.messaging.callback.bind.address=YourHost - That will determine the callBack host in your client.
+      </para>
+
+  </section>
 </chapter>




More information about the jboss-cvs-commits mailing list