summaryrefslogtreecommitdiffstats
path: root/sandbox/travelsample/launchers
diff options
context:
space:
mode:
authornash <nash@13f79535-47bb-0310-9956-ffa450edef68>2010-01-04 11:19:03 +0000
committernash <nash@13f79535-47bb-0310-9956-ffa450edef68>2010-01-04 11:19:03 +0000
commit0f35c9aefbfd12cdc8cd61e52aeddca9532564d9 (patch)
tree3fd054c18ff03250d8e1cfcf59541b73df54886e /sandbox/travelsample/launchers
parentc4ccb1597654672939b367689a3594305191e496 (diff)
Add/fix ant scripts for non-SCA clients and add additional targets described in the README scenarios
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@895599 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sandbox/travelsample/launchers')
-rw-r--r--sandbox/travelsample/launchers/fullapp-nodes/build.xml6
-rw-r--r--sandbox/travelsample/launchers/introducing-client/build.xml13
-rw-r--r--sandbox/travelsample/launchers/notification-ws/build.xml6
3 files changed, 25 insertions, 0 deletions
diff --git a/sandbox/travelsample/launchers/fullapp-nodes/build.xml b/sandbox/travelsample/launchers/fullapp-nodes/build.xml
index 14a483b564..00fef1d701 100644
--- a/sandbox/travelsample/launchers/fullapp-nodes/build.xml
+++ b/sandbox/travelsample/launchers/fullapp-nodes/build.xml
@@ -20,6 +20,12 @@
<project name="scatours-launcher-fullapp-nodes" default="compile">
<import file="../../antdefs.xml"/>
+ <!-- Before invoking the "run" target, the domain manager needs
+ to be started and running in a different process. -->
+ <target name="run-domain">
+ <ant dir="../fullapp-domain" target="run"/>
+ </target>
+
<target name="run">
<java classname="scatours.FullAppNodesLauncher" fork="true">
<classpath>
diff --git a/sandbox/travelsample/launchers/introducing-client/build.xml b/sandbox/travelsample/launchers/introducing-client/build.xml
index 4cd4a902f8..cfe3a6fd76 100644
--- a/sandbox/travelsample/launchers/introducing-client/build.xml
+++ b/sandbox/travelsample/launchers/introducing-client/build.xml
@@ -20,6 +20,19 @@
<project name="scatours-launcher-introducing-client" default="compile">
<import file="../../antdefs.xml"/>
+ <!-- Before invoking the "run" target, the domain manager and the
+ introducing-trips and introducing-tours nodes need to be started
+ and running in different processes. -->
+ <target name="run-domain">
+ <ant dir="../introducing-domain" target="run"/>
+ </target>
+ <target name="run-trips">
+ <ant dir="../introducing-trips" target="run"/>
+ </target>
+ <target name="run-tours">
+ <ant dir="../introducing-tours" target="run"/>
+ </target>
+
<target name="run">
<java classname="scatours.IntroducingClientLauncher" fork="true">
<classpath>
diff --git a/sandbox/travelsample/launchers/notification-ws/build.xml b/sandbox/travelsample/launchers/notification-ws/build.xml
index dff087b710..2d9660caeb 100644
--- a/sandbox/travelsample/launchers/notification-ws/build.xml
+++ b/sandbox/travelsample/launchers/notification-ws/build.xml
@@ -24,6 +24,12 @@
</path>
<path id="package-path" refid="compile-path"/>
+ <!-- Before invoking the "run" target, the JAX-WS server for the SMS Gateway
+ remote object needs to be started and running in a different process. -->
+ <target name="run-smsgateway">
+ <ant dir="../../services/smsgateway-jaxws" target="run"/>
+ </target>
+
<target name="run">
<java classname="scatours.NotificationWSLauncher" fork="true">
<classpath>