[Jboss-cvs] JBoss Messaging SVN: r1331 - branches/Branch_1_0/docs/gettingstarted/en/modules

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed Sep 20 18:35:30 EDT 2006


Author: clebert.suconic at jboss.com
Date: 2006-09-20 18:35:28 -0400 (Wed, 20 Sep 2006)
New Revision: 1331

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

Modified: branches/Branch_1_0/docs/gettingstarted/en/modules/configuration.xml
===================================================================
--- branches/Branch_1_0/docs/gettingstarted/en/modules/configuration.xml	2006-09-20 22:23:05 UTC (rev 1330)
+++ branches/Branch_1_0/docs/gettingstarted/en/modules/configuration.xml	2006-09-20 22:35:28 UTC (rev 1331)
@@ -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