[jboss-cvs] JBossAS SVN: r95150 - projects/docs/enterprise/5.0/JBoss_Remoting/JBoss_Remoting_User_Guide/en-US.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Mon Oct 19 19:10:18 EDT 2009


Author: benlc
Date: 2009-10-19 19:10:18 -0400 (Mon, 19 Oct 2009)
New Revision: 95150

Modified:
   projects/docs/enterprise/5.0/JBoss_Remoting/JBoss_Remoting_User_Guide/en-US/JBoss_Remoting_User_Guide.xml
   projects/docs/enterprise/5.0/JBoss_Remoting/JBoss_Remoting_User_Guide/en-US/components.xml
Log:
'committing Remoting User Guide changes following Tech review ch1-3'


Modified: projects/docs/enterprise/5.0/JBoss_Remoting/JBoss_Remoting_User_Guide/en-US/JBoss_Remoting_User_Guide.xml
===================================================================
--- projects/docs/enterprise/5.0/JBoss_Remoting/JBoss_Remoting_User_Guide/en-US/JBoss_Remoting_User_Guide.xml	2009-10-19 23:08:46 UTC (rev 95149)
+++ projects/docs/enterprise/5.0/JBoss_Remoting/JBoss_Remoting_User_Guide/en-US/JBoss_Remoting_User_Guide.xml	2009-10-19 23:10:18 UTC (rev 95150)
@@ -10,7 +10,7 @@
 	<xi:include href="architecture.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
 	<xi:include href="components.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
   <!--  	<xi:include href="configuration.xml" xmlns:xi="http://www.w3.org/2001/XInclude" /> -->
-  <!--	<xi:include href="remoting_libraries.xml" xmlns:xi="http://www.w3.org/2001/XInclude" /> -->
+  <!--  	<xi:include href="remoting_libraries.xml" xmlns:xi="http://www.w3.org/2001/XInclude" /> -->
 	<xi:include href="Revision_History.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
 <!--	<index /> -->
 </book>

Modified: projects/docs/enterprise/5.0/JBoss_Remoting/JBoss_Remoting_User_Guide/en-US/components.xml
===================================================================
--- projects/docs/enterprise/5.0/JBoss_Remoting/JBoss_Remoting_User_Guide/en-US/components.xml	2009-10-19 23:08:46 UTC (rev 95149)
+++ projects/docs/enterprise/5.0/JBoss_Remoting/JBoss_Remoting_User_Guide/en-US/components.xml	2009-10-19 23:10:18 UTC (rev 95150)
@@ -26,7 +26,7 @@
 	    	<row>
 	        	<entry><classname>org.jboss.remoting.Client</classname></entry>
 	        	<entry>
-	        		The <classname>Client</classname> class is the main interface for making all invocations, connecting underlying transports to servers, adding and removing listeners (including callback listeners) and setting timeouts. The <classname>Client</classname> constructor requires an <classname>InvokerLocator</classname> object to be passed as a minimum. The <methodname>connect()</methodname> method is used to cause the underlying transport to connect to the remote server. The <methodname>disconnect()</methodname> method is technically only required for stateful transports such as sockets or when client leasing is turned on. However, it is recommended to use the <methodname>disconnect()</methodname> method for all transport types.
+	        		The <classname>Client</classname> class is the main interface for making all invocations, connecting underlying transports to servers, adding and removing listeners (including callback listeners) and setting timeouts. The <classname>Client</classname> constructor requires an <classname>InvokerLocator</classname> object to be passed as a minimum. The <methodname>connect()</methodname> method is used to cause the underlying transport to connect to the remote server. The <methodname>disconnect()</methodname> method is technically only required for stateful transports such as the socket transport or when client leasing is turned on. However, it is recommended to use the <methodname>disconnect()</methodname> method for all transport types.
 	        	</entry>           
 	      	</row>
 	      	<row>
@@ -129,7 +129,7 @@
 				<itemizedlist>
 				<listitem>
 					<para>
-						if the system property <varname>remoting.bind_by_host</varname> is set to <literal> true</literal>, the IP address will be changed to the value of the local host address;
+						if the system property <varname>remoting.bind_by_host</varname> is set to <literal> false</literal>, the IP address will be changed to the value of the local host address;
 					</para>
 				</listitem>
 					<listitem>
@@ -159,7 +159,7 @@
 			</note>
 			<formalpara><title>InvokerLocator Comparisons</title>
 				<para>
-					As of release 2.0.0 of JBoss Remoting, the <classname>InvokerLocator</classname> class will accept a host name for the host portion of the invoker locator string. The supplied host name will not be converted to a corresponding IP address unless the system property <varname>remoting.bind_by_host</varname> is set to <literal>true</literal>. There are two comparison methods which can be used for comparing <classname>InvokerLocator</classname> objects which accept either a host name or an IP address. These methods include:
+					As of release 2.0.0 of JBoss Remoting, the <classname>InvokerLocator</classname> class will accept a host name for the host portion of the invoker locator string. The supplied host name will not be converted to a corresponding IP address unless the host is 0.0.0.0 and the system property <varname>remoting.bind_by_host</varname> is set to <literal>false</literal>. There are two comparison methods which can be used for comparing <classname>InvokerLocator</classname> objects which accept either a host name or an IP address. These methods include:
 				</para>
 			</formalpara>
 			<itemizedlist>
@@ -292,7 +292,7 @@
 			-->
 			<important><title>Important</title>		
 				<para>
-					A RuntimeException will be thrown in the event that the 'jboss.identity' file cannot be created or modified. This will result in the detector producing errors during start-up. More details in regard to maintaining the persistence of the identity and the location to which the identity is stored can be found in <classname>.org.jboss.remoting.ident.Identity</classname>.<methodname>createId()</methodname>
+					A RuntimeException will be thrown in the event that the 'jboss.identity' file cannot be created or modified. This will result in the detector producing errors during start-up. More details in regard to maintaining the persistence of the identity and the location to which the identity is stored can be found in <classname>org.jboss.remoting.ident.Identity</classname>.<methodname>createId()</methodname>
 				</para>
 			</important>
   		</section>




More information about the jboss-cvs-commits mailing list