Salome HOME
11535f59693b5f71adba175f6fdb1f491e87cfd1
[modules/med.git] / src / MEDCouplingCorba / Test / TestMEDCouplingCorbaServ.cxx
1 // Copyright (C) 2007-2012  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #include "MEDCouplingMeshFieldFactoryComponentServ.hxx"
21 #include "MEDCouplingMeshFieldFactoryComponent.hxx"
22
23 #include <stdexcept>
24 #include <iostream>
25 #include <fstream>
26
27 using namespace ParaMEDMEM;
28
29 int mainCorbaServ(int argc, char **argv);
30
31 int mainCorbaServ(int argc, char **argv)
32 {
33   CORBA::ORB_var orb=CORBA::ORB_init(argc,argv);
34   CORBA::Object_var obj=orb->resolve_initial_references("RootPOA");
35   PortableServer::POA_var poa=PortableServer::POA::_narrow(obj);
36   PortableServer::POAManager_var mgr=poa->the_POAManager();
37   mgr->activate();
38   SALOME_TEST::MEDCouplingMeshFieldFactoryComponent *compo=new SALOME_TEST::MEDCouplingMeshFieldFactoryComponent(orb);
39   SALOME_TEST::MEDCouplingMeshFieldFactory_var compoPtr=compo->_this();
40   CORBA::String_var str=orb->object_to_string(compoPtr);
41   std::ofstream stream(SALOME_TEST::MEDCouplingCorbaServBasicsTest::buildFileNameForIOR().c_str());
42   stream << str << std::endl;
43   stream.close();
44   orb->run();
45   delete compo;
46   return 0;
47 }
48
49 int main(int argc, char* argv[])
50 {
51   return mainCorbaServ(argc,argv);
52 }