1 #include "Messenger_i.h"
4 Messenger_i::send_message (const char *user_name
, const char *subject
,
8 ACE_TEXT ("Message from: %C\nSubject: %C\nMessage: %C\n"),
9 user_name
, subject
, message
));
10 const char *reply
= "A reply from the server.";
11 CORBA::string_free (message
);
12 message
= CORBA::string_dup (reply
);
13 if (++this->count_
== 6)
15 this->orb_
->shutdown (0);