summaryrefslogtreecommitdiff
path: root/examples/Simple/time/server.cpp
blob: 7a19abd727f17b41c3bd6c06eb5a2f1b54324ab4 (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
// $Id$
#include "../Simple_util.h"
#include "Time_i.h"

// This is the main driver program for the time and date server.

int
ACE_TMAIN(int argc, ACE_TCHAR *argv[])
{
  Server<Time_i> server;

  ACE_DEBUG ((LM_DEBUG,
              ACE_TEXT ("\n\tTime and Date server\n\n")));

  try
    {
      if (server.init ("Time",
                       argc,
                       argv) == -1)
        return 1;
      else
        {
          server.run ();
        }
    }
  catch (const CORBA::UserException& userex)
    {
      userex._tao_print_exception ("User Exception in main");
      return -1;
    }
  catch (const CORBA::SystemException& sysex)
    {
      sysex._tao_print_exception ("System Exception in main");
      return -1;
    }
  catch (const ::CORBA::Exception &e)
    {
      e._tao_print_exception ("CORBA exception in main");
      return 1;
    }

  return 0;
}