Release Notes - JBoss Messaging - Version 2.0.0 Beta 3


22th June 2009

These are the release notes for JBoss Messaging 2.0.0 Beta 3

For full description of the contents please see the JBoss Messaging project JIRA.

This release is a feature complete release for forthcoming JBoss Messaging 2.0.0

For more info on what this release has to offer please refer to the quick start guide or the user manual. Enjoy!!

Running the Java EE examples on Windows

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 run.sh by run.bat everywhere JBoss AS server is started (in /examples/javaee/common/build.xml, /examples/javaee/jca-config/build.xml, and /examples/javaee/xarecovery/build.xml)

For example, in /examples/javaee/common/build.xml, replace:

   <exec dir="${jboss.home}/bin" executable="sh">
      <arg line="run.sh -c ${example.name}-example-profile"/>
   </exec>
by

   <exec dir="${jboss.home}/bin" executable="cmd">
      <arg line="/c run.bat -c ${example.name}-example-profile"/>
   </exec>