blob: 20e1d865e99764d20602c80d909e0b92c2468acd (
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
59
60
61
62
63
64
65
66
|
// $Id$
#include "tao\corba.h"
#include "W32_TestC.h"
#include "tao\PortableServer\POA.h"
int
main (int argc, char *argv[])
{
ACE_TRY_NEW_ENV
{
const char *orb_name = "";
cout << "Initializing the ORB!" << endl;
CORBA::ORB_var the_orb = CORBA::ORB_init (argc,
argv,
orb_name
TAO_ENV_ARG_PARAMETER);
ACE_TRY_CHECK;
CORBA::Object_var orb_obj =
the_orb->resolve_initial_references ("RootPOA" TAO_ENV_ARG_PARAMETER);
ACE_TRY_CHECK;
PortableServer::POA_var the_root_poa =
PortableServer::POA::_narrow (orb_obj.in () TAO_ENV_ARG_PARAMETER);
ACE_TRY_CHECK;
PortableServer::POAManager_var the_poa_manager =
the_root_poa->the_POAManager (TAO_ENV_SINGLE_ARG_PARAMETER);
ACE_TRY_CHECK;
// Retrieving the servants IOR from a file
cout << "Reading the IOR!" << endl;
const char *filename =
"file://ior.txt";
orb_obj =
the_orb->string_to_object (filename TAO_ENV_ARG_PARAMETER);
ACE_TRY_CHECK;
cout << "Narrowing the IOR!" << endl;
W32_Test_Interface_var mycall =
W32_Test_Interface::_narrow (orb_obj.in () TAO_ENV_ARG_PARAMETER);
ACE_TRY_CHECK;
cout << "Sending the Request!" << endl;
char *response = mycall->getresponse (1);
cout << "The answer ..." << response << endl;
// Free up the string.
CORBA::string_free (response);
}
ACE_CATCHANY
{
ACE_PRINT_EXCEPTION (ACE_ANY_EXCEPTION,
"Caught exception:");
return 1;
}
ACE_ENDTRY;
ACE_CHECK_RETURN (-1);
return 0;
}
|