From 9892b3081db4192f685f3258b4b89ca13f5dfe91 Mon Sep 17 00:00:00 2001 From: caremoli Date: Fri, 9 Mar 2007 09:33:41 +0000 Subject: [PATCH] CCAR: add ConnectionManager launch --- bin/runSalome.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/bin/runSalome.py b/bin/runSalome.py index 6e7e6788b..c19f4d045 100755 --- a/bin/runSalome.py +++ b/bin/runSalome.py @@ -395,6 +395,14 @@ class SalomeDSServer(Server): # --- +class ConnectionManagerServer(Server): + def __init__(self,args): + self.args=args + self.initArgs() + self.CMD=['SALOME_ConnectionManagerServer'] + +# --- + class RegistryServer(Server): def __init__(self,args): self.args=args @@ -673,6 +681,13 @@ def startSalome(args, modules_list, modules_root_dir): myCmServer.setpath(modules_list,modules_root_dir) myCmServer.run() + # + # Launch ConnectionManagerServer + # + + myConnectionServer = ConnectionManagerServer(args) + myConnectionServer.run() + from Utils_Identity import getShortHostName -- 2.39.2