summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_3547_Regression/Stock_Quoter_Client.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Bug_3547_Regression/Stock_Quoter_Client.cpp')
-rw-r--r--TAO/tests/Bug_3547_Regression/Stock_Quoter_Client.cpp10
1 files changed, 4 insertions, 6 deletions
diff --git a/TAO/tests/Bug_3547_Regression/Stock_Quoter_Client.cpp b/TAO/tests/Bug_3547_Regression/Stock_Quoter_Client.cpp
index 905ef9a78c6..5ea95176562 100644
--- a/TAO/tests/Bug_3547_Regression/Stock_Quoter_Client.cpp
+++ b/TAO/tests/Bug_3547_Regression/Stock_Quoter_Client.cpp
@@ -9,8 +9,6 @@
unsigned char Msg[1000] = { 0 } ;
-const ACE_TCHAR *iorFile = ACE_TEXT("file://gazza.ior");
-
int ACE_TMAIN (int argc, ACE_TCHAR *argv[])
{
try
@@ -21,14 +19,14 @@ int ACE_TMAIN (int argc, ACE_TCHAR *argv[])
// Use a simple ObjectKey to access the Stock Quoter.
// (Client ORB must be initialized with
// -ORBInitRef MyStockQuoter=corbaloc:...)
+ CORBA::Object_var udp_obj =
+ orb->resolve_initial_references ("UDPTest");
+
CORBA::Object_var stock_quoter_obj =
orb->resolve_initial_references ("MyStockQuoter");
- CORBA::Object_var object = orb->string_to_object (iorFile);
- UDPTestI_var server = UDPTestI::_narrow (object.in ());
+ UDPTestI_var server = UDPTestI::_narrow (udp_obj.in ());
- // Narrow the reference to the Stock_Quoter interface
- //UDPTestI_var UDP = UDPTestI::_narrow (UDP_obj.in());
Stock_Quoter_var quoter = Stock_Quoter::_narrow (stock_quoter_obj.in());
memset( Msg, 1, 1000 ) ;