blob: be973d012adb985f706f56d1ef0d3cf5ad73ab3f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
//=============================================================================
/**
* @file RootPOA.cpp
*
* $Id$
*
* This program gets the name of the Root POA and prints it out on
* the standard output.
*
*
* @author Irfan Pyarali
*/
//=============================================================================
#include "tao/PortableServer/PortableServer.h"
#include "tao/ORB.h"
#include "ace/Log_Msg.h"
int
ACE_TMAIN(int argc, ACE_TCHAR *argv[])
{
try
{
// Initilize the ORB
CORBA::ORB_var orb = CORBA::ORB_init (argc, argv);
// Resolve the initial references for the name RootPOA thus getting
// an object of type CORBA::Object.
CORBA::Object_var obj =
orb->resolve_initial_references ("RootPOA");
// apply _narrow on the object of type CORBA::Object, to make it
// a POA class Object.
PortableServer::POA_var root_poa =
PortableServer::POA::_narrow (obj.in ());
// Get the name of the root POA.
CORBA::String_var poa_name =
root_poa->the_name ();
ACE_DEBUG ((LM_DEBUG,
"The RootPOA is : %C\n",
poa_name.in ()));
orb->destroy ();
}
catch (const CORBA::Exception& ex)
{
ex._tao_print_exception ("Exception raised");
}
return 0;
}
|