]> SALOME platform Git repositories - modules/yacs.git/commitdiff
Salome HOME
use nativeCharCodeSet = UTF-8 in omniORB config allows accentuated strings in scripts
authorPaul RASCLE <paul.rascle@edf.fr>
Thu, 25 Jan 2018 11:02:30 +0000 (12:02 +0100)
committerPaul RASCLE <paul.rascle@edf.fr>
Thu, 25 Jan 2018 11:02:30 +0000 (12:02 +0100)
bin/ORBConfigFile.py

index 0769cd6c1846cf280b05f2a60c4d2894a9ed95fd..c9447f8fa877749c3d1ae4bf6278ff99d3373cb4 100644 (file)
@@ -64,6 +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("%snativeCharCodeSet = UTF-8"%(prefix))
   orbdata.append("")
 
   with open(omniorb_config, "w") as f: