From: caremoli Date: Fri, 9 Mar 2007 09:33:41 +0000 (+0000) Subject: CCAR: add ConnectionManager launch X-Git-Tag: DSC_OK~2 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=9892b3081db4192f685f3258b4b89ca13f5dfe91;p=modules%2Fkernel.git CCAR: add ConnectionManager launch --- 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