[jboss-cvs] JBoss Messaging SVN: r7257 - trunk/docs.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Mon Jun 8 12:17:05 EDT 2009


Author: jmesnil
Date: 2009-06-08 12:17:05 -0400 (Mon, 08 Jun 2009)
New Revision: 7257

Modified:
   trunk/docs/README.html
Log:
Release Notes

* added note to run the Java EE examples on Windows

Modified: trunk/docs/README.html
===================================================================
--- trunk/docs/README.html	2009-06-08 16:01:41 UTC (rev 7256)
+++ trunk/docs/README.html	2009-06-08 16:17:05 UTC (rev 7257)
@@ -22,3 +22,28 @@
 <br>
 
 For more info on what this release has to offer please refer to the quick start guide or the user manual. Enjoy!!
+
+<h3>Running the Java EE examples on Windows</h3>
+
+<p>The Java EE examples run by default with JBoss AS on Linux. To run them on Windows, you will have
+to replace the reference to <code>run.sh</code> by <code>run.bat</code> everywhere JBoss AS server
+is started (in <code>/examples/javaee/common/build.xml</code>, <code>/examples/javaee/jca-config/build.xml</code>, and
+<code>/examples/javaee/xarecovery/build.xml</code>)</p>
+
+
+For example, in <code>/examples/javaee/common/build.xml</code>, replace:
+<pre><code>
+   &lt;exec dir="${jboss.home}/bin" executable="sh"&gt;
+      &lt;arg line="run.sh -c ${example.name}-example-profile"/&gt;
+   &lt;/exec&gt;
+</code></pre>
+
+by 
+
+<pre><code>
+   &lt;exec dir="${jboss.home}/bin" executable="cmd"&gt;
+      &lt;arg line="/c run.bat -c ${example.name}-example-profile"/&gt;
+   &lt;/exec&gt;
+</code></pre>
+
+




More information about the jboss-cvs-commits mailing list