]> SALOME platform Git repositories - modules/adao.git/commitdiff
Salome HOME
Finalization of SSL implementation (OCC for Tuleap [bos #29456])
authorJean-Philippe ARGAUD <jean-philippe.argaud@edf.fr>
Thu, 21 Apr 2022 09:58:07 +0000 (11:58 +0200)
committerJean-Philippe ARGAUD <jean-philippe.argaud@edf.fr>
Thu, 21 Apr 2022 09:58:07 +0000 (11:58 +0200)
Removing any module specific code for SSL mode because it's done in the
KERNEL

src/daSalome/daGUI/ADAO_SalomeSessionless.py [deleted file]
src/daSalome/daGUI/CMakeLists.txt

diff --git a/src/daSalome/daGUI/ADAO_SalomeSessionless.py b/src/daSalome/daGUI/ADAO_SalomeSessionless.py
deleted file mode 100644 (file)
index aa4aead..0000000
+++ /dev/null
@@ -1,52 +0,0 @@
-# -*- coding: utf-8 -*-
-#
-# Copyright (C) 2008-2022 EDF R&D
-#
-# This file is part of SALOME ADAO module
-#
-# This library is free software; you can redistribute it and/or
-# modify it under the terms of the GNU Lesser General Public
-# License as published by the Free Software Foundation; either
-# version 2.1 of the License, or (at your option) any later version.
-#
-# This library is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-# Lesser General Public License for more details.
-#
-# You should have received a copy of the GNU Lesser General Public
-# License along with this library; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
-#
-# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
-#
-
-def buildInstance(orb):
-    from ADAO import ADAO
-
-    # set SSL mode, if not done yes
-    import KernelBasis
-    KernelBasis.setSSLMode(True)
-
-    # check if ADAO is already registered
-    import KernelServices
-    try:
-        return KernelServices.RetrieveCompo("ADAO"), orb
-    except Exception:
-        pass
-
-    # initialize and register ADAO engine
-    import PortableServer
-    obj = orb.resolve_initial_references("RootPOA")
-    poa = obj._narrow(PortableServer.POA)
-    pman = poa._get_the_POAManager()
-    pman.activate()
-    #
-    from SALOME_ContainerPy import SALOME_ContainerPy_SSL_i
-    cont = SALOME_ContainerPy_SSL_i(orb, poa, "FactoryServer")
-    conObj = poa.id_to_reference(poa.activate_object(cont))
-    #
-    servant = ADAO(orb, poa, conObj, "FactoryServer", "ADAO_inst_1", "ADAO")
-    ret = servant.getCorbaRef()
-    KernelServices.RegisterCompo("ADAO", ret)
-    return ret, orb
index c6fbd1ad781382bd0a3a7d23e25f0e1fceb17cf0..8ed153b20de3c4b5f6c38097fd29a6b290cf306b 100644 (file)
@@ -20,7 +20,7 @@
 
 if(ADAO_SALOME_MODULE)
 
-  install(FILES ADAOGUI.py ADAO.py ADAO_SalomeSessionless.py DESTINATION ${ADAO_SCRIPT_PYTHON_SALOME})
+  install(FILES ADAOGUI.py ADAO.py DESTINATION ${ADAO_SCRIPT_PYTHON_SALOME})
 
 else(ADAO_SALOME_MODULE)