Salome HOME
PR: retour au tag V1_2_1_debug2 (pb dans la branche de merge V1_2c)
[modules/kernel.git] / src / DataTypeCatalog / SALOME_DataTypeCatalog_Server.cxx
1 //  SALOME DataTypeCatalog : catalog of data types
2 //
3 //  Copyright (C) 2003  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. 
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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : SALOME_DataTypeCatalog_Server.cxx
25 //  Author : Estelle Deville
26 //  Module : SALOME
27 //  $Header$
28
29 using namespace std;
30 #include <iostream.h>
31 #include "SALOME_NamingService.hxx"
32 #include "SALOME_DataTypeCatalog_impl.hxx"
33 #include "utilities.h"
34
35 int main(int argc,char **argv)
36 {
37   try {
38   CosNaming::NamingContext_var _rootContext, catalogContext;
39
40   // initialize the ORB
41
42   CORBA::ORB_ptr orb = CORBA::ORB_init (argc, argv);
43
44   // initialize POA
45
46   CORBA::Object_var poaobj = orb->resolve_initial_references ("RootPOA");
47
48   PortableServer::POA_var poa = PortableServer::POA::_narrow (poaobj);
49   PortableServer::POAManager_var mgr = poa->the_POAManager(); 
50
51   // Active catalog
52
53   SALOME_DataTypeCatalogImpl* Catalogue_i = new SALOME_DataTypeCatalogImpl(argc, argv);
54   poa->activate_object (Catalogue_i);
55
56   mgr->activate();
57
58   
59   CORBA::Object_ptr myCata = Catalogue_i->_this();
60
61   // initialise Naming Service
62   SALOME_NamingService *_NS;
63   _NS = new SALOME_NamingService(orb);
64   // register Catalog in Naming Service
65   _NS->Register(myCata ,"/Kernel/DataTypeCatalog");
66
67   MESSAGE("Running DataType Catalog Server.")
68
69   orb->run();
70  
71   poa->destroy(1,1);
72  
73   }
74     catch(CORBA::SystemException&) {
75     INFOS("Caught CORBA::SystemException.")
76   }
77     catch(CORBA::Exception&) {
78     INFOS("Caught CORBA::Exception.")
79   }
80
81   return 0;
82 }