From 6ecc521d85871c1bc0d37927717434edcaccf234 Mon Sep 17 00:00:00 2001 From: slaws Date: Mon, 5 Jan 2009 11:49:06 +0000 Subject: Add in shopping cart and extend scenario to talk to payment process. Now needs a revamp to simplify and to allow preconfigured trips to be added to the cart. git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@731534 13f79535-47bb-0310-9956-ffa450edef68 --- sandbox/travelsample/node/build.xml | 66 +++++++++++++++++++++- sandbox/travelsample/node/pom.xml | 7 +++ .../travelsample/node/src/scatours/LaunchNode.java | 4 ++ 3 files changed, 76 insertions(+), 1 deletion(-) (limited to 'sandbox/travelsample/node') diff --git a/sandbox/travelsample/node/build.xml b/sandbox/travelsample/node/build.xml index e515111e39..0f0faf956c 100644 --- a/sandbox/travelsample/node/build.xml +++ b/sandbox/travelsample/node/build.xml @@ -91,6 +91,7 @@ + @@ -99,6 +100,8 @@ + + @@ -143,11 +146,13 @@ + + @@ -157,27 +162,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -185,26 +221,54 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sandbox/travelsample/node/pom.xml b/sandbox/travelsample/node/pom.xml index 43436113c6..77f8073b0b 100644 --- a/sandbox/travelsample/node/pom.xml +++ b/sandbox/travelsample/node/pom.xml @@ -124,6 +124,13 @@ 1.5-SNAPSHOT runtime + + + org.apache.tuscany.sca + tuscany-implementation-bpel-ode + 1.5-SNAPSHOT + runtime + org.apache.derby diff --git a/sandbox/travelsample/node/src/scatours/LaunchNode.java b/sandbox/travelsample/node/src/scatours/LaunchNode.java index aca8d7e026..892f2b8dfd 100644 --- a/sandbox/travelsample/node/src/scatours/LaunchNode.java +++ b/sandbox/travelsample/node/src/scatours/LaunchNode.java @@ -74,6 +74,10 @@ public class LaunchNode { new SCAContribution("car", "../car-contribution/target/classes"), new SCAContribution("tripbooking", "../tripbooking-contribution/target/classes"), new SCAContribution("travelcatalog", "../travelcatalog-contribution/target/classes"), + new SCAContribution("payment", "../payment-contribution/target/classes"), + new SCAContribution("emailgateway", "../emailgateway-contribution/target/classes"), + new SCAContribution("paymentprocess", "../paymentprocess-contribution/target/classes"), + new SCAContribution("shoppingcart", "../shoppingcart-contribution/target/classes"), new SCAContribution("scatours", "../scatours-contribution/target/classes"), new SCAContribution("ui", "../ui-contribution/target/classes")); node.start(); -- cgit v1.2.3