From: rnv Date: Fri, 19 Jan 2018 12:59:00 +0000 (+0300) Subject: Implement unicode support in SALOME: first attempt X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=fc92746b0ede540e2f0ba3ac86c114b4f0e24777;p=modules%2Fkernel.git Implement unicode support in SALOME: first attempt --- diff --git a/bin/ORBConfigFile.py b/bin/ORBConfigFile.py index 0769cd6c1..aaf0c31c6 100644 --- a/bin/ORBConfigFile.py +++ b/bin/ORBConfigFile.py @@ -64,7 +64,7 @@ def writeORBConfigFile(path, host, port, kwargs={}): orbdata.append("%sgiopMaxMsgSize = %s # 2 GBytes"%(prefix,GIOP_MaxMsgSize)) orbdata.append("%straceLevel = 0 # critical errors only"%(prefix)) orbdata.append("%smaxGIOPConnectionPerServer = 500 # to allow containers parallel launch"%(prefix)) - orbdata.append("") + orbdata.append("nativeCharCodeSet = UTF-8") with open(omniorb_config, "w") as f: f.write("\n".join(orbdata))