Salome HOME
Copyrights update 2015.
[modules/kernel.git] / src / DSC / DSC_Basic / SALOME_ConnectionManagerServer.cxx
1 // Copyright (C) 2007-2015  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License, or (at your option) any later version.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 //  File   : SALOME_ConnectionManagerServer.cxx
24 //  Author : AndrĂ© RIBES (EDF)
25 //  Module : KERNEL
26 //
27 #include "ConnectionManager_i.hxx"
28 #include "utilities.h"
29 #include <iostream>
30
31 int main(int argc, char* argv[])
32 {
33   PortableServer::POA_var root_poa;
34   PortableServer::POAManager_var pman;
35   CORBA::Object_var obj;
36   CORBA::ORB_var orb = CORBA::ORB_init(argc, argv);
37   try{
38     obj = orb->resolve_initial_references("RootPOA");
39     if(!CORBA::is_nil(obj))
40       root_poa = PortableServer::POA::_narrow(obj);
41     if(!CORBA::is_nil(root_poa))
42       pman = root_poa->the_POAManager();
43
44     // We create a ConnectionManager.
45     // It is automatically added to the RootPOA into its constructor.
46     new ConnectionManager_i(orb);
47
48     pman->activate();
49     orb->run();
50     orb->destroy();
51   }catch(CORBA::SystemException&){
52     MESSAGE("Caught CORBA::SystemException.");
53   }catch(PortableServer::POA::WrongPolicy&){
54     MESSAGE("Caught CORBA::WrongPolicyException.");
55   }catch(PortableServer::POA::ServantAlreadyActive&){
56     MESSAGE("Caught CORBA::ServantAlreadyActiveException");
57   }catch(CORBA::Exception&){
58     MESSAGE("Caught CORBA::Exception.");
59   }catch(std::exception& exc){
60     MESSAGE("Caught std::exception - "<<exc.what()); 
61   }catch(...){
62     MESSAGE("Caught unknown exception.");
63   }
64   END_OF(argv[0]);
65 }
66