Author: objectiser
Date: 2011-03-28 07:02:03 -0400 (Mon, 28 Mar 2011)
New Revision: 1331
Modified:
trunk/distribution/src/main/release/ReleaseNotes.txt
trunk/distribution/src/main/release/bin/bpelc
trunk/distribution/src/main/release/bin/sendsoap
Log:
Further info in the release note, and updates to fix the unix scripts.
Modified: trunk/distribution/src/main/release/ReleaseNotes.txt
===================================================================
--- trunk/distribution/src/main/release/ReleaseNotes.txt 2011-03-28 09:59:34 UTC (rev
1330)
+++ trunk/distribution/src/main/release/ReleaseNotes.txt 2011-03-28 11:02:03 UTC (rev
1331)
@@ -3,13 +3,17 @@
This is the first release candidate for the 2.3.0 release series.
-In this release, we've created a sub project for dynamic web service provider
capability. (to be further explained???)
+In this release, we've created a sub project for the dynamic web service provider
capability. This
+mechanism dynamically creates a JAX-WS web service provider to implement a particular
WSDL definition,
+and invoke a configured engine to handle the request. In our case this is RiftSaw, but
the mechanism
+can also be used to route requests to other process engines. Deployment to JBossAS and
Tomcat are
+supported.
Secondly, we've added the History Instance Query functionality in the bpel console,
users can find history instances via process definition, status, correlation value, start
time and end time criteria.
-Also, users now can see all of activity events for both active instances and history
instance in the bpel console.
+Also, users now can see all of activity events for both active and historic instances in
the bpel console.
-Thirdly, we've now supported deploying RiftSaw into JBoss AS 6.
+Thirdly, we now support deploying RiftSaw into JBoss AS 6.
Other changes included:
@@ -24,7 +28,9 @@
Known issues:
+RIFTSAW-361 - Exception when requesting execution history
+
RiftSaw 2.2.0.Final
===================
Modified: trunk/distribution/src/main/release/bin/bpelc
===================================================================
--- trunk/distribution/src/main/release/bin/bpelc 2011-03-28 09:59:34 UTC (rev 1330)
+++ trunk/distribution/src/main/release/bin/bpelc 2011-03-28 11:02:03 UTC (rev 1331)
@@ -59,6 +59,8 @@
LIB1="$ODE_HOME/modules/riftsaw.sar/lib"
LIB2="$ODE_HOME/lib"
LIB3="$org_jboss_as_home/client"
+LIB4="$org_jboss_as_home/lib/endorsed"
+LIB5="$org_jboss_as_home/common/lib"
ETC="$ODE_HOME/etc"
@@ -109,6 +111,16 @@
LOCALCLASSPATH=$LOCALCLASSPATH:$f
done
+for f in $LIB4/*.jar
+do
+ LOCALCLASSPATH=$LOCALCLASSPATH:$f
+done
+
+for f in $LIB5/*.jar
+do
+ LOCALCLASSPATH=$LOCALCLASSPATH:$f
+done
+
# For Cygwin, switch paths to Windows format before running java
if $cygwin; then
ODE_HOME=`cygpath --windows "$ODE_HOME"`
Modified: trunk/distribution/src/main/release/bin/sendsoap
===================================================================
--- trunk/distribution/src/main/release/bin/sendsoap 2011-03-28 09:59:34 UTC (rev 1330)
+++ trunk/distribution/src/main/release/bin/sendsoap 2011-03-28 11:02:03 UTC (rev 1331)
@@ -60,6 +60,7 @@
LIB2="$ODE_HOME/lib"
LIB3="$org_jboss_as_home/lib"
LIB4="$org_jboss_as_home/server/$org_jboss_as_config/lib"
+LIB5="$org_jboss_as_home/common/lib"
ETC="$ODE_HOME/etc"
@@ -115,6 +116,11 @@
LOCALCLASSPATH=$LOCALCLASSPATH:$f
done
+for f in $LIB5/*.jar
+do
+ LOCALCLASSPATH=$LOCALCLASSPATH:$f
+done
+
# For Cygwin, switch paths to Windows format before running java
if $cygwin; then
ODE_HOME=`cygpath --windows "$ODE_HOME"`
Show replies by date