summaryrefslogtreecommitdiff
path: root/TAO/examples/Simple/Simple_util.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/Simple/Simple_util.cpp')
-rw-r--r--TAO/examples/Simple/Simple_util.cpp43
1 files changed, 17 insertions, 26 deletions
diff --git a/TAO/examples/Simple/Simple_util.cpp b/TAO/examples/Simple/Simple_util.cpp
index ef3f2fdab7e..92fb6658ca1 100644
--- a/TAO/examples/Simple/Simple_util.cpp
+++ b/TAO/examples/Simple/Simple_util.cpp
@@ -2,9 +2,7 @@
#ifndef SIMPLE_UTIL_C
#define SIMPLE_UTIL_C
-
-#include "Simple_util.h"
-#include "tao/IORTable/IORTable.h"
+# include "Simple_util.h"
// Constructor.
@@ -79,26 +77,23 @@ Server<Servant>::test_for_ins (CORBA::String_var ior)
{
CORBA::ORB_var orb = this->orb_manager_.orb ();
+ CORBA::Object_ptr object =
+ orb->string_to_object (ior.in ());
+
+ // Add a KEY:IOR mapping to the ORB table.
+ ACE_CString ins (this->ins_);
+
if (TAO_debug_level > 0)
ACE_DEBUG ((LM_DEBUG,
"Adding (KEY:IOR) %s:%s\n",
- this->ins_,
+ ins.c_str (),
ior.in ()));
-
- CORBA::Object_var table_object =
- orb->resolve_initial_references ("IORTable");
-
- IORTable::Table_var adapter =
- IORTable::Table::_narrow (table_object.in ());
- if (CORBA::is_nil (adapter.in ()))
- {
- ACE_ERROR ((LM_ERROR, "Nil IORTable\n"));
- }
- else
- {
- adapter->bind (this->ins_, ior.in ());
- }
+ if (orb->_tao_add_to_IOR_table (ins,
+ object) != 0)
+ ACE_ERROR_RETURN ((LM_ERROR,
+ "Simple_Util : Unable to add IOR to table\n"),
+ -1);
return 0;
}
@@ -235,14 +230,10 @@ Server<Servant>::register_name (void)
// Test for INS.
if (this->ins_)
- {
- CORBA::String_var ior =
- orb->object_to_string (object.in ());
- if (this->test_for_ins (ior.in ()) != 0)
- ACE_ERROR_RETURN ((LM_ERROR,
- "test_for_ins (): failed\n"),
- -1);
- }
+ if (this->test_for_ins (orb->object_to_string (object.in ())) != 0)
+ ACE_ERROR_RETURN ((LM_ERROR,
+ "test_for_ins (): failed\n"),
+ -1);
}
ACE_CATCH (CosNaming::NamingContext::AlreadyBound, ex)
{