summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/DevGuideExamples/NotifyService/OfferSubscriptions/MessengerClient.cpp
blob: cf6f2cec87ccd6fcf7f4fd15e9ed8737d5843992 (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
// $Id$

#include "MessengerC.h"
#include "orbsvcs/CosNamingC.h"
#include <iostream>


int ACE_TMAIN(int argc, ACE_TCHAR * argv[])
{
  try
  {
    // Initialize orb
    CORBA::ORB_var orb = CORBA::ORB_init(argc, argv);

    CORBA::Object_var rootObj =
                      orb->resolve_initial_references("NameService");

    CosNaming::NamingContext_var rootContext =
                      CosNaming::NamingContext::_narrow(rootObj.in());

    CosNaming::Name name;
    name.length (1);
    name[0].id = CORBA::string_dup ("MessengerService");

    CORBA::Object_var messengerObj = rootContext->resolve(name);

    Messenger_var messenger = Messenger::_narrow(messengerObj.in());

    if (CORBA::is_nil(messenger.in ())) {
              std::cerr << "Argument is not a Messenger reference" << std::endl;
    }

    CORBA::String_var message = CORBA::string_dup("Where can I get TAO?");

    messenger->send_message ("person@company.com",
                             "OCI's Distribution of TAO",
                             message.inout());
  }

  catch(const CORBA::Exception& ex)
  {
    std::cerr << "Caught exception: " << ex << std::endl;
    return 1;
  }

  std::cout << "MessengerClient: success" << std::endl;
  return 0;

}