summaryrefslogtreecommitdiff
path: root/ACE/TAO/examples/ior_corbaloc/server.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/examples/ior_corbaloc/server.cpp')
-rw-r--r--ACE/TAO/examples/ior_corbaloc/server.cpp78
1 files changed, 78 insertions, 0 deletions
diff --git a/ACE/TAO/examples/ior_corbaloc/server.cpp b/ACE/TAO/examples/ior_corbaloc/server.cpp
new file mode 100644
index 00000000000..b6c2cefea6d
--- /dev/null
+++ b/ACE/TAO/examples/ior_corbaloc/server.cpp
@@ -0,0 +1,78 @@
+// $Id$
+// server.cpp
+
+#include "status_i.h"
+#include "tao/PortableServer/PortableServer.h"
+#include "orbsvcs/CosNamingC.h"
+
+int ACE_TMAIN (int argc, ACE_TCHAR* argv[])
+{
+ try
+ {
+ // First initialize the ORB, that will remove some arguments...
+ CORBA::ORB_var orb =
+ CORBA::ORB_init (argc, argv);
+
+ if (argc < 2)
+ {
+ ACE_DEBUG ((LM_DEBUG, "\nUsage:\n %s [NAME to insert in Naming Service]\n", argv[0]));
+ return -1;
+ }
+ // Get a reference to the RootPOA
+ CORBA::Object_var poa_object =
+ orb->resolve_initial_references ("RootPOA");
+
+ // narrow down to the correct reference
+ PortableServer::POA_var poa =
+ PortableServer::POA::_narrow (poa_object.in ());
+
+ // Set a POA Manager
+ PortableServer::POAManager_var poa_manager =
+ poa->the_POAManager ();
+
+ // Activate the POA Manager
+ poa_manager->activate ();
+
+ // Create the servant
+ corbaloc_Status_i status_i;
+ status_i.set_name (ACE_TEXT_ALWAYS_CHAR (argv[1]));
+ // Activate it to obtain the reference
+ PortableServer::ObjectId_var id =
+ poa->activate_object (&status_i);
+
+ CORBA::Object_var object = poa->id_to_reference (id.in ());
+
+ corbaloc::Status_var status =
+ corbaloc::Status::_narrow (object.in ());
+
+ // Get a reference to Naming Context
+ CORBA::Object_var naming_context_object =
+ orb->resolve_initial_references ("NameService");
+
+ // Narrow down the reference
+ CosNaming::NamingContext_var naming_context =
+ CosNaming::NamingContext::_narrow (naming_context_object.in ());
+
+ // Bind Iterator_Factory to the Naming Context
+ CosNaming::Name name (1);
+ name.length (1);
+ name[0].id = CORBA::string_dup (ACE_TEXT_ALWAYS_CHAR (argv[1]));
+
+ naming_context->rebind (name, status.in ());
+
+ // Run the orb
+ orb->run ();
+
+ // Destroy the POA, waiting until the destruction terminates
+ poa->destroy (1, 1);
+ orb->destroy ();
+ }
+ catch (const CORBA::SystemException& ex){
+ ex._tao_print_exception ("CORBA exception raised! ");
+ }
+ catch (const CORBA::Exception& ex){
+ ex._tao_print_exception ("Exception caught in server");
+ }
+
+ return 0;
+}