# ---
+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
myCmServer.setpath(modules_list,modules_root_dir)
myCmServer.run()
+ #
+ # Launch ConnectionManagerServer
+ #
+
+ myConnectionServer = ConnectionManagerServer(args)
+ myConnectionServer.run()
+
from Utils_Identity import getShortHostName