Author: objectiser
Date: 2009-11-20 09:33:44 -0500 (Fri, 20 Nov 2009)
New Revision: 290
Modified:
trunk/distribution/src/main/assembly/bin.xml
trunk/distribution/src/main/release/ReleaseNotes.txt
trunk/distribution/src/main/release/install/build.xml
trunk/distribution/src/main/release/version.properties
trunk/docs/docbook/gettingstartedguide/src/main/module/examples.xml
trunk/samples/esb/bpel_helloworld/build.xml
trunk/samples/esb/bpel_helloworld/readme.txt
trunk/samples/esb/bpel_loan_fault/build.xml
trunk/samples/esb/bpel_loan_fault/readme.txt
Log:
Updated release note and exluded examples that fail from the distribution for M2.
Modified: trunk/distribution/src/main/assembly/bin.xml
===================================================================
--- trunk/distribution/src/main/assembly/bin.xml 2009-11-20 11:41:33 UTC (rev 289)
+++ trunk/distribution/src/main/assembly/bin.xml 2009-11-20 14:33:44 UTC (rev 290)
@@ -69,6 +69,17 @@
<fileSet>
<directory>../samples</directory>
<outputDirectory>samples</outputDirectory>
+
+ <!-- Only required for 2.0-M2 release, to remove examples
+ that are not currently working -->
+ <includes>
+ <include>quickstart/hello_world/**</include>
+ <include>quickstart/simple_correlation/**</include>
+ <include>quickstart/simple_invoke/**</include>
+ <include>quickstart/loan_approval/**</include>
+ <include>esb/bpel_helloworld/**</include>
+ <include>esb/bpel_loan_fault/**</include>
+ </includes>
</fileSet>
<fileSet>
Modified: trunk/distribution/src/main/release/ReleaseNotes.txt
===================================================================
--- trunk/distribution/src/main/release/ReleaseNotes.txt 2009-11-20 11:41:33 UTC (rev
289)
+++ trunk/distribution/src/main/release/ReleaseNotes.txt 2009-11-20 14:33:44 UTC (rev
290)
@@ -1,6 +1,46 @@
+RiftSaw 2.0-M2
+==============
+
+This is the second milestone release of RiftSaw 2.0 - the JBoss BPEL server.
+
+The main purpose of this release is to provide early access to the JBossWS integration
+and new GWT based admin console. The JBossWS integration replaces the Axis2
+functionality provided in 2.0-M1.
+
+The detailed report for this release can be found at:
+https://jira.jboss.org/jira/secure/ReleaseNote.jspa?version=12313779&styleName=Html&projectId=12310843&Create=Create
+
+Known Issues:
+
+RIFTSAW-10 - Migrate from Axis2 to JBossWS
+
+Most of the functionality has been implemented. The remaining issues relate to a BPEL
+process returning a fault (RIFTSAW-91) and where a BPEL process has a WSDL interface
that
+imports other files (e.g. xsd or wsdl) (RIFTSAW-113).
+
+
+RIFTSAW-111 - GWT/BIRT related exceptions
+
+Some GWT and BIRT related exceptions occur when the server is started. These can
+be ignored.
+
+
+Database support
+
+There are a number of database related issues. We are investigating moving from
+the Hibernate to JPA based DAO implementation for ODE, to help resolve some of these
issues
+(RIFTSAW-115). At present we would recommend using "hsql" as an in-memory db
option,
+and mysql as a persistent db.
+
+Known problems include RIFTSAW-73, exception when undeploying BPEL processes using
+HSQL, and RIFTSAW-41 where a deadlock can occur when using Derby.
+
+
+-----------------------------------------------------------------------------------------------
+
RiftSaw 2.0-M1
==============
-
+
This is the first milestone release of RiftSaw 2.0 - the JBoss BPEL server.
-
-
+
+
Modified: trunk/distribution/src/main/release/install/build.xml
===================================================================
--- trunk/distribution/src/main/release/install/build.xml 2009-11-20 11:41:33 UTC (rev
289)
+++ trunk/distribution/src/main/release/install/build.xml 2009-11-20 14:33:44 UTC (rev
290)
@@ -127,6 +127,7 @@
<target name="undeploy-esb-examples"
depends="check.deploy.props" description="Undeploys BPEL example from
JBossESB">
<echo message="Undeploy BPEL example" />
<delete dir="${esb.examples.dir}/bpel_helloworld" />
+ <delete dir="${esb.examples.dir}/bpel_loan_fault" />
<delete dir="${esb.examples.dir}/webservice_esb_bpel" />
</target>
Modified: trunk/distribution/src/main/release/version.properties
===================================================================
--- trunk/distribution/src/main/release/version.properties 2009-11-20 11:41:33 UTC (rev
289)
+++ trunk/distribution/src/main/release/version.properties 2009-11-20 14:33:44 UTC (rev
290)
@@ -1 +1 @@
-bpel.version=2.0-SNAPSHOT
+bpel.version=2.0-M2
Modified: trunk/docs/docbook/gettingstartedguide/src/main/module/examples.xml
===================================================================
--- trunk/docs/docbook/gettingstartedguide/src/main/module/examples.xml 2009-11-20
11:41:33 UTC (rev 289)
+++ trunk/docs/docbook/gettingstartedguide/src/main/module/examples.xml 2009-11-20
14:33:44 UTC (rev 290)
@@ -151,7 +151,7 @@
</para>
<code>
- ant sendesb
+ ant runtest
</code>
<para>
@@ -167,6 +167,7 @@
</section>
+<!--
<section>
<title>ESB Examples - Order Management</title>
@@ -263,7 +264,7 @@
</imageobject>
</section>
-
+-->
<section>
<title>Importing Examples into Eclipse</title>
Modified: trunk/samples/esb/bpel_helloworld/build.xml
===================================================================
--- trunk/samples/esb/bpel_helloworld/build.xml 2009-11-20 11:41:33 UTC (rev 289)
+++ trunk/samples/esb/bpel_helloworld/build.xml 2009-11-20 14:33:44 UTC (rev 290)
@@ -8,7 +8,7 @@
<!-- Import the base Ant build script... -->
<import file="../conf/base-build.xml"/>
- <target name="sendesb" depends="compile"
+ <target name="runtest" depends="compile"
description="Will send an esb Message">
<echo>Runs Test ESB Message Sender</echo>
<java fork="yes"
classname="org.jboss.soa.esb.samples.quickstart.helloworld.test.SendEsbMessage"
failonerror="true">
Modified: trunk/samples/esb/bpel_helloworld/readme.txt
===================================================================
--- trunk/samples/esb/bpel_helloworld/readme.txt 2009-11-20 11:41:33 UTC (rev 289)
+++ trunk/samples/esb/bpel_helloworld/readme.txt 2009-11-20 14:33:44 UTC (rev 290)
@@ -16,6 +16,6 @@
1. In a command terminal window in this folder ("Window1"), type 'ant
deploy'.
2. Open another command terminal window in this folder ("Window2"), type
- 'ant sendesb'.
+ 'ant runtest'.
3. Switch back to Application Server console to see the output from the ESB
4. In this folder ("Window1"), type 'ant undeploy'.
Modified: trunk/samples/esb/bpel_loan_fault/build.xml
===================================================================
--- trunk/samples/esb/bpel_loan_fault/build.xml 2009-11-20 11:41:33 UTC (rev 289)
+++ trunk/samples/esb/bpel_loan_fault/build.xml 2009-11-20 14:33:44 UTC (rev 290)
@@ -8,7 +8,7 @@
<!-- Import the base Ant build script... -->
<import file="../conf/base-build.xml"/>
- <target name="sendesb" depends="compile"
+ <target name="runtest" depends="compile"
description="Will send an esb Message">
<echo>Runs Test ESB Message Sender</echo>
<java fork="yes"
classname="org.jboss.soa.esb.samples.quickstart.loanfault.test.SendEsbMessage"
failonerror="true">
Modified: trunk/samples/esb/bpel_loan_fault/readme.txt
===================================================================
--- trunk/samples/esb/bpel_loan_fault/readme.txt 2009-11-20 11:41:33 UTC (rev 289)
+++ trunk/samples/esb/bpel_loan_fault/readme.txt 2009-11-20 14:33:44 UTC (rev 290)
@@ -16,6 +16,6 @@
1. In a command terminal window in this folder ("Window1"), type 'ant
deploy'.
2. Open another command terminal window in this folder ("Window2"), type
- 'ant sendesb'.
+ 'ant runtest'.
3. Switch back to Application Server console to see the output from the ESB
4. In this folder ("Window1"), type 'ant undeploy'.