summaryrefslogtreecommitdiffstats
path: root/sandbox/travelsample/launchers
diff options
context:
space:
mode:
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>