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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
// $Id$
// ============================================================================
//
// = LIBRARY
// TAO/orbsvcs/tests/CosPropertyService
//
// = FILENAME
// server.cpp
//
// = DESCRIPTION
// Test server for the CosPropertyService
//
// = AUTHORS
// Alexander Babu Arulanthu <alex@cs.wustl.edu>
//
// ============================================================================
#include "server.h"
ACE_RCSID(CosPropertyService, server, "$Id$")
// Main program
int
main (int argc, char ** argv)
{
try
{
TAO_ORB_Manager m;
// Initialize the ORB.
m.init_child_poa (argc,
argv,
"child_poa");
// Using naming server.
TAO_Naming_Client my_name_client;
if (my_name_client.init (m.orb ()) < 0)
return 1;
// Create PropertySetDef object and register.
TAO_PropertySetDef *propsetdef_impl;
ACE_NEW_RETURN (propsetdef_impl,
TAO_PropertySetDef,
-1);
CosPropertyService::PropertySetDef_var propsetdef =
propsetdef_impl->_this ();
CosNaming::Name propsetdef_name (1);
propsetdef_name.length (1);
propsetdef_name[0].id = CORBA::string_dup ("PropertySetDef");
my_name_client->bind (propsetdef_name,
propsetdef.in ());
CORBA::Any any_val;
// Make this IOR as one of the properties in there.
any_val <<= propsetdef_impl->_this ();
CORBA::Object_var ior = propsetdef_impl->_this ();
CORBA::Object_ptr ior_ptr = ior.in ();
any_val <<= ior_ptr;
// any_val.replace (CORBA::_tc_Object,
// &ior_ptr,
// 1
//);
propsetdef_impl->define_property_with_mode ("PropertySetDef_IOR",
any_val,
CosPropertyService::fixed_readonly);
// Create PropertySet factory and then register.
TAO_PropertySetFactory *propset_factory_impl;
ACE_NEW_RETURN (propset_factory_impl,
TAO_PropertySetFactory,
-1);
CosPropertyService::PropertySetFactory_var propset_factory =
propset_factory_impl->_this ();
CosNaming::Name propset_factory_name (1);
propset_factory_name.length (1);
propset_factory_name[0].id = CORBA::string_dup ("PropertySetFactory");
my_name_client->bind (propset_factory_name,
propset_factory.in ());
// Run the ORB Event loop.
m.run ();
}
catch (const CORBA::SystemException& sysex)
{
sysex._tao_print_exception ("System Exception");
return 1;
}
catch (const CORBA::UserException& userex)
{
userex._tao_print_exception ("User Exception");
return 1;
}
ACE_DEBUG ((LM_DEBUG,
"\nServer is terminating"));
return 0;
}
|