Merge pull request #1551 from DOCGroup/plm_jira_333
[ACE_TAO.git] / TAO / orbsvcs / DevGuideExamples / Security / SecurityUnawareApp / MessengerServer.cpp
blob64006306b12e1c2f2403ed27e5a54b9a5c048c67
1 /* -*- C++ -*- */
3 #include "Messenger_i.h"
4 #include <iostream>
5 #include <fstream>
6 #include "ace/Get_Opt.h"
8 const ACE_TCHAR *ior_output_file = ACE_TEXT ("Messenger.ior");
10 int
11 parse_args (int argc, ACE_TCHAR *argv[])
13 ACE_Get_Opt get_opts (argc, argv, ACE_TEXT("o:"));
14 int c;
16 while ((c = get_opts ()) != -1)
17 switch (c)
19 case 'o':
20 ior_output_file = get_opts.opt_arg ();
21 break;
23 case '?':
24 default:
27 // Indicates successful parsing of the command line
28 return 0;
31 int
32 ACE_TMAIN (int argc, ACE_TCHAR *argv[])
34 try {
35 // Initialize orb
36 CORBA::ORB_var orb = CORBA::ORB_init( argc, argv );
38 if (parse_args (argc, argv) != 0)
39 return 1;
41 //Get reference to Root POA
42 CORBA::Object_var obj = orb->resolve_initial_references( "RootPOA" );
43 PortableServer::POA_var poa = PortableServer::POA::_narrow( obj.in() );
45 // Activate POA Manager
46 PortableServer::POAManager_var mgr = poa->the_POAManager();
47 mgr->activate();
49 // Create an object
50 PortableServer::Servant_var<Messenger_i> messenger_servant = new Messenger_i;
52 // Register the servant with the RootPOA, obtain its object
53 // reference, stringify it, and write it to a file.
54 PortableServer::ObjectId_var oid =
55 poa->activate_object( messenger_servant.in() );
56 CORBA::Object_var messenger_obj = poa->id_to_reference( oid.in() );
57 CORBA::String_var str = orb->object_to_string( messenger_obj.in() );
58 std::ofstream iorFile( ACE_TEXT_ALWAYS_CHAR(ior_output_file) );
59 iorFile << str.in() << std::endl;
60 iorFile.close();
61 std::cout << "IOR written to file "<< ior_output_file << std::endl;
63 // Accept requests
64 orb->run();
65 orb->destroy();
68 catch(const CORBA::Exception& ex) {
69 std::cerr << "Caught a CORBA exception: " << ex << std::endl;
70 return 1;
73 return 0;