summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-10-04 13:39:45 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-10-04 13:39:45 +0000
commit20a10dd28b9218050fae162bf3c1b1b2f124a8a2 (patch)
tree24b7b9d212a1217e61028d5a17cf43cdb03d02a1
parented9073ec961d940048d0636e666aafd73dd2ef2c (diff)
downloadATCD-20a10dd28b9218050fae162bf3c1b1b2f124a8a2.tar.gz
use IIOP instead of URL style obj refs, for maximum performance
-rw-r--r--TAO/performance-tests/Cubit/TAO/MT_Cubit/Task_Client.cpp3
-rw-r--r--TAO/performance-tests/Cubit/TAO/MT_Cubit/client.cpp1
-rwxr-xr-xTAO/performance-tests/Cubit/TAO/MT_Cubit/run_test.pl3
-rw-r--r--TAO/performance-tests/Cubit/TAO/MT_Cubit/server.cpp2
4 files changed, 1 insertions, 8 deletions
diff --git a/TAO/performance-tests/Cubit/TAO/MT_Cubit/Task_Client.cpp b/TAO/performance-tests/Cubit/TAO/MT_Cubit/Task_Client.cpp
index 0126586b87c..12428cd6855 100644
--- a/TAO/performance-tests/Cubit/TAO/MT_Cubit/Task_Client.cpp
+++ b/TAO/performance-tests/Cubit/TAO/MT_Cubit/Task_Client.cpp
@@ -568,10 +568,7 @@ Client::init_orb (void)
ACE_OS::strcpy (tmp_buf,
tmp_args.buf ());
// Add the argument.
- // Add "-ORBobjrefstyle url" argument to the argv vector for the orb
- // to / use a URL style to represent the ior.
ACE_OS::strcat (tmp_buf,
- " -ORBobjrefstyle url "
" -ORBrcvsock 32768 "
" -ORBsndsock 32768 ");
diff --git a/TAO/performance-tests/Cubit/TAO/MT_Cubit/client.cpp b/TAO/performance-tests/Cubit/TAO/MT_Cubit/client.cpp
index 2bc5f1cf453..7b2972d5922 100644
--- a/TAO/performance-tests/Cubit/TAO/MT_Cubit/client.cpp
+++ b/TAO/performance-tests/Cubit/TAO/MT_Cubit/client.cpp
@@ -596,7 +596,6 @@ Client_i::start_servant (void)
ACE_OS::sprintf (high_thread_args,
"-ORBport %u "
"-ORBhost %s "
- "-ORBobjrefstyle URL "
"-ORBsndsock 32768 "
"-ORBrcvsock 32768 ",
ACE_DEFAULT_SERVER_PORT,
diff --git a/TAO/performance-tests/Cubit/TAO/MT_Cubit/run_test.pl b/TAO/performance-tests/Cubit/TAO/MT_Cubit/run_test.pl
index 4f76b0bec08..6e91c1a97e4 100755
--- a/TAO/performance-tests/Cubit/TAO/MT_Cubit/run_test.pl
+++ b/TAO/performance-tests/Cubit/TAO/MT_Cubit/run_test.pl
@@ -11,9 +11,8 @@ $server_port = 0;
$iorfile = "theior";
$sleeptime = 3;
-$SV = Process::Create ("server".$Process::EXE_EXT,
+$SV = Process::Create ("server".$Process::EXE_EXT,
" -ORBport ".$server_port.
- " -ORBobjrefstyle url".
" -s -f $iorfile");
sleep $sleeptime;
diff --git a/TAO/performance-tests/Cubit/TAO/MT_Cubit/server.cpp b/TAO/performance-tests/Cubit/TAO/MT_Cubit/server.cpp
index 7c33766bf4f..48d5f14431f 100644
--- a/TAO/performance-tests/Cubit/TAO/MT_Cubit/server.cpp
+++ b/TAO/performance-tests/Cubit/TAO/MT_Cubit/server.cpp
@@ -183,7 +183,6 @@ Server::activate_high_servant (void)
GLOBALS::instance ()->hostname);
char *high_second_argv[] = {orbport,
orbhost,
- "-ORBobjrefstyle URL ",
"-ORBsndsock 32768 ",
"-ORBrcvsock 32768 ",
0};
@@ -253,7 +252,6 @@ Server::activate_low_servants (void)
char *low_second_argv[] = {orbport,
orbhost,
- "-ORBobjrefstyle URL ",
"-ORBsndsock 32768 ",
"-ORBrcvsock 32768 ",
0};