[jboss-cvs] JBossAS SVN: r97195 - projects/docs/enterprise/4.2.8/readme/en-US.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Mon Nov 30 20:46:47 EST 2009


Author: laubai
Date: 2009-11-30 20:46:47 -0500 (Mon, 30 Nov 2009)
New Revision: 97195

Modified:
   projects/docs/enterprise/4.2.8/readme/en-US/Release_Notes_CP08.xml
Log:
Added notes for JBPAPP-3143, 3145.

Modified: projects/docs/enterprise/4.2.8/readme/en-US/Release_Notes_CP08.xml
===================================================================
--- projects/docs/enterprise/4.2.8/readme/en-US/Release_Notes_CP08.xml	2009-12-01 01:04:03 UTC (rev 97194)
+++ projects/docs/enterprise/4.2.8/readme/en-US/Release_Notes_CP08.xml	2009-12-01 01:46:47 UTC (rev 97195)
@@ -435,17 +435,6 @@
 			<title>JBoss Application Server</title>
 			<para>
 				<itemizedlist>
-                    <!--<listitem>
-                      <para>
-                        <ulink url="https://jira.jboss.org/jira/browse/JBPAPP-3103">JBPAPP-3103</ulink>: #MODIFY
-                      </para>
-                    </listitem>-->
-                    <!-- #MODIFY - required? not broken in previous version
-                    <listitem>
-                      <para>
-                        <ulink url="https://jira.jboss.org/jira/browse/JBPAPP-3099">JBPAPP-3099</ulink>: During startup, JBoss Application Server printed repetitive messages to the log, which could negatively affect performance. The line causing the excessive logging has been removed.
-                      </para>
-                    </listitem>-->
 					<listitem>
 						<para>
                           <ulink url="https://jira.jboss.org/jira/browse/JBPAPP-2905">JBPAPP-2905</ulink>: The <varname>ScanPeriod</varname> in the <literal>production</literal> configuration is set to sixty seconds. If the deployment scanner thread was sleeping when shutdown was initiated, shutdown waited for the length of the deployment scanner's sleep time. The deployment scanner thread is now stopped when shutdown is initiated, and the wait no longer occurs.
@@ -597,30 +586,47 @@
 				<itemizedlist>
                     <listitem>
                       <para>
-                        <ulink url="https://jira.jboss.org/jira/browse/JBPAPP-3117">JBPAPP-3117</ulink>: If an incorrect <varname>mcast_addr</varname> value is set, users are pointed to an outdated URL for information about cross talking. If you experience problems with <varname>mcast_addr</varname> and cross talking, the updated URL for further information is <ulink url="https://www.jboss.org/community/docs/DOC-9469">https://www.jboss.org/community/docs/DOC-9469</ulink>.
+                        <ulink url="https://jira.jboss.org/jira/browse/JBPAPP-3145">JBPAPP-3145</ulink>: The <filename>wsrunclient.sh</filename> scripts are missing a library and fail with a <exceptionname>ClassNotFoundException</exceptionname>. To work around this issue on Linux, execute the following statements before executing <filename>wsrunclient.sh</filename>:
                       </para>
-                      <!-- ORIGINAL TEXT FOR JBPAPP-3119
+                      <programlisting><![CDATA[
+export JBOSS_HOME=<path to your JBoss EAP installation>
+WSRUNCLIENT_CLASSPATH="$JBOSS_HOME/client/wsdl4j.jar"
+export WSRUNCLIENT_CLASSPATH 
+                      ]]></programlisting>
+                      <para>
+                        To work around this issue on Windows, execute the following before executing <filename>wsrunclient.bat</filename>:
                       </para>
-                        If the <varname>java.net.preferIPv4Stack</varname> or <varname>java.net.preferIPv6Stack</varname> property is not specified, JGroups prints a warning and exception similar to the following:
+                      <programlisting><![CDATA[
+set JBOSS_HOME=<path to your JBoss EAP installation>
+set WSRUNCLIENT_CLASSPATH=%JBOSS_HOME%/client/wsdl4j.jar 
+                      ]]></programlisting>
+                    </listitem>
+                    <listitem>
+                      <para>
+                        <ulink url="https://jira.jboss.org/jira/browse/JBPAPP-3143">JBPAPP-3143</ulink>: The <filename>wsprovide.sh</filename> and <filename>wsprovide.bat</filename> scripts fail when generating a WSDL file from the examples. To work around this issue on Linux, execute the following statements before running <filename>wsprovide.sh</filename>:
                       </para>
-                      <screen>
-[JBoss] 05:57:35,544 WARN [UDP] could not bind to /234.1.78.86 
-  (IPv4 address); make sure your mcast_addr is of the same type 
-  as the preferred IP stack (IPv4 or IPv6) by checking the value 
-  of the system properties java.net.preferIPv4Stack and
-  java.net.preferIPv6Addresses.
-[JBoss] Will ignore mcast_addr, but this may lead to cross 
-  talking (see http://www.jboss.com/wiki/Edit.jsp?page=CrossTalking 
-  for details).
-[JBoss] Exception was: java.net.BindException: Cannot assign 
-  requested address 
-                      </screen>
+                      <programlisting><![CDATA[
+export JBOSS_HOME=<path to your JBoss EAP installation>
+WSPROVIDE_CLASSPATH="$JBOSS_HOME/client/jaxb-xjc.jar"
+WSPROVIDE_CLASSPATH="$WSPROVIDE_CLASSPATH:$JBOSS_HOME/client/jboss-ejb3x.jar"
+WSPROVIDE_CLASSPATH="$WSPROVIDE_CLASSPATH:$JBOSS_HOME/client/wsdl4j.jar"
+export WSPROVIDE_CLASSPATH 
+                      ]]></programlisting>
                       <para>
-                        To work around this issue, be sure to specify your preferred IP stack (either <literal>IPv4</literal> or <literal>IPv6</literal>) at startup with one of the following switches:
+                        To work around this issue on Windows, execute the following statements before running <filename>wsprovide.bat</filename>:
                       </para>
-                      <programlisting>-Djava.net.preferIPv4Stack</programlisting>
-                      <programlisting>-Djava.net.preferIPv6Stack</programlisting>-->
+                      <programlisting><![CDATA[
+set JBOSS_HOME=<path to your JBoss EAP installation>
+set WSPROVIDE_CLASSPATH=%JBOSS_HOME%/client/jaxb-xjc.jar
+set WSPROVIDE_CLASSPATH=%WSPROVIDE_CLASSPATH%;%JBOSS_HOME%/client/jboss-ejb3x.jar
+set WSPROVIDE_CLASSPATH=%WSPROVIDE_CLASSPATH%;%JBOSS_HOME%/client/wsdl4j.jar 
+                      ]]></programlisting>
                     </listitem>
+                    <listitem>
+                      <para>
+                        <ulink url="https://jira.jboss.org/jira/browse/JBPAPP-3117">JBPAPP-3117</ulink>: If an incorrect <varname>mcast_addr</varname> value is set, users are pointed to an outdated URL for information about cross talking. If you experience problems with <varname>mcast_addr</varname> and cross talking, the updated URL for further information is <ulink url="https://www.jboss.org/community/docs/DOC-9469">https://www.jboss.org/community/docs/DOC-9469</ulink>.
+                      </para>
+                    </listitem>
 					<listitem>
 						<para>
 							<ulink url="http://jira.jboss.com/jira/browse/JBPAPP-1774">JBPAPP-1774</ulink>: The JBoss Enterprise Application Platform RPM cannot be installed with only the OpenJDK distribution.
@@ -969,6 +975,7 @@
 				</itemizedlist>
 			</para>
 		</formalpara>
+
 	</section>
 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="Revision_History.xml"/>
 




More information about the jboss-cvs-commits mailing list