Author: objectiser
Date: 2010-06-25 04:41:20 -0400 (Fri, 25 Jun 2010)
New Revision: 798
Modified:
trunk/distribution/src/main/release/ReleaseNotes.txt
trunk/integration-tests/src/test/java/org/jboss/soa/bpel/tests/samples/QuickstartBPELInvokeESBEBWSTestCase.java
trunk/integration-tests/src/test/java/org/jboss/soa/bpel/tests/samples/QuickstartSimpleESBProxyInvokeTestCase.java
Log:
Update release note, and make sure the ESB tests only run with using the native stack.
Modified: trunk/distribution/src/main/release/ReleaseNotes.txt
===================================================================
--- trunk/distribution/src/main/release/ReleaseNotes.txt 2010-06-25 07:16:44 UTC (rev
797)
+++ trunk/distribution/src/main/release/ReleaseNotes.txt 2010-06-25 08:41:20 UTC (rev
798)
@@ -1,3 +1,28 @@
+RiftSaw 2.1.0.CR2
+=================
+
+This is a bug fix release.
+
+The main change with this release is the migration to the pure JPA persistence layer
+from the native Hibernate layer. Moving to the JPA persistence layer has resolved a
+number of long standing bugs.
+
+Hibernate is still used as the JPA provider. However to align the database schema with
+the ODE community project, it has been necessary to make some schema changes.
+Therefore it will be necessary to drop the current database (or simply
+remove the $AS/server/default/data folder). This JPA work is being contributed back
+to the ODE project, and should be available in ODE 1.4.
+
+The other main change is the simplification of the ESB examples, both in terms of how
+they are run, and also in terms of their complexity. Previously the primary ESB/Riftsaw
+example was too complex, making it difficult to use and follow. Instead this has been
+replaced by a couple of new simpler examples that demonstrate the specific integration
+points between JBossESB and RiftSaw.
+
+The detailed report for this release can be found at:
+https://jira.jboss.org/secure/ReleaseNote.jspa?projectId=12310843&version=12314933
+
+
RiftSaw 2.1.0.CR1
=================
Modified:
trunk/integration-tests/src/test/java/org/jboss/soa/bpel/tests/samples/QuickstartBPELInvokeESBEBWSTestCase.java
===================================================================
---
trunk/integration-tests/src/test/java/org/jboss/soa/bpel/tests/samples/QuickstartBPELInvokeESBEBWSTestCase.java 2010-06-25
07:16:44 UTC (rev 797)
+++
trunk/integration-tests/src/test/java/org/jboss/soa/bpel/tests/samples/QuickstartBPELInvokeESBEBWSTestCase.java 2010-06-25
08:41:20 UTC (rev 798)
@@ -38,11 +38,19 @@
}
public static Test suite() {
- return(new RiftSawTestSetup(QuickstartBPELInvokeESBEBWSTestCase.class,
+ if
(System.getProperty("ws.stack","native").equals("cxf")) {
+ return(new RiftSawTestSetup(QuickstartBPELInvokeESBEBWSTestCase.class,
TEST_NAME, "CreditAgency.esb,Quickstart_bpel_approval_service-1.jar"));
+ } else {
+ return(null);
+ }
}
public void testSendHello() throws Exception {
+ if (System.getProperty("ws.stack","native").equals("cxf")
== false) {
+ return;
+ }
+
String result=sendSOAPMessage("approve_request1.xml",
"http://localhost:8080/Quickstart_bpel_approval_serviceWS");
Modified:
trunk/integration-tests/src/test/java/org/jboss/soa/bpel/tests/samples/QuickstartSimpleESBProxyInvokeTestCase.java
===================================================================
---
trunk/integration-tests/src/test/java/org/jboss/soa/bpel/tests/samples/QuickstartSimpleESBProxyInvokeTestCase.java 2010-06-25
07:16:44 UTC (rev 797)
+++
trunk/integration-tests/src/test/java/org/jboss/soa/bpel/tests/samples/QuickstartSimpleESBProxyInvokeTestCase.java 2010-06-25
08:41:20 UTC (rev 798)
@@ -38,11 +38,19 @@
}
public static Test suite() {
- return(new RiftSawTestSetup(QuickstartSimpleESBProxyInvokeTestCase.class,
+ if
(System.getProperty("ws.stack","native").equals("cxf")) {
+ return(new RiftSawTestSetup(QuickstartSimpleESBProxyInvokeTestCase.class,
TEST_NAME,
"Quickstart_simple_esb_proxy_invoke-1.jar,Quickstart_simple_esb_proxy_invoke.war,Quickstart_simple_esb_proxy_invoke.esb"));
+ } else {
+ return(null);
+ }
}
public void testSendHello() throws Exception {
+ if (System.getProperty("ws.stack","native").equals("cxf")
== false) {
+ return;
+ }
+
String result=sendSOAPMessage("hello_request1.xml",
"http://localhost:8080/Quickstart_bpel_simple_invokeWS");
Show replies by date