summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam R. Otte <wotte@dre.vanderbilt.edu>2006-01-31 21:33:24 +0000
committerWilliam R. Otte <wotte@dre.vanderbilt.edu>2006-01-31 21:33:24 +0000
commitcfc3fb451d9d7c06b24bc9e51cdca22c0a1f44c8 (patch)
tree4cb8aad09b2f451277fd1e9523d98e1d8866ea1a
parentcffbd6ddb8db098c6c54c41b2e14f990f2c00060 (diff)
downloadATCD-cfc3fb451d9d7c06b24bc9e51cdca22c0a1f44c8.tar.gz
Tue Jan 31 21:29:06 UTC 2006 William Otte <wotte@dre.vanderbilt.edu>
-rw-r--r--TAO/CIAO/ChangeLog7
-rwxr-xr-xTAO/CIAO/examples/Hello/descriptors/run_test.pl5
-rwxr-xr-xTAO/CIAO/examples/Hello/descriptors/run_test_without_ns.pl2
3 files changed, 12 insertions, 2 deletions
diff --git a/TAO/CIAO/ChangeLog b/TAO/CIAO/ChangeLog
index cbbbae9972f..1236af2ed2d 100644
--- a/TAO/CIAO/ChangeLog
+++ b/TAO/CIAO/ChangeLog
@@ -1,3 +1,10 @@
+Tue Jan 31 21:29:06 UTC 2006 William Otte <wotte@dre.vanderbilt.edu>
+
+ * examples/Hello/descriptors/run_test.pl
+
+ Updated to force naming service to not use multicast, instead
+ using NameServiceIOR environment variable.
+
Tue Jan 31 15:11:29 UTC 2006 William Otte <wotte@dre.vanderbilt.edu>
* RACE/Controller/Component/Controller.mpc
diff --git a/TAO/CIAO/examples/Hello/descriptors/run_test.pl b/TAO/CIAO/examples/Hello/descriptors/run_test.pl
index 6336f70e5d5..29de67e58b8 100755
--- a/TAO/CIAO/examples/Hello/descriptors/run_test.pl
+++ b/TAO/CIAO/examples/Hello/descriptors/run_test.pl
@@ -98,7 +98,7 @@ delete_ior_files ();
# Invoke naming service
-$NS = new PerlACE::Process ("$TAO_ROOT/orbsvcs/Naming_Service/Naming_Service", "-m 1 -o $nsior");
+$NS = new PerlACE::Process ("$TAO_ROOT/orbsvcs/Naming_Service/Naming_Service", "-m 0 -ORBEndpoint iiop://localhost:60003 -o ns.ior");
$NS->Spawn ();
@@ -111,6 +111,9 @@ if (PerlACE::waitforfile_timed ($nsior, 10) == -1)
exit 1;
}
+# Set up NamingService environment
+$ENV{"NameServiceIOR"} = "corbaloc:iiop:localhost:60003/NameService";
+
# Invoke node daemons.
print "Invoking node daemons\n";
$status = run_node_daemons ();
diff --git a/TAO/CIAO/examples/Hello/descriptors/run_test_without_ns.pl b/TAO/CIAO/examples/Hello/descriptors/run_test_without_ns.pl
index 52752b21eba..59956eb7815 100755
--- a/TAO/CIAO/examples/Hello/descriptors/run_test_without_ns.pl
+++ b/TAO/CIAO/examples/Hello/descriptors/run_test_without_ns.pl
@@ -13,7 +13,7 @@ $DAnCE = "$ENV{'ACE_ROOT'}/TAO/CIAO/DAnCE";
$daemons_running = 0;
$em_running = 0;
$daemons = 2;
-@ports = ( 30000, 40000 );
+@ports = ( 60001, 60002 );
@iorfiles = ( "NodeApp1.ior", "NodeApp2.ior" );
$status = 0;
$dat_file = "NodeManagerMap.dat";